diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ad90eb74..c125a352c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,51 @@ #### Version 1.0.0 (TBD) +##### Command API + +We've upgraded to CCL 4.0 which adds support for all Concourse operations as first-class commands in the language grammar. This release introduces the `Command` construct, fluent builders for creating `Command` objects that can be converted to CCL (and vice versa), and new APIs for executing commands directly as an alternative to the standard API methods. + +* **Command Construct**: A `Command` is a type-safe representation of a single Concourse operation. Commands can be created programmatically via fluent builders or parsed from CCL text. Every `Command` can render itself as a CCL string via the `ccl()` method, and CCL strings can be parsed into `Command` objects via `Command.parse(String)`. + * Fluent builders use a state-machine pattern that guides valid parameter sequences: + ```java + Command.to().add("name").as("Jeff").in(1) + Command.to().find(criteria).order(order) + Command.to().select("name", "age").from(record) + Command.is().holds(1) + Command.go().ping() + ``` +* **`exec()` and `submit()` Methods**: Two new families of methods provide direct command execution as an alternative to the standard API methods (which remain fully supported). + * `exec()` executes one or more commands and returns the result of the **last** command. This is useful for command chains where only the final outcome matters. + * `submit()` executes one or more commands and returns a **list** containing one result per command. This is useful when the result of every command in the batch is needed. + * Both methods execute commands sequentially in a single server round trip. If any command fails, execution stops and the exception is propagated immediately. + * Commands can be submitted as `Command` objects or as raw CCL text strings: + ```java + // Execute a single command + Object result = concourse.exec( + Command.to().add("name").as("Jeff").in(1)); + + // Submit multiple commands and get all results + List results = concourse.submit( + Command.to().add("name").as("Jeff").in(1), + Command.to().select("name").from(1)); + + // Submit commands as CCL text + List results = concourse.submit( + "add name as Jeff in 1; select name from 1"); + ``` +* **`prepare()` and `CommandGroup`**: The `prepare()` method returns a `CommandGroup` that mirrors the Concourse API with void-returning methods. Call methods on the group to accumulate operations, then pass the group to `submit()` to execute all recorded operations at once: + ```java + CommandGroup group = concourse.prepare(); + group.add("name", "Jeff", 1); + group.add("age", 30, 1); + group.select("name", 1); + List results = concourse.submit(group); + ``` +* **Concourse Shell Enhancements**: CaSH now recognizes CCL commands directly, alongside traditional Groovy method calls. + * Type `prepare` to enter prepare mode, where CCL commands are validated and queued with indexed output. + * Type `submit` to execute all queued commands in a single batch and display the results. + * Type `discard` to cancel prepare mode and clear all queued commands. + ##### API Breaks and Deprecations * Renamed `chronologize(...)` to `chronicle(...)` * Renamed `review(...)` back to `audit(...)`, and standardized the API to return grouped commit history as `Map>` instead of the deprecated flattened `Map` shape. diff --git a/concourse-automation/src/main/java/com/cinchapi/concourse/automation/server/ManagedConcourseServer.java b/concourse-automation/src/main/java/com/cinchapi/concourse/automation/server/ManagedConcourseServer.java index 41c23d1a6..7c60536f2 100644 --- a/concourse-automation/src/main/java/com/cinchapi/concourse/automation/server/ManagedConcourseServer.java +++ b/concourse-automation/src/main/java/com/cinchapi/concourse/automation/server/ManagedConcourseServer.java @@ -36,6 +36,7 @@ import java.nio.file.Paths; import java.nio.file.StandardCopyOption; import java.text.MessageFormat; +import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; @@ -73,6 +74,8 @@ import com.cinchapi.concourse.config.ConcourseClientConfiguration; import com.cinchapi.concourse.config.ConcourseServerConfiguration; import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.command.Command; +import com.cinchapi.concourse.lang.command.CommandGroup; import com.cinchapi.concourse.lang.paginate.Page; import com.cinchapi.concourse.lang.sort.Order; import com.cinchapi.concourse.lang.sort.OrderComponent; @@ -1291,6 +1294,22 @@ public Map>> diff(String key, start); } + @Override + public Object exec(Command command) { + return invoke("exec", Command.class).with(command); + } + + @Override + public Object exec(Command command, Command... more) { + return invoke("exec", Command.class, Command[].class).with(command, + more); + } + + @Override + public Object exec(List commands) { + return invoke("exec", List.class).with(commands); + } + @Override public void exit() { invoke("exit").with(); @@ -2140,6 +2159,11 @@ public String getServerVersion() { return invoke("getServerVersion").with(); } + @Override + public CommandGroup prepare() { + return invoke("prepare").with(); + } + @Override public Set insert(String json) { return invoke("insert", String.class).with(json); @@ -3030,6 +3054,37 @@ public void stage() { invoke("stage").with(); } + @Override + public List submit(Command command) { + return invoke("submit", Command.class).with(command); + } + + @Override + public List submit(Command command, Command... more) { + return invoke("submit", Command.class, Command[].class) + .with(command, more); + } + + @Override + public List submit(List commands) { + return invoke("submit", List.class).with(commands); + } + + @Override + public List submit(CommandGroup group) { + return invoke("submit", List.class).with(group.commands()); + } + + @Override + public Object exec(String ccl) { + return invoke("exec", String.class).with(ccl); + } + + @Override + public List submit(String ccl) { + return invoke("submit", String.class).with(ccl); + } + @Override public Timestamp time() { return invoke("time").with(); @@ -3107,6 +3162,31 @@ protected Concourse copyConnection() { return new Client(clazz, invoke("copyConnection").with(), loader); } + /** + * Convert a {@link Command} into an equivalent object compatible with + * the remote server's classloader. + *

+ * The conversion uses the {@link Command Command's} CCL string + * representation, which is safe to pass across classloader boundaries + * because {@link String} is loaded by the bootstrap classloader. + *

+ * + * @param command the {@link Command} to convert + * @return a remote {@link Command} object + */ + private Object convertCommand(Command command) { + try { + String ccl = command.ccl(); + Class remoteCommandClass = loader + .loadClass(packageBase + "lang.command.Command"); + return remoteCommandClass.getMethod("parse", String.class) + .invoke(null, ccl); + } + catch (Exception e) { + throw CheckedExceptions.wrapAsRuntimeException(e); + } + } + /** * Return an invocation wrapper for the named {@code method} with the * specified {@code parameterTypes}. @@ -3141,6 +3221,16 @@ else if(parameterTypes[i] == Order.class) { parameterTypes[i] = loader .loadClass(packageBase + "lang.sort.Order"); } + else if(parameterTypes[i] == Command.class) { + parameterTypes[i] = loader.loadClass( + packageBase + "lang.command.Command"); + } + else if(parameterTypes[i] == Command[].class) { + parameterTypes[i] = java.lang.reflect.Array.newInstance( + loader.loadClass( + packageBase + "lang.command.Command"), + 0).getClass(); + } else { continue; } @@ -3295,6 +3385,33 @@ else if(args[i] instanceof Page) { .getMethod("of", int.class, int.class) .invoke(null, offset, limit); } + else if(args[i] instanceof Command) { + args[i] = convertCommand((Command) args[i]); + } + else if(args[i] instanceof Command[]) { + Command[] cmds = (Command[]) args[i]; + Class rc = loader.loadClass( + packageBase + "lang.command.Command"); + Object remoteArray = java.lang.reflect.Array + .newInstance(rc, cmds.length); + for (int j = 0; j < cmds.length; j++) { + java.lang.reflect.Array.set(remoteArray, j, + convertCommand(cmds[j])); + } + args[i] = remoteArray; + } + else if(args[i] instanceof List) { + List list = (List) args[i]; + if(!list.isEmpty() + && list.get(0) instanceof Command) { + List converted = new ArrayList<>(); + for (Object item : list) { + converted.add( + convertCommand((Command) item)); + } + args[i] = converted; + } + } else { continue; } @@ -3330,6 +3447,13 @@ else if(object instanceof Set) { } object = transformed; } + else if(object instanceof List) { + List transformed = Lists.newArrayList(); + for (Object item : (List) object) { + transformed.add(transformServerObject(item)); + } + object = transformed; + } else if(object instanceof Map) { Map transformed = new LinkedHashMap<>(); for (Entry entry : ((Map) object) diff --git a/concourse-driver-java/build.gradle b/concourse-driver-java/build.gradle index ce4368380..6b5f43ffa 100644 --- a/concourse-driver-java/build.gradle +++ b/concourse-driver-java/build.gradle @@ -18,7 +18,8 @@ dependencies { api "org.slf4j:log4j-over-slf4j:${slf4jVersion}" api "org.slf4j:jcl-over-slf4j:${slf4jVersion}" api 'com.google.code.gson:gson:2.5' - api 'com.cinchapi:ccl:3.2.1' + // api 'com.cinchapi:ccl:4.0.0-SNAPSHOT' + api group: 'com.cinchapi', name: 'ccl', version: '4.0.0-SNAPSHOT', changing:true testImplementation project(':concourse-unit-test-core') testImplementation 'com.github.marschall:memoryfilesystem:0.9.0' diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/Concourse.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/Concourse.java index 8b4396409..c9c1bdda1 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/Concourse.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/Concourse.java @@ -32,6 +32,8 @@ import com.cinchapi.concourse.config.ConcourseClientPreferences; import com.cinchapi.concourse.lang.BuildableState; import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.command.Command; +import com.cinchapi.concourse.lang.command.CommandGroup; import com.cinchapi.concourse.lang.paginate.Page; import com.cinchapi.concourse.lang.sort.Order; import com.cinchapi.concourse.thrift.Diff; @@ -279,6 +281,121 @@ public abstract Map add(String key, T value, */ public abstract boolean add(String key, T value, long record); + /** + * Return a list of all the changes ever made to {@code record}. + * + * @param record the record id + * @return a {@link Map} from the {@link Timestamp} of each commit to a list + * of descriptions for each change made within the commit + */ + public abstract Map> audit(long record); + + /** + * Return a list of all the changes made to {@code record} since + * {@code start} (inclusive). + * + * @param record the record id + * @param start an inclusive {@link Timestamp} of the oldest change that + * should possibly be included in the audit - created from either + * a {@link Timestamp#fromString(String) natural language + * description} of a point in time (i.e. two weeks ago), OR the + * {@link Timestamp#fromMicros(long) number of microseconds} + * since the Unix epoch, OR a + * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda + * DateTime} object + * @return a {@link Map} from the {@link Timestamp} of each commit to a list + * of descriptions for each change made within the commit + */ + public abstract Map> audit(long record, + Timestamp start); + + /** + * Return a list of all the changes made to {@code record} between + * {@code start} (inclusive) and {@code end} (non-inclusive). + * + * @param record the record id + * @param start an inclusive {@link Timestamp} for the oldest change that + * should possibly be included in the audit - created from either + * a {@link Timestamp#fromString(String) natural language + * description} of a point in time (i.e. two weeks ago), OR the + * {@link Timestamp#fromMicros(long) number of microseconds} + * since the Unix epoch, OR a + * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda + * DateTime} object + * @param end a non-inclusive {@link Timestamp} for the most recent change + * that should possibly be included in the audit - created from + * either a {@link Timestamp#fromString(String) natural language + * description} of a point in time (i.e. two weeks ago), OR the + * {@link Timestamp#fromMicros(long) number of microseconds} + * since the Unix epoch, OR a + * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda + * DateTime} object + * @return a {@link Map} from the {@link Timestamp} of each commit to a list + * of descriptions for each change made within the commit + */ + public abstract Map> audit(long record, + Timestamp start, Timestamp end); + + /** + * Return a list of all the changes ever made to the {@code key} field in + * {@code record}. + * + * @param key the field name + * @param record the record id + * @return a {@link Map} from the {@link Timestamp} of each commit to a list + * of descriptions for each change made within the commit + */ + public abstract Map> audit(String key, long record); + + /** + * Return a list of all the changes made to the {@code key} field in + * {@code record} since {@code start} (inclusive). + * + * @param key the field name + * @param record the record id + * @param start an inclusive {@link Timestamp} for the oldest change that + * should possibly be included in the audit - created from either + * a {@link Timestamp#fromString(String) natural language + * description} of a point in time (i.e. two weeks ago), OR the + * {@link Timestamp#fromMicros(long) number of microseconds} + * since the Unix epoch, OR a + * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda + * DateTime} object + * @return a {@link Map} from the {@link Timestamp} of each commit to a list + * of descriptions for each change made within the commit + */ + public abstract Map> audit(String key, long record, + Timestamp start); + + /** + * Return a list of all the changes made to the {@code key} field in + * {@code record} between {@code start} (inclusive) and {@code end} + * (non-inclusive). + * + * @param key the field name + * @param record the record id + * @param start an inclusive {@link Timestamp} for the oldest change that + * should possibly be included in the audit - created from either + * a {@link Timestamp#fromString(String) natural language + * description} of a point in time (i.e. two weeks ago), OR the + * {@link Timestamp#fromMicros(long) number of microseconds} + * since the Unix epoch, OR a + * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda + * DateTime} object + * @param end a non-inclusive {@link Timestamp} for the most recent change + * that should possibly be included in the audit - created from + * either a {@link Timestamp#fromString(String) natural language + * description} of a point in time (i.e. two weeks ago), OR the + * {@link Timestamp#fromMicros(long) number of microseconds} + * since the Unix epoch, OR a + * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda + * DateTime} object + * @return a {@link Map} from the {@link Timestamp} of each commit to a list + * of descriptions for each change made within the commit + */ + public abstract Map> audit(String key, long record, + Timestamp start, Timestamp end); + /** * Return a view of the values from all records that are currently stored * for each of the {@code keys}. @@ -805,6 +922,60 @@ public abstract Map>> diff(String key, public abstract Map>> diff(String key, Timestamp start, Timestamp end); + /** + * Execute a single {@link Command} and return its result. + *

+ * If the {@link Command} fails, the exception is propagated immediately. + *

+ * + * @param command the {@link Command} to execute + * @return the result of the {@link Command} + */ + public abstract Object exec(Command command); + + /** + * Execute two or more {@link Command Commands} and return the result of the + * last one. + *

+ * {@link Command Commands} are executed sequentially. If any + * {@link Command} fails, execution stops and the exception is propagated + * immediately. + *

+ * + * @param command the first {@link Command} to execute + * @param more additional {@link Command Commands} to execute + * @return the result of the last {@link Command} + */ + public abstract Object exec(Command command, Command... more); + + /** + * Execute a list of {@link Command Commands} and return the result of the + * last one. + *

+ * {@link Command Commands} are executed sequentially. If any + * {@link Command} fails, execution stops and the exception is propagated + * immediately. + *

+ * + * @param commands the {@link Command Commands} to execute + * @return the result of the last {@link Command} + */ + public abstract Object exec(List commands); + + /** + * Execute CCL text containing one or more commands and return the result of + * the last command. + *

+ * The {@code ccl} text is validated and compiled on the server. Multiple + * commands may be separated by semicolons or newlines. If any command + * fails, execution stops and the exception is propagated immediately. + *

+ * + * @param ccl the CCL text to execute + * @return the result of the last command + */ + public abstract Object exec(String ccl); + /** * Terminate the client's session and close this connection. */ @@ -4140,6 +4311,26 @@ public final Map> get(String ccl, */ public abstract String getServerVersion(); + /** + * Atomically check to see if each of the {@code records} currently contains + * any data. + * + * @param records a collection of record ids + * @return a {@link Map} associating each of the {@code records} to a + * boolean that indicates whether that record currently contains any + * data. + */ + public abstract Map holds(Collection records); + + /** + * Check to see if {@code record} currently contains any data. + * + * @param record the record id + * @return {@code true} if {@code record} currently contains any data, + * otherwise {@code false} + */ + public abstract boolean holds(long record); + /** * Atomically insert the key/value associations from each of the * {@link Multimap maps} in {@code data} into new and distinct records. @@ -5053,24 +5244,17 @@ public abstract Map> navigate(String key, String ccl, public abstract boolean ping(); /** - * Atomically check to see if each of the {@code records} currently contains - * any data. - * - * @param records a collection of record ids - * @return a {@link Map} associating each of the {@code records} to a - * boolean that indicates whether that record currently contains any - * data. - */ - public abstract Map holds(Collection records); - - /** - * Check to see if {@code record} currently contains any data. + * Return a new {@link CommandGroup} that can be used to collect + * {@link Command Commands} for batch submission. + *

+ * Call methods on the returned {@link CommandGroup} to record operations. + * Then pass the {@link CommandGroup} to {@link #submit(CommandGroup)} to + * execute all the recorded operations in a single round trip. + *

* - * @param record the record id - * @return {@code true} if {@code record} currently contains any data, - * otherwise {@code false} + * @return a new {@link CommandGroup} */ - public abstract boolean holds(long record); + public abstract CommandGroup prepare(); /** * Make the necessary changes to the data stored for {@code key} in @@ -5201,121 +5385,6 @@ public abstract void revert(String key, Collection records, */ public abstract void revert(String key, long record, Timestamp timestamp); - /** - * Return a list of all the changes ever made to {@code record}. - * - * @param record the record id - * @return a {@link Map} from the {@link Timestamp} of each commit to a list - * of descriptions for each change made within the commit - */ - public abstract Map> audit(long record); - - /** - * Return a list of all the changes made to {@code record} since - * {@code start} (inclusive). - * - * @param record the record id - * @param start an inclusive {@link Timestamp} of the oldest change that - * should possibly be included in the audit - created from either - * a {@link Timestamp#fromString(String) natural language - * description} of a point in time (i.e. two weeks ago), OR the - * {@link Timestamp#fromMicros(long) number of microseconds} - * since the Unix epoch, OR a - * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda - * DateTime} object - * @return a {@link Map} from the {@link Timestamp} of each commit to a list - * of descriptions for each change made within the commit - */ - public abstract Map> audit(long record, - Timestamp start); - - /** - * Return a list of all the changes made to {@code record} between - * {@code start} (inclusive) and {@code end} (non-inclusive). - * - * @param record the record id - * @param start an inclusive {@link Timestamp} for the oldest change that - * should possibly be included in the audit - created from either - * a {@link Timestamp#fromString(String) natural language - * description} of a point in time (i.e. two weeks ago), OR the - * {@link Timestamp#fromMicros(long) number of microseconds} - * since the Unix epoch, OR a - * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda - * DateTime} object - * @param end a non-inclusive {@link Timestamp} for the most recent change - * that should possibly be included in the audit - created from - * either a {@link Timestamp#fromString(String) natural language - * description} of a point in time (i.e. two weeks ago), OR the - * {@link Timestamp#fromMicros(long) number of microseconds} - * since the Unix epoch, OR a - * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda - * DateTime} object - * @return a {@link Map} from the {@link Timestamp} of each commit to a list - * of descriptions for each change made within the commit - */ - public abstract Map> audit(long record, - Timestamp start, Timestamp end); - - /** - * Return a list of all the changes ever made to the {@code key} field in - * {@code record}. - * - * @param key the field name - * @param record the record id - * @return a {@link Map} from the {@link Timestamp} of each commit to a list - * of descriptions for each change made within the commit - */ - public abstract Map> audit(String key, long record); - - /** - * Return a list of all the changes made to the {@code key} field in - * {@code record} since {@code start} (inclusive). - * - * @param key the field name - * @param record the record id - * @param start an inclusive {@link Timestamp} for the oldest change that - * should possibly be included in the audit - created from either - * a {@link Timestamp#fromString(String) natural language - * description} of a point in time (i.e. two weeks ago), OR the - * {@link Timestamp#fromMicros(long) number of microseconds} - * since the Unix epoch, OR a - * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda - * DateTime} object - * @return a {@link Map} from the {@link Timestamp} of each commit to a list - * of descriptions for each change made within the commit - */ - public abstract Map> audit(String key, long record, - Timestamp start); - - /** - * Return a list of all the changes made to the {@code key} field in - * {@code record} between {@code start} (inclusive) and {@code end} - * (non-inclusive). - * - * @param key the field name - * @param record the record id - * @param start an inclusive {@link Timestamp} for the oldest change that - * should possibly be included in the audit - created from either - * a {@link Timestamp#fromString(String) natural language - * description} of a point in time (i.e. two weeks ago), OR the - * {@link Timestamp#fromMicros(long) number of microseconds} - * since the Unix epoch, OR a - * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda - * DateTime} object - * @param end a non-inclusive {@link Timestamp} for the most recent change - * that should possibly be included in the audit - created from - * either a {@link Timestamp#fromString(String) natural language - * description} of a point in time (i.e. two weeks ago), OR the - * {@link Timestamp#fromMicros(long) number of microseconds} - * since the Unix epoch, OR a - * {@link Timestamp#fromJoda(org.joda.time.DateTime) Joda - * DateTime} object - * @return a {@link Map} from the {@link Timestamp} of each commit to a list - * of descriptions for each change made within the commit - */ - public abstract Map> audit(String key, long record, - Timestamp start, Timestamp end); - /** * Perform a full text search for {@code query} against the {@code key} * field and return the records that contain a {@link String} or {@link Tag} @@ -7445,6 +7514,77 @@ public final boolean stage(Runnable task) throws TransactionException { } } + /** + * Submit a single {@link Command} and return a {@link List} containing its + * result. + *

+ * If the {@link Command} fails, the exception is propagated immediately. + *

+ * + * @param command the {@link Command} to submit + * @return a {@link List} containing the result + */ + public abstract List submit(Command command); + + /** + * Submit two or more {@link Command Commands} and return a {@link List} of + * results corresponding to each {@link Command}. + *

+ * {@link Command Commands} are executed sequentially on the server in a + * single round trip. If any {@link Command} fails, execution stops and the + * exception is propagated. + *

+ * + * @param command the first {@link Command} to submit + * @param more additional {@link Command Commands} to submit + * @return a {@link List} of results, one per {@link Command} + */ + public abstract List submit(Command command, Command... more); + + /** + * Submit all the {@link Command Commands} that have been prepared in the + * {@code group} and return a {@link List} of results corresponding to each + * {@link Command}. + *

+ * {@link Command Commands} are executed sequentially on the server in a + * single round trip. If any {@link Command} fails, execution stops and the + * exception is propagated. + *

+ * + * @param group the {@link CommandGroup} containing the {@link Command + * Commands} to submit + * @return a {@link List} of results, one per {@link Command} + */ + public abstract List submit(CommandGroup group); + + /** + * Submit a list of {@link Command Commands} and return a {@link List} of + * results corresponding to each {@link Command}. + *

+ * {@link Command Commands} are executed sequentially on the server in a + * single round trip. If any {@link Command} fails, execution stops and the + * exception is propagated. + *

+ * + * @param commands the {@link Command Commands} to submit + * @return a {@link List} of results, one per {@link Command} + */ + public abstract List submit(List commands); + + /** + * Submit CCL text containing one or more commands and return a {@link List} + * of results corresponding to each command. + *

+ * The {@code ccl} text is validated and compiled on the server. Commands + * are executed sequentially in a single round trip. If any command fails, + * execution stops and the exception is propagated. + *

+ * + * @param ccl the CCL text to submit + * @return a {@link List} of results, one per command + */ + public abstract List submit(String ccl); + /** * Return a {@link Timestamp} that represents the current instant according * to the server. @@ -7665,17 +7805,6 @@ public abstract boolean verify(String key, Object value, long record, public abstract boolean verifyAndSwap(String key, Object expected, long record, Object replacement); - /** - * Return {@code true} if this client is known to be in a non-transient - * failed state where the server is still operational for other clients, but - * this one cannot further interact. - * - * @return {@code true} if this client has failed - */ - boolean failed() { - return false; - } - /** * Atomically verify that {@code key} equals {@code expected} in * {@code record} or set it as such. @@ -7715,6 +7844,17 @@ boolean failed() { */ protected abstract Concourse copyConnection(); + /** + * Return {@code true} if this client is known to be in a non-transient + * failed state where the server is still operational for other clients, but + * this one cannot further interact. + * + * @return {@code true} if this client has failed + */ + boolean failed() { + return false; + } + /** * An iterative builder for {@link Concourse} connections. * diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/ConcourseThriftDriver.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/ConcourseThriftDriver.java index 31702188c..50a4cf9b0 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/ConcourseThriftDriver.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/ConcourseThriftDriver.java @@ -48,6 +48,9 @@ import com.cinchapi.concourse.data.transform.DataTable; import com.cinchapi.concourse.lang.Criteria; import com.cinchapi.concourse.lang.Language; +import com.cinchapi.concourse.lang.command.CCLCommandGroup; +import com.cinchapi.concourse.lang.command.Command; +import com.cinchapi.concourse.lang.command.CommandGroup; import com.cinchapi.concourse.lang.paginate.Page; import com.cinchapi.concourse.lang.sort.Order; import com.cinchapi.concourse.security.ClientSecurity; @@ -60,6 +63,8 @@ import com.cinchapi.concourse.thrift.JavaThriftBridge; import com.cinchapi.concourse.thrift.Operator; import com.cinchapi.concourse.thrift.SecurityException; +import com.cinchapi.concourse.thrift.TCommand; +import com.cinchapi.concourse.thrift.TCommandVerb; import com.cinchapi.concourse.thrift.TObject; import com.cinchapi.concourse.thrift.TransactionToken; import com.cinchapi.concourse.util.Collections; @@ -72,7 +77,9 @@ import com.cinchapi.concourse.util.Version; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Throwables; +import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; +import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import com.google.common.collect.Sets; @@ -229,6 +236,12 @@ static boolean isLegacyServerVersion(@Nullable String version) { */ private boolean serverSupportsMultiplexing = true; + /** + * A flag that controls whether exec/submit results are wrapped in + * pretty-printing collection types. + */ + private boolean usePrettyCollections = false; + /** * Create a new Client connection to the environment of the Concourse Server * described in the client configuration (e.g., @@ -874,6 +887,41 @@ public Map>> diff(String key, Timestamp start, }); } + @Override + public Object exec(Command command) { + return exec(ImmutableList.of(command)); + } + + @Override + public Object exec(Command command, Command... more) { + List commands = ImmutableList. builder().add(command) + .add(more).build(); + return exec(commands); + } + + @Override + public Object exec(List commands) { + return execute(() -> { + List tcommands = JavaThriftBridge.convert(commands); + TCommandVerb verb = usePrettyCollections && !tcommands.isEmpty() + ? Iterables.getLast(tcommands).getVerb() + : null; + return prettify( + core.exec(tcommands, creds, transaction, environment) + .getJavaObject(), + verb); + }); + } + + @Override + public Object exec(String ccl) { + return execute(() -> { + List verbs = extractCommandVerbsIfNecessary(ccl); + return prettify(core.execCcl(ccl, creds, transaction, environment) + .getJavaObject(), Iterables.getLast(verbs, null)); + }); + } + @Override public void exit() { try { @@ -2385,24 +2433,22 @@ public String jsonify(Collection records, Timestamp timestamp, @Override public String jsonify(long record) { - return jsonify(java.util.Collections.singletonList(record), true); + return jsonify(ImmutableList.of(record), true); } @Override public String jsonify(long record, boolean includeId) { - return jsonify(java.util.Collections.singletonList(record), includeId); + return jsonify(ImmutableList.of(record), includeId); } @Override public String jsonify(long record, Timestamp timestamp) { - return jsonify(java.util.Collections.singletonList(record), timestamp, - true); + return jsonify(ImmutableList.of(record), timestamp, true); } @Override public String jsonify(long record, Timestamp timestamp, boolean includeId) { - return jsonify(java.util.Collections.singletonList(record), timestamp, - includeId); + return jsonify(ImmutableList.of(record), timestamp, includeId); } @Override @@ -2680,6 +2726,11 @@ public boolean ping() { } } + @Override + public CommandGroup prepare() { + return new CCLCommandGroup(); + } + @Override public void reconcile(String key, long record, Collection values) { execute(() -> { @@ -4063,6 +4114,57 @@ public void stage() throws TransactionException { }); } + @Override + public List submit(Command command) { + return submit(Lists.newArrayList(command)); + } + + @Override + public List submit(Command command, Command... more) { + List commands = ImmutableList. builder().add(command) + .add(more).build(); + return submit(commands); + } + + @Override + public List submit(CommandGroup group) { + return submit(group.commands()); + } + + @Override + public List submit(List commands) { + return execute(() -> { + List tcommands = JavaThriftBridge.convert(commands); + List results = core.submit(tcommands, creds, + transaction, environment); + List prettified = Lists + .newArrayListWithCapacity(results.size()); + for (int i = 0; i < results.size(); ++i) { + TCommandVerb verb = usePrettyCollections && i < tcommands.size() + ? tcommands.get(i).getVerb() + : null; + prettified.add(prettify(results.get(i).getJavaObject(), verb)); + } + return prettified; + }); + } + + @Override + public List submit(String ccl) { + return execute(() -> { + List verbs = extractCommandVerbsIfNecessary(ccl); + List results = core.submitCcl(ccl, creds, + transaction, environment); + List prettified = Lists + .newArrayListWithCapacity(results.size()); + for (int i = 0; i < results.size(); ++i) { + TCommandVerb verb = i < verbs.size() ? verbs.get(i) : null; + prettified.add(prettify(results.get(i).getJavaObject(), verb)); + } + return prettified; + }); + } + @Override public Timestamp time() { return execute(() -> Timestamp @@ -4616,6 +4718,46 @@ private Set executeFind(final Timestamp timestamp, final String key, }); } + /** + * Extract the {@link TCommandVerb} for each command in a CCL string, in + * order. If pretty collections are disabled, return an empty {@link List} + * so callers can proceed without verb-based formatting. + *

+ * Entries are {@code null} when the verb cannot be determined for a + * particular segment. + *

+ * + * @param ccl the CCL string + * @return a {@link List} of {@link TCommandVerb TCommandVerbs} + */ + private List extractCommandVerbsIfNecessary(String ccl) { + if(usePrettyCollections) { + String[] segments = ccl.split(";"); + List verbs = Lists + .newArrayListWithCapacity(segments.length); + for (String segment : segments) { + String trimmed = segment.trim(); + if(!trimmed.isEmpty()) { + int space = trimmed.indexOf(' '); + String token = space > 0 ? trimmed.substring(0, space) + : trimmed; + TCommandVerb verb; + try { + verb = TCommandVerb.valueOf(token.toUpperCase()); + } + catch (IllegalArgumentException e) { + verb = null; + } + verbs.add(verb); + } + } + return verbs; + } + else { + return ImmutableList.of(); + } + } + /** * Determine whether the connected server uses legacy core RPC method names. * @@ -4632,4 +4774,158 @@ private boolean isConnectedToLegacyServer() { return legacy; } + /** + * Wrap a raw result from command execution in the appropriate + * pretty-printing container so that its {@link Object#toString()} output + * matches the formatting conventions of the corresponding individual driver + * method. + * + * @param value the result to wrap + * @param verb the {@link TCommandVerb} that produced the result, or + * {@code null} if unknown + * @return the pretty-printed result, or {@code value} unchanged if it is + * not a {@link Map} + */ + @SuppressWarnings({ "unchecked", "rawtypes" }) + private Object prettify(Object value, @Nullable TCommandVerb verb) { + if(!usePrettyCollections) { + return value; + } + else if(!(value instanceof Map)) { + return value; + } + else { + Map map = (Map) value; + if(map.isEmpty()) { + return value; + } + else { + Entry first = map.entrySet().iterator().next(); + Object firstKey = first.getKey(); + Object firstVal = first.getValue(); + boolean isDiff = map.keySet().stream().allMatch( + k -> "ADDED".equals(k) || "REMOVED".equals(k)); + if(verb != null) { + switch (verb) { + case SELECT: + case NAVIGATE: + if(firstKey instanceof Long + && firstVal instanceof Map) { + return DataTable.multiValued((Map) value); + } + else if(firstKey instanceof Long) { + return DataColumn.multiValued("Values", + (Map) value); + } + else { + return DataRow.multiValued((Map) value); + } + case GET: + if(firstKey instanceof Long + && firstVal instanceof Map) { + return DataTable.singleValued((Map) value); + } + else if(firstKey instanceof Long) { + return DataColumn.singleValued("Value", + (Map) value); + } + else { + return DataRow.singleValued((Map) value); + } + case BROWSE: + if(firstKey instanceof TObject) { + return DataProjection.of((Map) value); + } + else if(firstVal instanceof Map) { + return DataIndex.of((Map) value); + } + else { + break; + } + case AUDIT: + case CHRONICLE: + return PrettyLinkedHashMap.of((Map) value, "DateTime", + "Revision"); + case DIFF: + if(isDiff) { + return PrettyLinkedHashMap.of((Map) value, + "Operation", "Value"); + } + else if(firstVal instanceof Map) { + if(firstKey instanceof TObject) { + return PrettyLinkedTableMap.of((Map) value, + "Value"); + } + else { + return PrettyLinkedTableMap.of((Map) value, + "Key"); + } + } + else { + break; + } + case TRACE: + if(firstKey instanceof Long + && firstVal instanceof Map) { + return PrettyLinkedTableMap.of((Map) value, + "Record"); + } + else { + return PrettyLinkedHashMap.of((Map) value, "Key", + "Sources"); + } + case DESCRIBE: + return PrettyLinkedHashMap.of((Map) value, "Record", + "Keys"); + default: + break; + } + } + // Generic type-based fallback + if(firstVal instanceof Map) { + if(firstKey instanceof Long) { + return PrettyLinkedTableMap.of((Map) value, "Record"); + } + else if(firstKey instanceof TObject) { + return PrettyLinkedTableMap.of((Map) value, "Value"); + } + else { + return PrettyLinkedTableMap.of((Map) value, "Key"); + } + } + else if(firstKey instanceof Long && firstVal instanceof List) { + return PrettyLinkedHashMap.of((Map) value, "DateTime", + "Revision"); + } + else if(firstKey instanceof Long + && firstVal instanceof Boolean) { + return PrettyLinkedHashMap.of((Map) value, "Record", + "Successful"); + } + else if(isDiff) { + return PrettyLinkedHashMap.of((Map) value, "Operation", + "Value"); + } + else if(firstKey instanceof TObject) { + String valHeader = firstVal instanceof Set ? "Records" + : "Record"; + return PrettyLinkedHashMap.of((Map) value, "Value", + valHeader); + } + else { + String valHeader = firstVal instanceof Set ? "Values" + : "Value"; + if(firstKey instanceof Long) { + return PrettyLinkedHashMap.of((Map) value, "Record", + valHeader); + } + else { + return PrettyLinkedHashMap.of((Map) value, "Key", + valHeader); + } + } + } + } + } + } diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/ForwardingConcourse.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/ForwardingConcourse.java index 16786ef23..ef92eef02 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/ForwardingConcourse.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/ForwardingConcourse.java @@ -21,6 +21,8 @@ import java.util.Set; import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.command.Command; +import com.cinchapi.concourse.lang.command.CommandGroup; import com.cinchapi.concourse.lang.paginate.Page; import com.cinchapi.concourse.lang.sort.Order; import com.cinchapi.concourse.thrift.Diff; @@ -39,7 +41,6 @@ * * @author Jeff Nelson */ -@SuppressWarnings("deprecation") public abstract class ForwardingConcourse extends Concourse { /** @@ -77,6 +78,39 @@ public boolean add(String key, T value, long record) { return concourse.add(key, value, record); } + @Override + public Map> audit(long record) { + return concourse.audit(record); + } + + @Override + public Map> audit(long record, Timestamp start) { + return concourse.audit(record, start); + } + + @Override + public Map> audit(long record, Timestamp start, + Timestamp end) { + return concourse.audit(record, start, end); + } + + @Override + public Map> audit(String key, long record) { + return concourse.audit(key, record); + } + + @Override + public Map> audit(String key, long record, + Timestamp start) { + return concourse.audit(key, record, start); + } + + @Override + public Map> audit(String key, long record, + Timestamp start, Timestamp end) { + return concourse.audit(key, record, start, end); + } + @Override public Map>> browse(Collection keys) { return concourse.browse(keys); @@ -221,6 +255,26 @@ public Map>> diff(String key, Timestamp start, return concourse.diff(key, start, end); } + @Override + public Object exec(Command command) { + return concourse.exec(command); + } + + @Override + public Object exec(Command command, Command... more) { + return concourse.exec(command, more); + } + + @Override + public Object exec(List commands) { + return concourse.exec(commands); + } + + @Override + public Object exec(String ccl) { + return concourse.exec(ccl); + } + @Override public void exit() { concourse.exit(); @@ -920,6 +974,16 @@ public String getServerVersion() { return concourse.getServerVersion(); } + @Override + public Map holds(Collection records) { + return concourse.holds(records); + } + + @Override + public boolean holds(long record) { + return concourse.holds(record); + } + @Override public Set insert(String json) { return concourse.insert(json); @@ -1097,13 +1161,8 @@ public boolean ping() { } @Override - public Map holds(Collection records) { - return concourse.holds(records); - } - - @Override - public boolean holds(long record) { - return concourse.holds(record); + public CommandGroup prepare() { + return concourse.prepare(); } @Override @@ -1145,39 +1204,6 @@ public void revert(String key, long record, Timestamp timestamp) { concourse.revert(key, record, timestamp); } - @Override - public Map> audit(long record) { - return concourse.audit(record); - } - - @Override - public Map> audit(long record, Timestamp start) { - return concourse.audit(record, start); - } - - @Override - public Map> audit(long record, Timestamp start, - Timestamp end) { - return concourse.audit(record, start, end); - } - - @Override - public Map> audit(String key, long record) { - return concourse.audit(key, record); - } - - @Override - public Map> audit(String key, long record, - Timestamp start) { - return concourse.audit(key, record, start); - } - - @Override - public Map> audit(String key, long record, - Timestamp start, Timestamp end) { - return concourse.audit(key, record, start, end); - } - @Override public Set search(String key, String query) { return concourse.search(key, query); @@ -1653,6 +1679,31 @@ public void stage() throws TransactionException { concourse.stage(); } + @Override + public List submit(Command command) { + return concourse.submit(command); + } + + @Override + public List submit(Command command, Command... more) { + return concourse.submit(command, more); + } + + @Override + public List submit(CommandGroup group) { + return concourse.submit(group); + } + + @Override + public List submit(List commands) { + return concourse.submit(commands); + } + + @Override + public List submit(String ccl) { + return concourse.submit(ccl); + } + @Override public Timestamp time() { return concourse.time(); @@ -1711,11 +1762,6 @@ public void verifyOrSet(String key, Object value, long record) { concourse.verifyOrSet(key, value, record); } - @Override - boolean failed() { - return concourse.failed(); - } - /** * Construct an instance of this {@link ForwardingConcourse} using the * provided {@code concourse} connection as the proxied handle. @@ -1730,4 +1776,9 @@ protected final Concourse copyConnection() { return $this(concourse.copyConnection()); } + @Override + boolean failed() { + return concourse.failed(); + } + } diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/NoOpConcourse.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/NoOpConcourse.java index 547e387c5..29aa713c9 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/NoOpConcourse.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/NoOpConcourse.java @@ -21,6 +21,8 @@ import java.util.Set; import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.command.Command; +import com.cinchapi.concourse.lang.command.CommandGroup; import com.cinchapi.concourse.lang.paginate.Page; import com.cinchapi.concourse.lang.sort.Order; import com.cinchapi.concourse.thrift.Diff; @@ -56,6 +58,39 @@ public boolean add(String key, T value, long record) { throw new UnsupportedOperationException(); } + @Override + public Map> audit(long record) { + throw new UnsupportedOperationException(); + } + + @Override + public Map> audit(long record, Timestamp start) { + throw new UnsupportedOperationException(); + } + + @Override + public Map> audit(long record, Timestamp start, + Timestamp end) { + throw new UnsupportedOperationException(); + } + + @Override + public Map> audit(String key, long record) { + throw new UnsupportedOperationException(); + } + + @Override + public Map> audit(String key, long record, + Timestamp start) { + throw new UnsupportedOperationException(); + } + + @Override + public Map> audit(String key, long record, + Timestamp start, Timestamp end) { + throw new UnsupportedOperationException(); + } + @Override public Map>> browse(Collection keys) { throw new UnsupportedOperationException(); @@ -200,6 +235,26 @@ public Map>> diff(String key, Timestamp start, throw new UnsupportedOperationException(); } + @Override + public Object exec(Command command) { + throw new UnsupportedOperationException(); + } + + @Override + public Object exec(Command command, Command... more) { + throw new UnsupportedOperationException(); + } + + @Override + public Object exec(List commands) { + throw new UnsupportedOperationException(); + } + + @Override + public Object exec(String ccl) { + throw new UnsupportedOperationException(); + } + @Override public void exit() { throw new UnsupportedOperationException(); @@ -897,6 +952,16 @@ public String getServerVersion() { throw new UnsupportedOperationException(); } + @Override + public Map holds(Collection records) { + throw new UnsupportedOperationException(); + } + + @Override + public boolean holds(long record) { + throw new UnsupportedOperationException(); + } + @Override public Set insert(String json) { throw new UnsupportedOperationException(); @@ -1074,12 +1139,7 @@ public boolean ping() { } @Override - public Map holds(Collection records) { - throw new UnsupportedOperationException(); - } - - @Override - public boolean holds(long record) { + public CommandGroup prepare() { throw new UnsupportedOperationException(); } @@ -1127,39 +1187,6 @@ public void revert(String key, long record, Timestamp timestamp) { } - @Override - public Map> audit(long record) { - throw new UnsupportedOperationException(); - } - - @Override - public Map> audit(long record, Timestamp start) { - throw new UnsupportedOperationException(); - } - - @Override - public Map> audit(long record, Timestamp start, - Timestamp end) { - throw new UnsupportedOperationException(); - } - - @Override - public Map> audit(String key, long record) { - throw new UnsupportedOperationException(); - } - - @Override - public Map> audit(String key, long record, - Timestamp start) { - throw new UnsupportedOperationException(); - } - - @Override - public Map> audit(String key, long record, - Timestamp start, Timestamp end) { - throw new UnsupportedOperationException(); - } - @Override public Set search(String key, String query) { throw new UnsupportedOperationException(); @@ -1638,6 +1665,31 @@ public void stage() throws TransactionException { } + @Override + public List submit(Command command) { + throw new UnsupportedOperationException(); + } + + @Override + public List submit(Command command, Command... more) { + throw new UnsupportedOperationException(); + } + + @Override + public List submit(CommandGroup group) { + throw new UnsupportedOperationException(); + } + + @Override + public List submit(List commands) { + throw new UnsupportedOperationException(); + } + + @Override + public List submit(String ccl) { + throw new UnsupportedOperationException(); + } + @Override public Timestamp time() { throw new UnsupportedOperationException(); diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/ConcourseCompiler.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/ConcourseCompiler.java index 97c08d81a..102468e9a 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/ConcourseCompiler.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/ConcourseCompiler.java @@ -15,6 +15,8 @@ */ package com.cinchapi.concourse.lang; +import java.util.List; + import com.cinchapi.ccl.Compiler; import com.cinchapi.ccl.syntax.AbstractSyntaxTree; import com.cinchapi.ccl.syntax.ConditionTree; @@ -58,6 +60,12 @@ private ConcourseCompiler() { Convert::stringToOperator); } + @Override + public List compile(String ccl, + Multimap data) { + return delegate.compile(ccl, data); + } + /** * Return {@code true} if the {@code data} is described by the condition * encapsulated in the {@code tree}. @@ -94,14 +102,9 @@ public final AbstractSyntaxTree parse(Criteria criteria, return parse(criteria.ccl(), data); } - @Override - public AbstractSyntaxTree parse(String ccl, Multimap data) { - return delegate.parse(ccl, data); - } - /** * {@link #parse(String) Parse} the {@code criteria}. - * + * * @param criteria * @return an {@link AbstractSyntaxTree} representing the {@code criteria} */ diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/Criteria.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/Criteria.java index 731d43a7c..dc037a737 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/Criteria.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/Criteria.java @@ -15,11 +15,14 @@ */ package com.cinchapi.concourse.lang; +import static com.google.common.base.Preconditions.checkArgument; + import java.util.List; import com.cinchapi.ccl.SyntaxException; import com.cinchapi.ccl.grammar.Symbol; import com.cinchapi.ccl.syntax.AbstractSyntaxTree; +import com.cinchapi.ccl.syntax.ConditionTree; import com.cinchapi.common.base.CheckedExceptions; import com.cinchapi.concourse.ParseException; import com.cinchapi.concourse.Timestamp; @@ -53,6 +56,9 @@ public interface Criteria extends Symbol { public static Criteria parse(String ccl) { try { AbstractSyntaxTree ast = ConcourseCompiler.get().parse(ccl); + checkArgument(ast instanceof ConditionTree, + "The provided CCL is not a valid Condition or Criteria statement: %s", + ccl); BuiltCriteria criteria = new BuiltCriteria(); criteria.symbols = Lists .newArrayList(ConcourseCompiler.get().tokenize(ast)); diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/AddCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/AddCommand.java new file mode 100644 index 000000000..310dda985 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/AddCommand.java @@ -0,0 +1,279 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +/** + * A {@link Command} builder for {@code add} commands. + *

+ * {@code add} associates a value with a key in one or more records. + *

+ * + *
+ * add <key> as <value>
+ * add <key> as <value> in <record>
+ * add <key> as <value> in [<records>]
+ * 
+ * + * @author Jeff Nelson + */ +public final class AddCommand { + + /** + * The state after specifying the key for the {@code add} command. + */ + public static final class KeyState { + + /** + * The key to add. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to add + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the value to add for this key. + * + * @param value the value to add + * @return the next builder state + */ + public ValueState as(Object value) { + return new ValueState(key, value); + } + + } + + /** + * The state after specifying the key and value for the {@code add} command. + * This is a terminal state that produces CCL without a record target, but + * can optionally be narrowed to specific records via + * {@link #in(long, long...)}. + */ + public static final class ValueState implements Command { + + /** + * The key to add. + */ + private final String key; + + /** + * The value to add. + */ + private final Object value; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + */ + ValueState(String key, Object value) { + this.key = key; + this.value = value; + } + + /** + * Add into the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return new RecordState(key, value, + CclRenderer.collectRecords(record)); + } + + /** + * Add into the specified {@code records}. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState in(long first, long... more) { + return new RecordState(key, value, + CclRenderer.collectRecords(first, more)); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState to(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState to(long first, long... more) { + return in(first, more); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState within(long first, long... more) { + return in(first, more); + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the value for this command. + * + * @return the value + */ + public Object value() { + return value; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("add "); + sb.append(key); + sb.append(" as "); + sb.append(CclRenderer.value(value)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for an {@code add} command that targets specific + * records. + */ + public static final class RecordState implements Command { + + /** + * The key to add. + */ + private final String key; + + /** + * The value to add. + */ + private final Object value; + + /** + * The target records. + */ + private final List records; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + * @param records the target records + */ + RecordState(String key, Object value, List records) { + this.key = key; + this.value = value; + this.records = records; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the value for this command. + * + * @return the value + */ + public Object value() { + return value; + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("add "); + sb.append(key); + sb.append(" as "); + sb.append(CclRenderer.value(value)); + sb.append(" in "); + sb.append(CclRenderer.records(records)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private AddCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/AuditCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/AuditCommand.java new file mode 100644 index 000000000..2ae961224 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/AuditCommand.java @@ -0,0 +1,541 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code audit} commands. + *

+ * {@code audit} retrieves the log of changes to a record or a key within a + * record, optionally bounded by one or two timestamps. + *

+ * + *
+ * audit <record>
+ * audit <record> at <start>
+ * audit <record> at <start> at <end>
+ * audit <key> in <record>
+ * audit <key> in <record> at <start>
+ * audit <key> in <record> at <start> at <end>
+ * 
+ * + * @author Jeff Nelson + */ +public final class AuditCommand { + + /** + * The terminal state for a record-scoped {@code audit} command. Supports an + * optional {@code at} clause for a start timestamp. + */ + public static final class RecordState implements Command { + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param record the target record + */ + RecordState(long record) { + this.record = record; + } + + /** + * Specify the start {@link Timestamp} for the audit. + * + * @param start the start {@link Timestamp} + * @return the next builder state + */ + public RecordTimestampState at(Timestamp start) { + return new RecordTimestampState(record, start); + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("audit "); + sb.append(Long.toString(record)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The state after specifying the key for the {@code audit} command. + */ + public static final class KeyState { + + /** + * The key to audit. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to audit + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the record in which to audit the key. + * + * @param record the target record + * @return the next builder state + */ + public KeyRecordState in(long record) { + return new KeyRecordState(key, record); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public KeyRecordState within(long record) { + return in(record); + } + + } + + /** + * The terminal state for a key-scoped {@code audit} command after + * specifying the key and record. Supports an optional {@code at} clause for + * a start timestamp. + */ + public static final class KeyRecordState implements Command { + + /** + * The key to audit. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + */ + KeyRecordState(String key, long record) { + this.key = key; + this.record = record; + } + + /** + * Specify the start {@link Timestamp} for the audit. + * + * @param start the start {@link Timestamp} + * @return the next builder state + */ + public KeyRecordTimestampState at(Timestamp start) { + return new KeyRecordTimestampState(key, record, start); + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("audit "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a record-scoped {@code audit} command that + * includes a start {@link Timestamp}. Supports an optional second + * {@code at} clause for an end timestamp. + */ + public static final class RecordTimestampState implements Command { + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * Construct a new instance. + * + * @param record the target record + * @param start the start {@link Timestamp} + */ + RecordTimestampState(long record, Timestamp start) { + this.record = record; + this.start = start; + } + + /** + * Specify the end {@link Timestamp} for this command. + * + * @param end the end {@link Timestamp} + * @return the next builder state + */ + public RecordRangeState at(Timestamp end) { + return new RecordRangeState(record, start, end); + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("audit "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a record-scoped {@code audit} command that + * includes both a start and end {@link Timestamp}. + */ + public static final class RecordRangeState implements Command { + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * The end {@link Timestamp}. + */ + private final Timestamp end; + + /** + * Construct a new instance. + * + * @param record the target record + * @param start the start {@link Timestamp} + * @param end the end {@link Timestamp} + */ + RecordRangeState(long record, Timestamp start, Timestamp end) { + this.record = record; + this.start = start; + this.end = end; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + /** + * Return the end {@link Timestamp} for this command. + * + * @return the end {@link Timestamp} + */ + public Timestamp end() { + return end; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("audit "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + CclRenderer.appendTimestamp(sb, end); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a key-scoped {@code audit} command that includes a + * start {@link Timestamp}. Supports an optional second {@code at} clause + * for an end timestamp. + */ + public static final class KeyRecordTimestampState implements Command { + + /** + * The key to audit. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + * @param start the start {@link Timestamp} + */ + KeyRecordTimestampState(String key, long record, Timestamp start) { + this.key = key; + this.record = record; + this.start = start; + } + + /** + * Specify the end {@link Timestamp} for this command. + * + * @param end the end {@link Timestamp} + * @return the next builder state + */ + public KeyRecordRangeState at(Timestamp end) { + return new KeyRecordRangeState(key, record, start, end); + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("audit "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a key-scoped {@code audit} command that includes + * both a start and end {@link Timestamp}. + */ + public static final class KeyRecordRangeState implements Command { + + /** + * The key to audit. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * The end {@link Timestamp}. + */ + private final Timestamp end; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + * @param start the start {@link Timestamp} + * @param end the end {@link Timestamp} + */ + KeyRecordRangeState(String key, long record, Timestamp start, + Timestamp end) { + this.key = key; + this.record = record; + this.start = start; + this.end = end; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + /** + * Return the end {@link Timestamp} for this command. + * + * @return the end {@link Timestamp} + */ + public Timestamp end() { + return end; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("audit "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + CclRenderer.appendTimestamp(sb, end); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private AuditCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/BrowseCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/BrowseCommand.java new file mode 100644 index 000000000..8930c932b --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/BrowseCommand.java @@ -0,0 +1,115 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code browse} commands. + *

+ * {@code browse} retrieves the values indexed for one or more keys, optionally + * at a historical timestamp. + *

+ * + *
+ * browse <keys> [at timestamp]
+ * 
+ * + * @author Jeff Nelson + */ +public final class BrowseCommand { + + /** + * The terminal state for a {@code browse} command. This state is reached + * after specifying the keys to browse and supports an optional {@code at} + * clause for historical browsing. + */ + public static final class State implements Command { + + /** + * The keys to browse. + */ + private final List keys; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * Construct a new instance. + * + * @param key the first key to browse + * @param moreKeys additional keys + */ + State(String key, String... moreKeys) { + this.keys = CclRenderer.collectKeys(key, moreKeys); + } + + /** + * Pin this command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public State at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Return the keys for this command. + * + * @return the keys + */ + public List keys() { + return Collections.unmodifiableList(keys); + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("browse "); + sb.append(CclRenderer.keys(keys)); + CclRenderer.appendTimestamp(sb, timestamp); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private BrowseCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/BuiltCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/BuiltCommand.java new file mode 100644 index 000000000..e6bdc106b --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/BuiltCommand.java @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +/** + * A simple {@link Command} implementation for nullary commands that have no + * parameters (e.g., {@code ping}, {@code stage}, {@code commit}, {@code abort}, + * {@code inventory}). + * + * @author Jeff Nelson + */ +final class BuiltCommand implements Command { + + /** + * The command verb. + */ + private final String verb; + + /** + * Construct a new instance. + * + * @param verb the command verb + */ + BuiltCommand(String verb) { + this.verb = verb; + } + + @Override + public String ccl() { + return verb; + } + + @Override + public String toString() { + return ccl(); + } + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CCLCommandGroup.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CCLCommandGroup.java new file mode 100644 index 000000000..323441f81 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CCLCommandGroup.java @@ -0,0 +1,2831 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; +import java.util.Set; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; +import com.cinchapi.concourse.thrift.Operator; +import com.google.common.collect.Lists; + +/** + * A {@link CommandGroup} that collects {@link Command Commands} as CCL language + * representations for batch submission. + *

+ * Each method call records a {@link Command} in an internal list. The + * accumulated {@link Command Commands} are retrieved via {@link #commands()} + * and submitted to the server through {@code Concourse#submit(CommandGroup)}. + *

+ * + * @author Jeff Nelson + */ +public class CCLCommandGroup implements CommandGroup { + + /** + * The collected {@link Command Commands}. + */ + private final List commands = Lists.newArrayList(); + + @Override + public List commands() { + return Collections.unmodifiableList(commands); + } + + /** + * Return the first record from the provided list. + * + * @param records the list of records + * @return the first record + */ + private static long firstRecord(List records) { + return records.get(0); + } + + /** + * Return all but the first record from the provided list as an array. + * + * @param records the list of records + * @return the remaining records + */ + private static long[] restRecords(List records) { + long[] rest = new long[records.size() - 1]; + for (int i = 1; i < records.size(); i++) { + rest[i - 1] = records.get(i); + } + return rest; + } + + /** + * Return the first key from the provided list. + * + * @param keys the list of keys + * @return the first key + */ + private static String firstKey(List keys) { + return keys.get(0); + } + + /** + * Return all but the first key from the provided list as an array. + * + * @param keys the list of keys + * @return the remaining keys + */ + private static String[] restKeys(List keys) { + return keys.subList(1, keys.size()).toArray(new String[0]); + } + + @Override + public void abort() { + commands.add(Command.to().abort()); + } + + @Override + public void add(String key, Object value) { + commands.add(Command.to().add(key).as(value)); + } + + @Override + public void add(String key, Object value, long record) { + commands.add(Command.to().add(key).as(value).in(record)); + } + + @Override + public void add(String key, Object value, List records) { + for (long record : records) { + commands.add(Command.to().add(key).as(value).in(record)); + } + } + + @Override + public void audit(long record) { + commands.add(Command.to().audit(record)); + } + + @Override + public void audit(long record, long start) { + commands.add( + Command.to().audit(record).at(Timestamp.fromMicros(start))); + } + + @Override + public void audit(long record, String start) { + commands.add( + Command.to().audit(record).at(Timestamp.fromString(start))); + } + + @Override + public void audit(long record, long start, long tend) { + commands.add(Command.to().audit(record).at(Timestamp.fromMicros(start)) + .at(Timestamp.fromMicros(tend))); + } + + @Override + public void audit(long record, String start, String tend) { + commands.add(Command.to().audit(record).at(Timestamp.fromString(start)) + .at(Timestamp.fromString(tend))); + } + + @Override + public void audit(String key, long record) { + commands.add(Command.to().audit(key).in(record)); + } + + @Override + public void audit(String key, long record, long start) { + commands.add(Command.to().audit(key).in(record) + .at(Timestamp.fromMicros(start))); + } + + @Override + public void audit(String key, long record, String start) { + commands.add(Command.to().audit(key).in(record) + .at(Timestamp.fromString(start))); + } + + @Override + public void audit(String key, long record, long start, long tend) { + commands.add(Command.to().audit(key).in(record) + .at(Timestamp.fromMicros(start)) + .at(Timestamp.fromMicros(tend))); + } + + @Override + public void audit(String key, long record, String start, String tend) { + commands.add(Command.to().audit(key).in(record) + .at(Timestamp.fromString(start)) + .at(Timestamp.fromString(tend))); + } + + @Override + public void browse(String key) { + commands.add(Command.to().browse(key)); + } + + @Override + public void browse(List keys) { + for (String key : keys) { + commands.add(Command.to().browse(key)); + } + } + + @Override + public void browse(String key, long timestamp) { + commands.add( + Command.to().browse(key).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void browse(String key, String timestamp) { + commands.add( + Command.to().browse(key).at(Timestamp.fromString(timestamp))); + } + + @Override + public void browse(List keys, long timestamp) { + for (String key : keys) { + commands.add(Command.to().browse(key) + .at(Timestamp.fromMicros(timestamp))); + } + } + + @Override + public void browse(List keys, String timestamp) { + for (String key : keys) { + commands.add(Command.to().browse(key) + .at(Timestamp.fromString(timestamp))); + } + } + + @Override + public void chronicle(String key, long record) { + commands.add(Command.to().chronicle(key).in(record)); + } + + @Override + public void chronicle(String key, long record, long start) { + commands.add(Command.to().chronicle(key).in(record) + .at(Timestamp.fromMicros(start))); + } + + @Override + public void chronicle(String key, long record, String start) { + commands.add(Command.to().chronicle(key).in(record) + .at(Timestamp.fromString(start))); + } + + @Override + public void chronicle(String key, long record, long start, long tend) { + commands.add(Command.to().chronicle(key).in(record) + .at(Timestamp.fromMicros(start)) + .at(Timestamp.fromMicros(tend))); + } + + @Override + public void chronicle(String key, long record, String start, String tend) { + commands.add(Command.to().chronicle(key).in(record) + .at(Timestamp.fromString(start)) + .at(Timestamp.fromString(tend))); + } + + @Override + public void clear(long record) { + commands.add(Command.to().clear(record)); + } + + @Override + public void clear(List records) { + for (long record : records) { + commands.add(Command.to().clear(record)); + } + } + + @Override + public void clear(String key, long record) { + commands.add(Command.to().clear(key).from(record)); + } + + @Override + public void clear(List keys, long record) { + for (String key : keys) { + commands.add(Command.to().clear(key).from(record)); + } + } + + @Override + public void clear(String key, List records) { + for (long record : records) { + commands.add(Command.to().clear(key).from(record)); + } + } + + @Override + public void clear(List keys, List records) { + for (String key : keys) { + for (long record : records) { + commands.add(Command.to().clear(key).from(record)); + } + } + } + + @Override + public void commit() { + commands.add(Command.to().commit()); + } + + @Override + public void describe() { + commands.add(Command.to().describeAll()); + } + + @Override + public void describe(long timestamp) { + commands.add( + Command.to().describeAll().at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void describe(String timestamp) { + commands.add( + Command.to().describeAll().at(Timestamp.fromString(timestamp))); + } + + @Override + public void describe(long record, long timestamp) { + commands.add(Command.to().describe(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void describe(long record, String timestamp) { + commands.add(Command.to().describe(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void describe(List records) { + for (long record : records) { + commands.add(Command.to().describe(record)); + } + } + + @Override + public void describe(List records, long timestamp) { + for (long record : records) { + commands.add(Command.to().describe(record) + .at(Timestamp.fromMicros(timestamp))); + } + } + + @Override + public void describe(List records, String timestamp) { + for (long record : records) { + commands.add(Command.to().describe(record) + .at(Timestamp.fromString(timestamp))); + } + } + + @Override + public void diff(long record, long start) { + commands.add(Command.to().diff(record).at(Timestamp.fromMicros(start))); + } + + @Override + public void diff(long record, String start) { + commands.add(Command.to().diff(record).at(Timestamp.fromString(start))); + } + + @Override + public void diff(long record, long start, long tend) { + commands.add(Command.to().diff(record).at(Timestamp.fromMicros(start)) + .at(Timestamp.fromMicros(tend))); + } + + @Override + public void diff(long record, String start, String tend) { + commands.add(Command.to().diff(record).at(Timestamp.fromString(start)) + .at(Timestamp.fromString(tend))); + } + + @Override + public void diff(String key, long record, long start) { + commands.add(Command.to().diff(key).in(record) + .at(Timestamp.fromMicros(start))); + } + + @Override + public void diff(String key, long record, String start) { + commands.add(Command.to().diff(key).in(record) + .at(Timestamp.fromString(start))); + } + + @Override + public void diff(String key, long record, long start, long tend) { + commands.add(Command.to().diff(key).in(record) + .at(Timestamp.fromMicros(start)) + .at(Timestamp.fromMicros(tend))); + } + + @Override + public void diff(String key, long record, String start, String tend) { + commands.add(Command.to().diff(key).in(record) + .at(Timestamp.fromString(start)) + .at(Timestamp.fromString(tend))); + } + + @Override + public void diff(String key, long start) { + commands.add(Command.to().diff(key).at(Timestamp.fromMicros(start))); + } + + @Override + public void diff(String key, String start) { + commands.add(Command.to().diff(key).at(Timestamp.fromString(start))); + } + + @Override + public void diff(String key, String start, String tend) { + commands.add(Command.to().diff(key).at(Timestamp.fromString(start)) + .at(Timestamp.fromString(tend))); + } + + @Override + public void stage() { + commands.add(Command.to().stage()); + } + + @Override + public void insert(String json) { + commands.add(Command.to().insert(json)); + } + + @Override + public void insert(String json, long record) { + commands.add(Command.to().insert(json).in(record)); + } + + @Override + public void insert(String json, List records) { + for (long record : records) { + commands.add(Command.to().insert(json).in(record)); + } + } + + @Override + public void remove(String key, Object value, long record) { + commands.add(Command.to().remove(key).as(value).from(record)); + } + + @Override + public void remove(String key, Object value, List records) { + for (long record : records) { + commands.add(Command.to().remove(key).as(value).from(record)); + } + } + + @Override + public void set(String key, Object value, long record) { + commands.add(Command.to().set(key).as(value).in(record)); + } + + @Override + public void set(String key, Object value) { + commands.add(new BuiltCommand( + "set " + key + " as " + CclRenderer.value(value))); + } + + @Override + public void set(String key, Object value, List records) { + for (long record : records) { + commands.add(Command.to().set(key).as(value).in(record)); + } + } + + @Override + public void reconcile(String key, long record, Set values) { + Object[] array = values.toArray(); + if(array.length > 0) { + Object first = array[0]; + Object[] rest = new Object[array.length - 1]; + System.arraycopy(array, 1, rest, 0, rest.length); + commands.add( + Command.to().reconcile(key).in(record).with(first, rest)); + } + } + + @Override + public void inventory() { + commands.add(Command.to().inventory()); + } + + // -- select methods -- + + @Override + public void select(long record) { + commands.add(Command.to().select(record)); + } + + @Override + public void select(List records) { + commands.add(Command.to().selectAll().from(firstRecord(records), + restRecords(records))); + } + + @Override + public void select(List records, Page page) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)).page(page)); + } + + @Override + public void select(List records, Order order) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)).order(order)); + } + + @Override + public void select(List records, Order order, Page page) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)).order(order) + .page(page)); + } + + @Override + public void select(long record, long timestamp) { + commands.add(Command.to().select(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(long record, String timestamp) { + commands.add(Command.to().select(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(List records, long timestamp) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(List records, long timestamp, Page page) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void select(List records, long timestamp, Order order) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void select(List records, long timestamp, Order order, + Page page) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void select(List records, String timestamp) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(List records, String timestamp, Page page) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void select(List records, String timestamp, Order order) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void select(List records, String timestamp, Order order, + Page page) { + commands.add(Command.to().selectAll() + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void select(String key, long record) { + commands.add(Command.to().select(key).from(record)); + } + + @Override + public void select(String key, long record, long timestamp) { + commands.add(Command.to().select(key).from(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(String key, long record, String timestamp) { + commands.add(Command.to().select(key).from(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(List keys, long record, long timestamp) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(record).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(List keys, long record, String timestamp) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(record).at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(List keys, List records) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records))); + } + + @Override + public void select(List keys, List records, Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)).page(page)); + } + + @Override + public void select(List keys, List records, Order order) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)).order(order)); + } + + @Override + public void select(List keys, List records, Order order, + Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)).order(order) + .page(page)); + } + + @Override + public void select(String key, List records) { + commands.add(Command.to().select(key).from(firstRecord(records), + restRecords(records))); + } + + @Override + public void select(String key, List records, Page page) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)).page(page)); + } + + @Override + public void select(String key, List records, Order order) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)).order(order)); + } + + @Override + public void select(String key, List records, Order order, Page page) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)).order(order) + .page(page)); + } + + @Override + public void select(String key, List records, long timestamp) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(String key, List records, long timestamp, + Page page) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void select(String key, List records, long timestamp, + Order order) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void select(String key, List records, long timestamp, + Order order, Page page) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void select(String key, List records, String timestamp) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(String key, List records, String timestamp, + Page page) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void select(String key, List records, String timestamp, + Order order) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void select(String key, List records, String timestamp, + Order order, Page page) { + commands.add(Command.to().select(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void select(List keys, List records, long timestamp) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(List keys, List records, long timestamp, + Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void select(List keys, List records, long timestamp, + Order order) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void select(List keys, List records, long timestamp, + Order order, Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void select(List keys, List records, + String timestamp) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(List keys, List records, String timestamp, + Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void select(List keys, List records, String timestamp, + Order order) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void select(List keys, List records, String timestamp, + Order order, Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void select(Criteria criteria) { + commands.add(Command.to().selectAll().where(criteria)); + } + + @Override + public void select(Criteria criteria, Page page) { + commands.add(Command.to().selectAll().where(criteria).page(page)); + } + + @Override + public void select(Criteria criteria, Order order) { + commands.add(Command.to().selectAll().where(criteria).order(order)); + } + + @Override + public void select(Criteria criteria, Order order, Page page) { + commands.add(Command.to().selectAll().where(criteria).order(order) + .page(page)); + } + + @Override + public void select(String ccl) { + commands.add(Command.to().selectAll().where(ccl)); + } + + @Override + public void select(String ccl, Page page) { + commands.add(Command.to().selectAll().where(ccl).page(page)); + } + + @Override + public void select(String ccl, Order order) { + commands.add(Command.to().selectAll().where(ccl).order(order)); + } + + @Override + public void select(String ccl, Order order, Page page) { + commands.add( + Command.to().selectAll().where(ccl).order(order).page(page)); + } + + @Override + public void select(Criteria criteria, long timestamp) { + commands.add(Command.to().selectAll().where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(Criteria criteria, long timestamp, Page page) { + commands.add(Command.to().selectAll().where(criteria) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void select(Criteria criteria, long timestamp, Order order) { + commands.add(Command.to().selectAll().where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void select(Criteria criteria, long timestamp, Order order, + Page page) { + commands.add(Command.to().selectAll().where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void select(Criteria criteria, String timestamp) { + commands.add(Command.to().selectAll().where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(Criteria criteria, String timestamp, Page page) { + commands.add(Command.to().selectAll().where(criteria) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void select(Criteria criteria, String timestamp, Order order) { + commands.add(Command.to().selectAll().where(criteria) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void select(Criteria criteria, String timestamp, Order order, + Page page) { + commands.add(Command.to().selectAll().where(criteria) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void select(String ccl, long timestamp, Page page) { + commands.add(Command.to().selectAll().where(ccl) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void select(String ccl, long timestamp, Order order) { + commands.add(Command.to().selectAll().where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void select(String ccl, long timestamp, Order order, Page page) { + commands.add(Command.to().selectAll().where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void select(String ccl, String timestamp) { + commands.add(Command.to().selectAll().where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(String ccl, String timestamp, Page page) { + commands.add(Command.to().selectAll().where(ccl) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void select(String ccl, String timestamp, Order order) { + commands.add(Command.to().selectAll().where(ccl) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void select(String ccl, String timestamp, Order order, Page page) { + commands.add(Command.to().selectAll().where(ccl) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void select(String key, Criteria criteria) { + commands.add(Command.to().select(key).where(criteria)); + } + + @Override + public void select(String key, Criteria criteria, Page page) { + commands.add(Command.to().select(key).where(criteria).page(page)); + } + + @Override + public void select(String key, Criteria criteria, Order order) { + commands.add(Command.to().select(key).where(criteria).order(order)); + } + + @Override + public void select(String key, Criteria criteria, Order order, Page page) { + commands.add(Command.to().select(key).where(criteria).order(order) + .page(page)); + } + + @Override + public void select(String key, Criteria criteria, long timestamp) { + commands.add(Command.to().select(key).where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(String key, Criteria criteria, long timestamp, + Page page) { + commands.add(Command.to().select(key).where(criteria) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void select(String key, Criteria criteria, long timestamp, + Order order) { + commands.add(Command.to().select(key).where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void select(String key, Criteria criteria, long timestamp, + Order order, Page page) { + commands.add(Command.to().select(key).where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void select(String key, Criteria criteria, String timestamp) { + commands.add(Command.to().select(key).where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(String key, Criteria criteria, String timestamp, + Page page) { + commands.add(Command.to().select(key).where(criteria) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void select(String key, Criteria criteria, String timestamp, + Order order) { + commands.add(Command.to().select(key).where(criteria) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void select(String key, Criteria criteria, String timestamp, + Order order, Page page) { + commands.add(Command.to().select(key).where(criteria) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void select(String key, String ccl, long timestamp) { + commands.add(Command.to().select(key).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(String key, String ccl, long timestamp, Page page) { + commands.add(Command.to().select(key).where(ccl) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void select(String key, String ccl, long timestamp, Order order) { + commands.add(Command.to().select(key).where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void select(String key, String ccl, long timestamp, Order order, + Page page) { + commands.add(Command.to().select(key).where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void select(String key, String ccl, String timestamp) { + commands.add(Command.to().select(key).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(String key, String ccl, String timestamp, Page page) { + commands.add(Command.to().select(key).where(ccl) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void select(String key, String ccl, String timestamp, Order order) { + commands.add(Command.to().select(key).where(ccl) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void select(String key, String ccl, String timestamp, Order order, + Page page) { + commands.add(Command.to().select(key).where(ccl) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void select(List keys, Criteria criteria) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria)); + } + + @Override + public void select(List keys, Criteria criteria, Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).page(page)); + } + + @Override + public void select(List keys, Criteria criteria, Order order) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).order(order)); + } + + @Override + public void select(List keys, Criteria criteria, Order order, + Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).order(order).page(page)); + } + + @Override + public void select(List keys, Criteria criteria, long timestamp) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(List keys, Criteria criteria, long timestamp, + Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromMicros(timestamp)) + .page(page)); + } + + @Override + public void select(List keys, Criteria criteria, long timestamp, + Order order) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromMicros(timestamp)) + .order(order)); + } + + @Override + public void select(List keys, Criteria criteria, long timestamp, + Order order, Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromMicros(timestamp)) + .order(order).page(page)); + } + + @Override + public void select(List keys, Criteria criteria, String timestamp) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(List keys, Criteria criteria, String timestamp, + Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromString(timestamp)) + .page(page)); + } + + @Override + public void select(List keys, Criteria criteria, String timestamp, + Order order) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromString(timestamp)) + .order(order)); + } + + @Override + public void select(List keys, Criteria criteria, String timestamp, + Order order, Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromString(timestamp)) + .order(order).page(page)); + } + + @Override + public void select(List keys, String ccl, long timestamp) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void select(List keys, String ccl, long timestamp, + Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void select(List keys, String ccl, long timestamp, + Order order) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void select(List keys, String ccl, long timestamp, + Order order, Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromMicros(timestamp)).order(order) + .page(page)); + } + + @Override + public void select(List keys, String ccl, String timestamp) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromString(timestamp))); + } + + @Override + public void select(List keys, String ccl, String timestamp, + Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void select(List keys, String ccl, String timestamp, + Order order) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void select(List keys, String ccl, String timestamp, + Order order, Page page) { + commands.add(Command.to().select(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromString(timestamp)).order(order) + .page(page)); + } + + // -- get methods -- + + @Override + public void get(String key, long record) { + commands.add(Command.to().get(key).from(record)); + } + + @Override + public void get(String key, long record, long timestamp) { + commands.add(Command.to().get(key).from(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(String key, long record, String timestamp) { + commands.add(Command.to().get(key).from(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(List keys, long record) { + commands.add( + Command.to().get(firstKey(keys), restKeys(keys)).from(record)); + } + + @Override + public void get(List keys, long record, long timestamp) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(record).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(List keys, long record, String timestamp) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(record).at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(List keys, List records) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records))); + } + + @Override + public void get(List keys, List records, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)).page(page)); + } + + @Override + public void get(List keys, List records, Order order) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)).order(order)); + } + + @Override + public void get(List keys, List records, Order order, + Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)).order(order) + .page(page)); + } + + @Override + public void get(String key, List records) { + commands.add(Command.to().get(key).from(firstRecord(records), + restRecords(records))); + } + + @Override + public void get(String key, List records, Page page) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)).page(page)); + } + + @Override + public void get(String key, List records, Order order) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)).order(order)); + } + + @Override + public void get(String key, List records, Order order, Page page) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)).order(order) + .page(page)); + } + + @Override + public void get(String key, List records, long timestamp) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(String key, List records, long timestamp, Page page) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void get(String key, List records, long timestamp, + Order order) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void get(String key, List records, long timestamp, Order order, + Page page) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void get(String key, List records, String timestamp) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(String key, List records, String timestamp, + Page page) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void get(String key, List records, String timestamp, + Order order) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void get(String key, List records, String timestamp, + Order order, Page page) { + commands.add(Command.to().get(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void get(List keys, List records, long timestamp) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(List keys, List records, long timestamp, + Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void get(List keys, List records, long timestamp, + Order order) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void get(List keys, List records, long timestamp, + Order order, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void get(List keys, List records, String timestamp) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(List keys, List records, String timestamp, + Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void get(List keys, List records, String timestamp, + Order order) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void get(List keys, List records, String timestamp, + Order order, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void get(String key, Criteria criteria) { + commands.add(Command.to().get(key).where(criteria)); + } + + @Override + public void get(String key, Criteria criteria, Page page) { + commands.add(Command.to().get(key).where(criteria).page(page)); + } + + @Override + public void get(String key, Criteria criteria, Order order) { + commands.add(Command.to().get(key).where(criteria).order(order)); + } + + @Override + public void get(String key, Criteria criteria, Order order, Page page) { + commands.add( + Command.to().get(key).where(criteria).order(order).page(page)); + } + + @Override + public void get(Criteria criteria) { + commands.add(Command.to().getAll().where(criteria)); + } + + @Override + public void get(Criteria criteria, Page page) { + commands.add(Command.to().getAll().where(criteria).page(page)); + } + + @Override + public void get(Criteria criteria, Order order) { + commands.add(Command.to().getAll().where(criteria).order(order)); + } + + @Override + public void get(Criteria criteria, Order order, Page page) { + commands.add( + Command.to().getAll().where(criteria).order(order).page(page)); + } + + @Override + public void get(String ccl) { + commands.add(Command.to().getAll().where(ccl)); + } + + @Override + public void get(String ccl, Page page) { + commands.add(Command.to().getAll().where(ccl).page(page)); + } + + @Override + public void get(String ccl, Order order) { + commands.add(Command.to().getAll().where(ccl).order(order)); + } + + @Override + public void get(String ccl, Order order, Page page) { + commands.add(Command.to().getAll().where(ccl).order(order).page(page)); + } + + @Override + public void get(Criteria criteria, long timestamp) { + commands.add(Command.to().getAll().where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(Criteria criteria, long timestamp, Page page) { + commands.add(Command.to().getAll().where(criteria) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void get(Criteria criteria, long timestamp, Order order) { + commands.add(Command.to().getAll().where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void get(Criteria criteria, long timestamp, Order order, Page page) { + commands.add(Command.to().getAll().where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void get(Criteria criteria, String timestamp) { + commands.add(Command.to().getAll().where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(Criteria criteria, String timestamp, Page page) { + commands.add(Command.to().getAll().where(criteria) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void get(Criteria criteria, String timestamp, Order order) { + commands.add(Command.to().getAll().where(criteria) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void get(Criteria criteria, String timestamp, Order order, + Page page) { + commands.add(Command.to().getAll().where(criteria) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void get(String ccl, long timestamp, Page page) { + commands.add(Command.to().getAll().where(ccl) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void get(String ccl, long timestamp, Order order) { + commands.add(Command.to().getAll().where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void get(String ccl, long timestamp, Order order, Page page) { + commands.add(Command.to().getAll().where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void get(String ccl, String timestamp) { + commands.add(Command.to().getAll().where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(String ccl, String timestamp, Page page) { + commands.add(Command.to().getAll().where(ccl) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void get(String ccl, String timestamp, Order order) { + commands.add(Command.to().getAll().where(ccl) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void get(String ccl, String timestamp, Order order, Page page) { + commands.add(Command.to().getAll().where(ccl) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void get(String key, Criteria criteria, long timestamp) { + commands.add(Command.to().get(key).where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(String key, Criteria criteria, long timestamp, Page page) { + commands.add(Command.to().get(key).where(criteria) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void get(String key, Criteria criteria, long timestamp, + Order order) { + commands.add(Command.to().get(key).where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void get(String key, Criteria criteria, long timestamp, Order order, + Page page) { + commands.add(Command.to().get(key).where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void get(String key, Criteria criteria, String timestamp) { + commands.add(Command.to().get(key).where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(String key, Criteria criteria, String timestamp, + Page page) { + commands.add(Command.to().get(key).where(criteria) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void get(String key, Criteria criteria, String timestamp, + Order order) { + commands.add(Command.to().get(key).where(criteria) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void get(String key, Criteria criteria, String timestamp, + Order order, Page page) { + commands.add(Command.to().get(key).where(criteria) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void get(String key, String ccl, long timestamp) { + commands.add(Command.to().get(key).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(String key, String ccl, long timestamp, Page page) { + commands.add(Command.to().get(key).where(ccl) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void get(String key, String ccl, long timestamp, Order order) { + commands.add(Command.to().get(key).where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void get(String key, String ccl, long timestamp, Order order, + Page page) { + commands.add(Command.to().get(key).where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void get(String key, String ccl, String timestamp) { + commands.add(Command.to().get(key).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(String key, String ccl, String timestamp, Page page) { + commands.add(Command.to().get(key).where(ccl) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void get(String key, String ccl, String timestamp, Order order) { + commands.add(Command.to().get(key).where(ccl) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void get(String key, String ccl, String timestamp, Order order, + Page page) { + commands.add(Command.to().get(key).where(ccl) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + @Override + public void get(List keys, Criteria criteria) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .where(criteria)); + } + + @Override + public void get(List keys, Criteria criteria, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .where(criteria).page(page)); + } + + @Override + public void get(List keys, Criteria criteria, Order order) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .where(criteria).order(order)); + } + + @Override + public void get(List keys, Criteria criteria, Order order, + Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .where(criteria).order(order).page(page)); + } + + @Override + public void get(List keys, String ccl) { + commands.add( + Command.to().get(firstKey(keys), restKeys(keys)).where(ccl)); + } + + @Override + public void get(List keys, String ccl, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .page(page)); + } + + @Override + public void get(List keys, String ccl, Order order) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .order(order)); + } + + @Override + public void get(List keys, String ccl, Order order, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .order(order).page(page)); + } + + @Override + public void get(List keys, Criteria criteria, long timestamp) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(List keys, Criteria criteria, long timestamp, + Page page) { + commands.add( + Command.to().get(firstKey(keys), restKeys(keys)).where(criteria) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void get(List keys, Criteria criteria, long timestamp, + Order order) { + commands.add( + Command.to().get(firstKey(keys), restKeys(keys)).where(criteria) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void get(List keys, Criteria criteria, long timestamp, + Order order, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromMicros(timestamp)) + .order(order).page(page)); + } + + @Override + public void get(List keys, Criteria criteria, String timestamp) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(List keys, Criteria criteria, String timestamp, + Page page) { + commands.add( + Command.to().get(firstKey(keys), restKeys(keys)).where(criteria) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void get(List keys, Criteria criteria, String timestamp, + Order order) { + commands.add( + Command.to().get(firstKey(keys), restKeys(keys)).where(criteria) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void get(List keys, Criteria criteria, String timestamp, + Order order, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromString(timestamp)) + .order(order).page(page)); + } + + @Override + public void get(List keys, String ccl, long timestamp) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void get(List keys, String ccl, long timestamp, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .at(Timestamp.fromMicros(timestamp)).page(page)); + } + + @Override + public void get(List keys, String ccl, long timestamp, + Order order) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order)); + } + + @Override + public void get(List keys, String ccl, long timestamp, Order order, + Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .at(Timestamp.fromMicros(timestamp)).order(order).page(page)); + } + + @Override + public void get(List keys, String ccl, String timestamp) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void get(List keys, String ccl, String timestamp, + Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .at(Timestamp.fromString(timestamp)).page(page)); + } + + @Override + public void get(List keys, String ccl, String timestamp, + Order order) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .at(Timestamp.fromString(timestamp)).order(order)); + } + + @Override + public void get(List keys, String ccl, String timestamp, + Order order, Page page) { + commands.add(Command.to().get(firstKey(keys), restKeys(keys)).where(ccl) + .at(Timestamp.fromString(timestamp)).order(order).page(page)); + } + + // -- verify methods -- + + @Override + public void verify(String key, Object value, long record) { + commands.add(Command.to().verify(key).as(value).in(record)); + } + + @Override + public void verify(String key, Object value, long record, long timestamp) { + commands.add(Command.to().verify(key).as(value).in(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void verify(String key, Object value, long record, + String timestamp) { + commands.add(Command.to().verify(key).as(value).in(record) + .at(Timestamp.fromString(timestamp))); + } + + // -- jsonify methods -- + + @Override + public void jsonify(List records, boolean identifier) { + long first = firstRecord(records); + long[] rest = restRecords(records); + if(identifier) { + commands.add(Command.to().jsonify(first, rest).identifier()); + } + else { + commands.add(Command.to().jsonify(first, rest)); + } + } + + @Override + public void jsonify(List records, long timestamp, + boolean identifier) { + long first = firstRecord(records); + long[] rest = restRecords(records); + if(identifier) { + commands.add(Command.to().jsonify(first, rest) + .at(Timestamp.fromMicros(timestamp)).identifier()); + } + else { + commands.add(Command.to().jsonify(first, rest) + .at(Timestamp.fromMicros(timestamp))); + } + } + + @Override + public void jsonify(List records, String timestamp, + boolean identifier) { + long first = firstRecord(records); + long[] rest = restRecords(records); + if(identifier) { + commands.add(Command.to().jsonify(first, rest) + .at(Timestamp.fromString(timestamp)).identifier()); + } + else { + commands.add(Command.to().jsonify(first, rest) + .at(Timestamp.fromString(timestamp))); + } + } + + // -- find methods -- + + @Override + public void find(Criteria criteria) { + commands.add(Command.to().find(criteria)); + } + + @Override + public void find(Criteria criteria, Page page) { + commands.add(Command.to().find(criteria).page(page)); + } + + @Override + public void find(Criteria criteria, Order order) { + commands.add(Command.to().find(criteria).order(order)); + } + + @Override + public void find(Criteria criteria, Order order, Page page) { + commands.add(Command.to().find(criteria).order(order).page(page)); + } + + @Override + public void find(String ccl) { + commands.add(Command.to().find(ccl)); + } + + @Override + public void find(String ccl, Page page) { + commands.add(Command.to().find(ccl).page(page)); + } + + @Override + public void find(String ccl, Order order) { + commands.add(Command.to().find(ccl).order(order)); + } + + @Override + public void find(String ccl, Order order, Page page) { + commands.add(Command.to().find(ccl).order(order).page(page)); + } + + @Override + public void find(String key, Operator operator, List values) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + Order order) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + Order order, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + long timestamp) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + long timestamp, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + long timestamp, Order order) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + long timestamp, Order order, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + String timestamp) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + String timestamp, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + String timestamp, Order order) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, Operator operator, List values, + String timestamp, Order order, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + Order order) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + Order order, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + long timestamp) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + long timestamp, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + long timestamp, Order order) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + long timestamp, Order order, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + String timestamp) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + String timestamp, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + String timestamp, Order order) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + @Override + public void find(String key, String operator, List values, + String timestamp, Order order, Page page) { + commands.add(new BuiltCommand( + "find " + key + " " + operator + " " + values)); + } + + // -- search -- + + @Override + public void search(String key, String query) { + commands.add(Command.to().search(key).forQuery(query)); + } + + // -- revert methods -- + + @Override + public void revert(List keys, List records, long timestamp) { + for (String key : keys) { + for (long record : records) { + commands.add(Command.to().revert(key).in(record) + .to(Timestamp.fromMicros(timestamp))); + } + } + } + + @Override + public void revert(List keys, List records, + String timestamp) { + for (String key : keys) { + for (long record : records) { + commands.add(Command.to().revert(key).in(record) + .to(Timestamp.fromString(timestamp))); + } + } + } + + @Override + public void revert(List keys, long record, long timestamp) { + for (String key : keys) { + commands.add(Command.to().revert(key).in(record) + .to(Timestamp.fromMicros(timestamp))); + } + } + + @Override + public void revert(List keys, long record, String timestamp) { + for (String key : keys) { + commands.add(Command.to().revert(key).in(record) + .to(Timestamp.fromString(timestamp))); + } + } + + @Override + public void revert(String key, List records, long timestamp) { + for (long record : records) { + commands.add(Command.to().revert(key).in(record) + .to(Timestamp.fromMicros(timestamp))); + } + } + + @Override + public void revert(String key, List records, String timestamp) { + for (long record : records) { + commands.add(Command.to().revert(key).in(record) + .to(Timestamp.fromString(timestamp))); + } + } + + @Override + public void revert(String key, long record, long timestamp) { + commands.add(Command.to().revert(key).in(record) + .to(Timestamp.fromMicros(timestamp))); + } + + @Override + public void revert(String key, long record, String timestamp) { + commands.add(Command.to().revert(key).in(record) + .to(Timestamp.fromString(timestamp))); + } + + // -- holds methods -- + + @Override + public void holds(List records) { + for (long record : records) { + commands.add(Command.to().holds(record)); + } + } + + @Override + public void holds(long record) { + commands.add(Command.to().holds(record)); + } + + // -- verifyAndSwap -- + + @Override + public void verifyAndSwap(String key, Object expected, long record, + Object replacement) { + commands.add(Command.to().verifyAndSwap(key).as(expected).in(record) + .with(replacement)); + } + + // -- verifyOrSet -- + + @Override + public void verifyOrSet(String key, Object value, long record) { + commands.add(Command.to().verifyOrSet(key).as(value).in(record)); + } + + // -- findOrAdd -- + + @Override + public void findOrAdd(String key, Object value) { + commands.add(Command.to().findOrAdd(key).as(value)); + } + + // -- findOrInsert methods -- + + @Override + public void findOrInsert(Criteria criteria, String json) { + commands.add(Command.to().findOrInsert(criteria).json(json)); + } + + @Override + public void findOrInsert(String ccl, String json) { + commands.add(Command.to().findOrInsert(ccl).json(json)); + } + + // -- time methods -- + + @Override + public void time() { + commands.add(Command.to().time()); + } + + @Override + public void time(String phrase) { + commands.add(Command.to().time(phrase)); + } + + // -- trace methods -- + + @Override + public void trace(long record) { + commands.add(Command.to().trace(record)); + } + + @Override + public void trace(long record, long timestamp) { + commands.add( + Command.to().trace(record).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void trace(long record, String timestamp) { + commands.add( + Command.to().trace(record).at(Timestamp.fromString(timestamp))); + } + + @Override + public void trace(List records) { + for (long record : records) { + commands.add(Command.to().trace(record)); + } + } + + @Override + public void trace(List records, long timestamp) { + for (long record : records) { + commands.add(Command.to().trace(record) + .at(Timestamp.fromMicros(timestamp))); + } + } + + @Override + public void trace(List records, String timestamp) { + for (long record : records) { + commands.add(Command.to().trace(record) + .at(Timestamp.fromString(timestamp))); + } + } + + // -- consolidate -- + + @Override + public void consolidate(List records) { + if(records.size() >= 2) { + long first = records.get(0); + long second = records.get(1); + long[] remaining = new long[records.size() - 2]; + for (int i = 2; i < records.size(); ++i) { + remaining[i - 2] = records.get(i); + } + commands.add(Command.to().consolidate(first, second, remaining)); + } + } + + // -- ping -- + + @Override + public void ping() { + commands.add(Command.to().ping()); + } + + // -- calculate methods -- + + @Override + public void sum(String key, long record) { + commands.add(Command.to().calculate("sum", key).in(record)); + } + + @Override + public void sum(String key, long record, long timestamp) { + commands.add(Command.to().calculate("sum", key).in(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void sum(String key, long record, String timestamp) { + commands.add(Command.to().calculate("sum", key).in(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void sum(String key, List records) { + commands.add(Command.to().calculate("sum", key).in(firstRecord(records), + restRecords(records))); + } + + @Override + public void sum(String key, List records, long timestamp) { + commands.add(Command.to().calculate("sum", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void sum(String key, List records, String timestamp) { + commands.add(Command.to().calculate("sum", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void sum(String key) { + commands.add(Command.to().calculate("sum", key)); + } + + @Override + public void sum(String key, String timestamp) { + commands.add(Command.to().calculate("sum", key) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void sum(String key, Criteria criteria) { + commands.add(Command.to().calculate("sum", key).where(criteria)); + } + + @Override + public void sum(String key, Criteria criteria, long timestamp) { + commands.add(Command.to().calculate("sum", key).where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void sum(String key, Criteria criteria, String timestamp) { + commands.add(Command.to().calculate("sum", key).where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void sum(String key, String ccl, long timestamp) { + commands.add(Command.to().calculate("sum", key).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void sum(String key, String ccl, String timestamp) { + commands.add(Command.to().calculate("sum", key).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void average(String key, long record) { + commands.add(Command.to().calculate("average", key).in(record)); + } + + @Override + public void average(String key, long record, long timestamp) { + commands.add(Command.to().calculate("average", key).in(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void average(String key, long record, String timestamp) { + commands.add(Command.to().calculate("average", key).in(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void average(String key, List records) { + commands.add(Command.to().calculate("average", key) + .in(firstRecord(records), restRecords(records))); + } + + @Override + public void average(String key, List records, long timestamp) { + commands.add(Command.to().calculate("average", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void average(String key, List records, String timestamp) { + commands.add(Command.to().calculate("average", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void average(String key) { + commands.add(Command.to().calculate("average", key)); + } + + @Override + public void average(String key, String timestamp) { + commands.add(Command.to().calculate("average", key) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void average(String key, Criteria criteria) { + commands.add(Command.to().calculate("average", key).where(criteria)); + } + + @Override + public void average(String key, Criteria criteria, long timestamp) { + commands.add(Command.to().calculate("average", key).where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void average(String key, Criteria criteria, String timestamp) { + commands.add(Command.to().calculate("average", key).where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void average(String key, String ccl, long timestamp) { + commands.add(Command.to().calculate("average", key).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void average(String key, String ccl, String timestamp) { + commands.add(Command.to().calculate("average", key).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void count(String key, long record) { + commands.add(Command.to().calculate("count", key).in(record)); + } + + @Override + public void count(String key, long record, long timestamp) { + commands.add(Command.to().calculate("count", key).in(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void count(String key, long record, String timestamp) { + commands.add(Command.to().calculate("count", key).in(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void count(String key, List records) { + commands.add(Command.to().calculate("count", key) + .in(firstRecord(records), restRecords(records))); + } + + @Override + public void count(String key, List records, long timestamp) { + commands.add(Command.to().calculate("count", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void count(String key, List records, String timestamp) { + commands.add(Command.to().calculate("count", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void count(String key) { + commands.add(Command.to().calculate("count", key)); + } + + @Override + public void count(String key, String timestamp) { + commands.add(Command.to().calculate("count", key) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void count(String key, Criteria criteria) { + commands.add(Command.to().calculate("count", key).where(criteria)); + } + + @Override + public void count(String key, Criteria criteria, long timestamp) { + commands.add(Command.to().calculate("count", key).where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void count(String key, Criteria criteria, String timestamp) { + commands.add(Command.to().calculate("count", key).where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void count(String key, String ccl, long timestamp) { + commands.add(Command.to().calculate("count", key).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void count(String key, String ccl, String timestamp) { + commands.add(Command.to().calculate("count", key).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void max(String key, long record) { + commands.add(Command.to().calculate("max", key).in(record)); + } + + @Override + public void max(String key, long record, long timestamp) { + commands.add(Command.to().calculate("max", key).in(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void max(String key, long record, String timestamp) { + commands.add(Command.to().calculate("max", key).in(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void max(String key, List records) { + commands.add(Command.to().calculate("max", key).in(firstRecord(records), + restRecords(records))); + } + + @Override + public void max(String key, List records, long timestamp) { + commands.add(Command.to().calculate("max", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void max(String key, List records, String timestamp) { + commands.add(Command.to().calculate("max", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void max(String key, Criteria criteria) { + commands.add(Command.to().calculate("max", key).where(criteria)); + } + + @Override + public void max(String key, Criteria criteria, long timestamp) { + commands.add(Command.to().calculate("max", key).where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void max(String key, Criteria criteria, String timestamp) { + commands.add(Command.to().calculate("max", key).where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void max(String key, String ccl) { + commands.add(Command.to().calculate("max", key).where(ccl)); + } + + @Override + public void max(String key, String ccl, long timestamp) { + commands.add(Command.to().calculate("max", key).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void max(String key, String ccl, String timestamp) { + commands.add(Command.to().calculate("max", key).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void max(String key) { + commands.add(Command.to().calculate("max", key)); + } + + @Override + public void min(String key, long record) { + commands.add(Command.to().calculate("min", key).in(record)); + } + + @Override + public void min(String key, long record, long timestamp) { + commands.add(Command.to().calculate("min", key).in(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void min(String key, long record, String timestamp) { + commands.add(Command.to().calculate("min", key).in(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void min(String key) { + commands.add(Command.to().calculate("min", key)); + } + + @Override + public void min(String key, List records, long timestamp) { + commands.add(Command.to().calculate("min", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void min(String key, List records, String timestamp) { + commands.add(Command.to().calculate("min", key) + .in(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void min(String key, Criteria criteria) { + commands.add(Command.to().calculate("min", key).where(criteria)); + } + + @Override + public void min(String key, Criteria criteria, long timestamp) { + commands.add(Command.to().calculate("min", key).where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void min(String key, Criteria criteria, String timestamp) { + commands.add(Command.to().calculate("min", key).where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void min(String key, String ccl) { + commands.add(Command.to().calculate("min", key).where(ccl)); + } + + @Override + public void min(String key, String ccl, long timestamp) { + commands.add(Command.to().calculate("min", key).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void min(String key, String ccl, String timestamp) { + commands.add(Command.to().calculate("min", key).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void min(String key, List records) { + commands.add(Command.to().calculate("min", key).in(firstRecord(records), + restRecords(records))); + } + + // -- navigate methods -- + + @Override + public void navigate(String key, long record) { + commands.add(Command.to().navigate(key).from(record)); + } + + @Override + public void navigate(String key, long record, long timestamp) { + commands.add(Command.to().navigate(key).from(record) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void navigate(String key, long record, String timestamp) { + commands.add(Command.to().navigate(key).from(record) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void navigate(List keys, long record) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .from(record)); + } + + @Override + public void navigate(List keys, long record, long timestamp) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .from(record).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void navigate(List keys, long record, String timestamp) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .from(record).at(Timestamp.fromString(timestamp))); + } + + @Override + public void navigate(List keys, List records) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records))); + } + + @Override + public void navigate(String key, List records) { + commands.add(Command.to().navigate(key).from(firstRecord(records), + restRecords(records))); + } + + @Override + public void navigate(String key, List records, long timestamp) { + commands.add(Command.to().navigate(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void navigate(String key, List records, String timestamp) { + commands.add(Command.to().navigate(key) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void navigate(List keys, List records, + long timestamp) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void navigate(List keys, List records, + String timestamp) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .from(firstRecord(records), restRecords(records)) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void navigate(String key, String ccl) { + commands.add(Command.to().navigate(key).where(ccl)); + } + + @Override + public void navigate(String key, String ccl, long timestamp) { + commands.add(Command.to().navigate(key).where(ccl) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void navigate(String key, String ccl, String timestamp) { + commands.add(Command.to().navigate(key).where(ccl) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void navigate(List keys, String ccl) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .where(ccl)); + } + + @Override + public void navigate(List keys, String ccl, long timestamp) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void navigate(List keys, String ccl, String timestamp) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .where(ccl).at(Timestamp.fromString(timestamp))); + } + + @Override + public void navigate(String key, Criteria criteria) { + commands.add(Command.to().navigate(key).where(criteria)); + } + + @Override + public void navigate(String key, Criteria criteria, long timestamp) { + commands.add(Command.to().navigate(key).where(criteria) + .at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void navigate(String key, Criteria criteria, String timestamp) { + commands.add(Command.to().navigate(key).where(criteria) + .at(Timestamp.fromString(timestamp))); + } + + @Override + public void navigate(List keys, Criteria criteria) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .where(criteria)); + } + + @Override + public void navigate(List keys, Criteria criteria, long timestamp) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromMicros(timestamp))); + } + + @Override + public void navigate(List keys, Criteria criteria, + String timestamp) { + commands.add(Command.to().navigate(firstKey(keys), restKeys(keys)) + .where(criteria).at(Timestamp.fromString(timestamp))); + } + + @Override + public void exec(String ccl) { + commands.add(Command.parse(ccl)); + } + + @Override + public void submit(String ccl) { + commands.add(Command.parse(ccl)); + } + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CalculateCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CalculateCommand.java new file mode 100644 index 000000000..6b3c210de --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CalculateCommand.java @@ -0,0 +1,281 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; + +/** + * A {@link Command} builder for {@code calculate} commands. + *

+ * {@code calculate} applies an aggregation function to a key, optionally scoped + * to specific records or a condition, and optionally pinned to a historical + * timestamp. + *

+ * + *
+ * calculate <function> <key>
+ * calculate <function> <key> in <records>
+ * calculate <function> <key> where <condition>
+ * calculate <function> <key> [in|where] ... at <timestamp>
+ * 
+ * + * @author Jeff Nelson + */ +public final class CalculateCommand { + + /** + * The terminal state for a {@code calculate} command. Supports optional + * {@code in}, {@code where}, and {@code at} clauses that can be chained + * fluently. + */ + public static final class State implements Command { + + /** + * The aggregation function name. + */ + private final String function; + + /** + * The key to calculate. + */ + private final String key; + + /** + * The target records, or {@code null} if unscoped or condition-scoped. + */ + @Nullable + private List records; + + /** + * The structured {@link Criteria}, or {@code null}. + */ + @Nullable + private Criteria criteria; + + /** + * The raw CCL condition string, or {@code null}. + */ + @Nullable + private String condition; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * Construct a new instance. + * + * @param function the aggregation function + * @param key the key to calculate + */ + State(String function, String key) { + this.function = function; + this.key = key; + } + + /** + * Scope this calculation to the specified {@code record}. + * + * @param record the target record + * @return this state for further chaining + */ + public State in(long record) { + return in(record, new long[0]); + } + + /** + * Scope this calculation to the specified records. + * + * @param record the first record + * @param moreRecords additional records + * @return this state for further chaining + */ + public State in(long record, long... moreRecords) { + this.records = CclRenderer.collectRecords(record, moreRecords); + return this; + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return this state for further chaining + */ + public State from(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return this state for further chaining + */ + public State from(long record, long... moreRecords) { + return in(record, moreRecords); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return this state for further chaining + */ + public State within(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return this state for further chaining + */ + public State within(long record, long... moreRecords) { + return in(record, moreRecords); + } + + /** + * Scope this calculation to records matching the {@link Criteria}. + * + * @param criteria the {@link Criteria} + * @return this state for further chaining + */ + public State where(Criteria criteria) { + this.criteria = criteria; + return this; + } + + /** + * Scope this calculation to records matching the CCL condition string. + * + * @param ccl the CCL condition + * @return this state for further chaining + */ + public State where(String ccl) { + this.condition = ccl; + return this; + } + + /** + * Pin this calculation to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public State at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Return the aggregation function for this command. + * + * @return the function name + */ + public String function() { + return function; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target records for this command. + * + * @return the records, or {@code null} + */ + @Nullable + public List records() { + return records != null ? Collections.unmodifiableList(records) + : null; + } + + /** + * Return the {@link Criteria} for this command. + * + * @return the {@link Criteria}, or {@code null} + */ + @Nullable + public Criteria criteria() { + return criteria; + } + + /** + * Return the raw CCL condition for this command. + * + * @return the condition string, or {@code null} + */ + @Nullable + public String condition() { + return condition; + } + + /** + * Return the historical {@link Timestamp} for this command. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("calculate "); + sb.append(function); + sb.append(" "); + sb.append(key); + if(records != null) { + sb.append(" in "); + sb.append(CclRenderer.records(records)); + } + else { + CclRenderer.appendWhereClause(sb, criteria, condition); + } + CclRenderer.appendTimestamp(sb, timestamp); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private CalculateCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CclRenderer.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CclRenderer.java new file mode 100644 index 000000000..eca1a46b4 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CclRenderer.java @@ -0,0 +1,254 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Direction; +import com.cinchapi.concourse.lang.sort.Order; +import com.cinchapi.concourse.lang.sort.OrderComponent; +import com.google.common.collect.Lists; + +/** + * Shared utilities for rendering {@link Command} components as CCL string + * fragments. + * + * @author Jeff Nelson + */ +public final class CclRenderer { + + /** + * Render a list of keys as a CCL fragment. A single key is rendered bare; + * multiple keys are rendered as a bracketed, comma-separated list. + * + * @param keys the keys to render + * @return the CCL fragment + */ + public static String keys(List keys) { + if(keys.size() == 1) { + return keys.get(0); + } + else { + return "[" + String.join(", ", keys) + "]"; + } + } + + /** + * Render a list of record identifiers as a CCL fragment. A single record is + * rendered bare; multiple records are rendered as a bracketed, + * comma-separated list. + * + * @param records the records to render + * @return the CCL fragment + */ + public static String records(List records) { + if(records.size() == 1) { + return Long.toString(records.get(0)); + } + else { + StringBuilder sb = new StringBuilder("["); + for (int i = 0; i < records.size(); ++i) { + if(i > 0) { + sb.append(", "); + } + sb.append(records.get(i)); + } + sb.append("]"); + return sb.toString(); + } + } + + /** + * Render a value as a CCL fragment. Strings are double-quoted with internal + * double quotes escaped; numbers and other types are rendered as their + * string representation. + * + * @param value the value to render + * @return the CCL fragment + */ + public static String value(Object value) { + if(value instanceof String) { + String escaped = ((String) value).replace("\\", "\\\\") + .replace("\"", "\\\""); + return "\"" + escaped + "\""; + } + else { + return value.toString(); + } + } + + /** + * Render a list of values as a CCL fragment, enclosed in brackets. + * + * @param values the values to render + * @return the CCL fragment + */ + public static String values(List values) { + StringBuilder sb = new StringBuilder("["); + for (int i = 0; i < values.size(); ++i) { + if(i > 0) { + sb.append(", "); + } + sb.append(value(values.get(i))); + } + sb.append("]"); + return sb.toString(); + } + + /** + * Append a condition clause to the {@link StringBuilder} using either a + * {@link Criteria} object or a raw CCL string. + * + * @param sb the builder to append to + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the raw CCL string, or {@code null} + */ + public static void appendCondition(StringBuilder sb, + @Nullable Criteria criteria, @Nullable String condition) { + if(criteria != null) { + sb.append(criteria.ccl()); + } + else if(condition != null) { + sb.append(condition); + } + } + + /** + * Append a {@code where} clause to the {@link StringBuilder}. + * + * @param sb the builder to append to + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the raw CCL string, or {@code null} + */ + public static void appendWhereClause(StringBuilder sb, + @Nullable Criteria criteria, @Nullable String condition) { + if(criteria != null || condition != null) { + sb.append(" where "); + appendCondition(sb, criteria, condition); + } + } + + /** + * Append a timestamp clause to the {@link StringBuilder}, if the + * {@code timestamp} is not {@code null}. + * + * @param sb the builder to append to + * @param timestamp the {@link Timestamp}, or {@code null} + */ + public static void appendTimestamp(StringBuilder sb, + @Nullable Timestamp timestamp) { + if(timestamp != null) { + sb.append(" at ").append(timestamp.getMicros()); + } + } + + /** + * Append an {@code order by} clause to the {@link StringBuilder}, if the + * {@code order} is not {@code null}. + * + * @param sb the builder to append to + * @param order the {@link Order}, or {@code null} + */ + public static void appendOrder(StringBuilder sb, @Nullable Order order) { + if(order != null) { + List spec = order.spec(); + if(!spec.isEmpty()) { + sb.append(" order by "); + for (int i = 0; i < spec.size(); ++i) { + if(i > 0) { + sb.append(", "); + } + OrderComponent component = spec.get(i); + sb.append(component.key()); + if(component.direction() == Direction.DESCENDING) { + sb.append(" desc"); + } + if(component.timestamp() != null) { + sb.append(" at ") + .append(component.timestamp().getMicros()); + } + } + } + } + } + + /** + * Append a {@code page} clause to the {@link StringBuilder}, if the + * {@code page} is not {@code null}. + *

+ * The rendered format uses {@code page size } when the + * offset is page-aligned, or {@code offset size } when the + * offset is not evenly divisible by the limit. + *

+ * + * @param sb the builder to append to + * @param page the {@link Page}, or {@code null} + */ + public static void appendPage(StringBuilder sb, @Nullable Page page) { + if(page != null) { + int limit = page.limit(); + int offset = page.offset(); + if(limit > 0 && offset % limit == 0) { + int number = (offset / limit) + 1; + sb.append(" page ").append(number); + } + else { + sb.append(" offset ").append(offset); + } + sb.append(" size ").append(limit); + } + } + + /** + * Collect a primary value and additional varargs values into a single list. + * + * @param first the first value + * @param more additional values + * @return the combined list + */ + public static List collectRecords(long first, long... more) { + List records = Lists.newArrayListWithCapacity(1 + more.length); + records.add(first); + for (long r : more) { + records.add(r); + } + return records; + } + + /** + * Collect a primary key and additional varargs keys into a single list. + * + * @param first the first key + * @param more additional keys + * @return the combined list + */ + public static List collectKeys(String first, String... more) { + List keys = Lists.newArrayListWithCapacity(1 + more.length); + keys.add(first); + for (String k : more) { + keys.add(k); + } + return keys; + } + + private CclRenderer() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ChronicleCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ChronicleCommand.java new file mode 100644 index 000000000..1c4a29e0c --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ChronicleCommand.java @@ -0,0 +1,336 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code chronicle} commands. + *

+ * {@code chronicle} retrieves the history of changes to a key in a record, + * optionally bounded by one or two timestamps. + *

+ * + *
+ * chronicle <key> in <record>
+ * chronicle <key> in <record> at <start>
+ * chronicle <key> in <record> at <start> at <end>
+ * 
+ * + * @author Jeff Nelson + */ +public final class ChronicleCommand { + + /** + * The state after specifying the key for the {@code chronicle} command. + */ + public static final class KeyState { + + /** + * The key to chronicle. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to chronicle + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the record in which to chronicle the key. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return new RecordState(key, record); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + } + + /** + * The terminal state for a {@code chronicle} command after specifying the + * key and record. Supports an optional {@code at} clause for a start + * timestamp. + */ + public static final class RecordState implements Command { + + /** + * The key to chronicle. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + */ + RecordState(String key, long record) { + this.key = key; + this.record = record; + } + + /** + * Pin this command to a start {@link Timestamp}. + * + * @param start the start {@link Timestamp} + * @return the next builder state + */ + public TimestampState at(Timestamp start) { + return new TimestampState(key, record, start); + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("chronicle "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a {@code chronicle} command that includes a start + * {@link Timestamp}. Supports an optional second {@code at} clause for an + * end timestamp. + */ + public static final class TimestampState implements Command { + + /** + * The key to chronicle. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + * @param start the start {@link Timestamp} + */ + TimestampState(String key, long record, Timestamp start) { + this.key = key; + this.record = record; + this.start = start; + } + + /** + * Specify the end {@link Timestamp} for this command. + * + * @param end the end {@link Timestamp} + * @return the next builder state + */ + public RangeState at(Timestamp end) { + return new RangeState(key, record, start, end); + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("chronicle "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a {@code chronicle} command that includes both a + * start and end {@link Timestamp}. + */ + public static final class RangeState implements Command { + + /** + * The key to chronicle. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * The end {@link Timestamp}. + */ + private final Timestamp end; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + * @param start the start {@link Timestamp} + * @param end the end {@link Timestamp} + */ + RangeState(String key, long record, Timestamp start, Timestamp end) { + this.key = key; + this.record = record; + this.start = start; + this.end = end; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + /** + * Return the end {@link Timestamp} for this command. + * + * @return the end {@link Timestamp} + */ + public Timestamp end() { + return end; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("chronicle "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + CclRenderer.appendTimestamp(sb, end); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private ChronicleCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ClearCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ClearCommand.java new file mode 100644 index 000000000..ec1b31d13 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ClearCommand.java @@ -0,0 +1,200 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +/** + * A {@link Command} builder for {@code clear} commands. + *

+ * {@code clear} removes all values for specified keys from records, or removes + * all data from entire records. + *

+ * + *
+ * clear <record>
+ * clear [<records>]
+ * clear <key> from <record>
+ * clear [<keys>] from [<records>]
+ * 
+ * + * @author Jeff Nelson + */ +public final class ClearCommand { + + /** + * The state after specifying keys for the {@code clear} command. The caller + * must specify target records via {@link #from(long)} or + * {@link #from(long, long...)}. + */ + public static final class KeyState { + + /** + * The keys to clear. + */ + private final List keys; + + /** + * Construct a new instance. + * + * @param key the first key + * @param moreKeys additional keys + */ + KeyState(String key, String... moreKeys) { + this.keys = CclRenderer.collectKeys(key, moreKeys); + } + + /** + * Clear from the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public RecordState from(long record) { + return new RecordState(keys, record); + } + + /** + * Clear from the specified {@code records}. + * + * @param record the first record + * @param more additional records + * @return the next builder state + */ + public RecordState from(long record, long... more) { + return new RecordState(keys, record, more); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param more additional records + * @return the next builder state + */ + public RecordState in(long record, long... more) { + return from(record, more); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param more additional records + * @return the next builder state + */ + public RecordState within(long record, long... more) { + return from(record, more); + } + + } + + /** + * The terminal state for a {@code clear} command, reached after specifying + * target records and optionally keys. + */ + public static final class RecordState implements Command { + + /** + * The keys to clear, or {@code null} to clear all keys from the target + * records. + */ + @Nullable + private final List keys; + + /** + * The target records. + */ + private final List records; + + /** + * Construct a new instance. + * + * @param keys the keys, or {@code null} to clear all + * @param record the first record + * @param moreRecords additional records + */ + RecordState(@Nullable List keys, long record, + long... moreRecords) { + this.keys = keys; + this.records = CclRenderer.collectRecords(record, moreRecords); + } + + /** + * Return the keys for this command. + * + * @return the keys, or {@code null} if all keys should be cleared + */ + @Nullable + public List keys() { + return keys != null ? Collections.unmodifiableList(keys) : null; + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("clear "); + if(keys != null) { + sb.append(CclRenderer.keys(keys)); + sb.append(" from "); + } + sb.append(CclRenderer.records(records)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private ClearCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/Command.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/Command.java new file mode 100644 index 000000000..8ab0f4f51 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/Command.java @@ -0,0 +1,155 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.List; + +import com.cinchapi.ccl.SyntaxException; +import com.cinchapi.ccl.syntax.AbstractSyntaxTree; +import com.cinchapi.ccl.syntax.CommandTree; +import com.cinchapi.common.base.CheckedExceptions; +import com.cinchapi.concourse.ParseException; +import com.cinchapi.concourse.lang.ConcourseCompiler; +import com.google.common.base.Preconditions; + +/** + * A {@link Command} encapsulates a complete CCL (Concourse Command Language) + * statement that can be rendered as a CCL string. + *

+ * {@link Command Commands} are constructed using the fluent builder methods + * available from the {@link CommandBuilder} returned by {@link #to()}, + * {@link #is()}, or {@link #go()}. All three entry points are interchangeable + * aliases — choose whichever reads most naturally for the command being + * constructed: {@link #to()} for actions, {@link #is()} for checks, and + * {@link #go()} as an imperative. Each builder method returns a state object + * whose methods guide the caller through the valid parameter sequence for that + * command. Terminal states implement {@link Command}, so the result can be used + * directly without an explicit {@code build()} call. + *

+ *

Usage

+ * + *
+ * // Write
+ * Command cmd = Command.to().add("name").as("jeff").in(1);
+ *
+ * // Query
+ * Command cmd = Command.to().find(criteria).order(order);
+ *
+ * // Check
+ * Command cmd = Command.is().holds(1);
+ *
+ * // Imperative
+ * Command cmd = Command.go().ping();
+ *
+ * // Render
+ * String ccl = cmd.ccl();
+ * 
+ * + * @author Jeff Nelson + */ +public interface Command { + + /** + * Return a CCL string equivalent to this {@link Command}. + * + * @return the CCL string + */ + public String ccl(); + + /** + * Parse a CCL command string into a {@link Command}. + *

+ * The provided {@code ccl} string is compiled using the + * {@link ConcourseCompiler} and must represent a valid command statement + * (e.g., {@code "find age > 30 order by name"} or + * {@code "add name as jeff in 1"}). + *

+ * + * @param ccl the CCL command string to parse + * @return an equivalent {@link Command} + * @throws ParseException if the CCL string is not a valid command + */ + public static Command parse(String ccl) { + try { + List trees = ConcourseCompiler.get() + .compile(ccl); + Preconditions.checkArgument( + !trees.isEmpty() && trees.get(0) instanceof CommandTree, + "The provided CCL is not a valid " + + "Command statement: %s", + ccl); + CommandTree tree = (CommandTree) trees.get(0); + return new ParsedCommand(ccl, tree); + } + catch (Exception e) { + if(e instanceof SyntaxException + || e instanceof IllegalStateException + || e instanceof IllegalArgumentException + || e.getCause() != null && e + .getCause() instanceof com.cinchapi.ccl.generated.ParseException) { + throw new ParseException( + new com.cinchapi.concourse.thrift.ParseException( + e.getMessage())); + } + else { + throw CheckedExceptions.throwAsRuntimeException(e); + } + } + } + + /** + * Return a {@link CommandBuilder} for constructing {@link Command + * Commands}. + *

+ * This entry point reads naturally for action commands: + * {@code Command.to().add("name").as("jeff").in(1)}. + *

+ * + * @return a {@link CommandBuilder} + */ + public static CommandBuilder to() { + return new CommandBuilder(); + } + + /** + * Return a {@link CommandBuilder} for constructing {@link Command + * Commands}. + *

+ * This entry point reads naturally for query and check commands: + * {@code Command.is().holds(1)}. + *

+ * + * @return a {@link CommandBuilder} + */ + public static CommandBuilder is() { + return new CommandBuilder(); + } + + /** + * Return a {@link CommandBuilder} for constructing {@link Command + * Commands}. + *

+ * This entry point reads naturally as an imperative: + * {@code Command.go().add("name").as("jeff").in(1)}. + *

+ * + * @return a {@link CommandBuilder} + */ + public static CommandBuilder go() { + return new CommandBuilder(); + } + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandBuilder.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandBuilder.java new file mode 100644 index 000000000..7b847fae2 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandBuilder.java @@ -0,0 +1,687 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import com.cinchapi.concourse.lang.Criteria; + +/** + * A {@link CommandBuilder} provides the fluent factory methods for constructing + * {@link Command Commands}. Obtain an instance via {@link Command#to()}, + * {@link Command#is()}, or {@link Command#go()}. + *

+ * Each method returns a state object whose methods guide the caller through the + * valid parameter sequence for that command. Terminal states implement + * {@link Command}, so the result can be used directly without an explicit + * {@code build()} call. + *

+ * + * @author Jeff Nelson + */ +public final class CommandBuilder { + + CommandBuilder() {/* no-init */} + + /** + * Start building a {@code find} {@link Command} using the provided + * {@link Criteria}. + * + * @param criteria the {@link Criteria} to find + * @return the next builder state + */ + public FindCommand.ConditionState find(Criteria criteria) { + return new FindCommand.ConditionState(criteria, null); + } + + /** + * Start building a {@code find} {@link Command} using a raw CCL condition + * string. + * + * @param ccl the CCL condition + * @return the next builder state + */ + public FindCommand.ConditionState find(String ccl) { + return new FindCommand.ConditionState(null, ccl); + } + + /** + * Start building a {@code select} {@link Command} for the specified + * {@code key}. + * + * @param key the key to select + * @return the next builder state + */ + public SelectCommand.KeyState select(String key) { + return new SelectCommand.KeyState(key); + } + + /** + * Start building a {@code select} {@link Command} for the specified + * {@code keys}. + * + * @param key the first key to select + * @param moreKeys additional keys + * @return the next builder state + */ + public SelectCommand.KeyState select(String key, String... moreKeys) { + return new SelectCommand.KeyState(key, moreKeys); + } + + /** + * Return a {@code select} {@link Command} for all keys from the specified + * {@code record}. + * + * @param record the record to select from + * @return the next builder state + */ + public SelectCommand.SourceState select(long record) { + return select(record, new long[0]); + } + + /** + * Return a {@code select} {@link Command} for all keys from the specified + * {@code records}. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SelectCommand.SourceState select(long record, long... moreRecords) { + return new SelectCommand.SourceState(null, + CclRenderer.collectRecords(record, moreRecords), null, null); + } + + /** + * Start building a {@code select} {@link Command} for all keys. + * + * @return the next builder state + */ + public SelectCommand.AllKeysState selectAll() { + return new SelectCommand.AllKeysState(); + } + + /** + * Start building a {@code get} {@link Command} for the specified + * {@code key}. + * + * @param key the key to get + * @return the next builder state + */ + public GetCommand.KeyState get(String key) { + return new GetCommand.KeyState(key); + } + + /** + * Start building a {@code get} {@link Command} for the specified + * {@code keys}. + * + * @param key the first key to get + * @param moreKeys additional keys + * @return the next builder state + */ + public GetCommand.KeyState get(String key, String... moreKeys) { + return new GetCommand.KeyState(key, moreKeys); + } + + /** + * Return a {@code get} {@link Command} for all keys from the specified + * {@code record}. + * + * @param record the record to get from + * @return the next builder state + */ + public GetCommand.SourceState get(long record) { + return get(record, new long[0]); + } + + /** + * Return a {@code get} {@link Command} for all keys from the specified + * {@code records}. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public GetCommand.SourceState get(long record, long... moreRecords) { + return new GetCommand.SourceState(null, + CclRenderer.collectRecords(record, moreRecords), null, null); + } + + /** + * Start building a {@code get} {@link Command} for all keys. + * + * @return the next builder state + */ + public GetCommand.AllKeysState getAll() { + return new GetCommand.AllKeysState(); + } + + /** + * Start building a {@code navigate} {@link Command} for the specified + * navigation {@code key}. + * + * @param key the key to navigate + * @return the next builder state + */ + public NavigateCommand.KeyState navigate(String key) { + return new NavigateCommand.KeyState(key); + } + + /** + * Start building a {@code navigate} {@link Command} for the specified + * navigation {@code keys}. + * + * @param key the first key to navigate + * @param moreKeys additional keys + * @return the next builder state + */ + public NavigateCommand.KeyState navigate(String key, String... moreKeys) { + return new NavigateCommand.KeyState(key, moreKeys); + } + + /** + * Start building an {@code add} {@link Command} for the specified + * {@code key}. + * + * @param key the key to add + * @return the next builder state + */ + public AddCommand.KeyState add(String key) { + return new AddCommand.KeyState(key); + } + + /** + * Start building a {@code set} {@link Command} for the specified + * {@code key}. + * + * @param key the key to set + * @return the next builder state + */ + public SetCommand.KeyState set(String key) { + return new SetCommand.KeyState(key); + } + + /** + * Start building a {@code remove} {@link Command} for the specified + * {@code key}. + * + * @param key the key to remove + * @return the next builder state + */ + public RemoveCommand.KeyState remove(String key) { + return new RemoveCommand.KeyState(key); + } + + /** + * Start building a {@code clear} {@link Command} for the specified + * {@code key}. + * + * @param key the key to clear + * @return the next builder state + */ + public ClearCommand.KeyState clear(String key) { + return new ClearCommand.KeyState(key); + } + + /** + * Start building a {@code clear} {@link Command} for the specified + * {@code keys}. + * + * @param key the first key to clear + * @param moreKeys additional keys + * @return the next builder state + */ + public ClearCommand.KeyState clear(String key, String... moreKeys) { + return new ClearCommand.KeyState(key, moreKeys); + } + + /** + * Return a {@code clear} {@link Command} for the specified {@code record}. + * + * @param record the record to clear + * @return the {@link Command} + */ + public ClearCommand.RecordState clear(long record) { + return new ClearCommand.RecordState(null, record); + } + + /** + * Return a {@code clear} {@link Command} for the specified {@code records}. + * + * @param record the first record to clear + * @param moreRecords additional records + * @return the {@link Command} + */ + public ClearCommand.RecordState clear(long record, long... moreRecords) { + return new ClearCommand.RecordState(null, record, moreRecords); + } + + /** + * Start building an {@code insert} {@link Command} with the provided JSON + * data. + * + * @param json the JSON string to insert + * @return the next builder state + */ + public InsertCommand.JsonState insert(String json) { + return new InsertCommand.JsonState(json); + } + + /** + * Start building a {@code link} {@link Command} for the specified + * {@code key}. + * + * @param key the link key + * @return the next builder state + */ + public LinkCommand.KeyState link(String key) { + return new LinkCommand.KeyState(key); + } + + /** + * Start building an {@code unlink} {@link Command} for the specified + * {@code key}. + * + * @param key the link key + * @return the next builder state + */ + public UnlinkCommand.KeyState unlink(String key) { + return new UnlinkCommand.KeyState(key); + } + + /** + * Start building a {@code verify} {@link Command} for the specified + * {@code key}. + * + * @param key the key to verify + * @return the next builder state + */ + public VerifyCommand.KeyState verify(String key) { + return new VerifyCommand.KeyState(key); + } + + /** + * Start building a {@code verifyAndSwap} {@link Command} for the specified + * {@code key}. + * + * @param key the key to verify and swap + * @return the next builder state + */ + public VerifyAndSwapCommand.KeyState verifyAndSwap(String key) { + return new VerifyAndSwapCommand.KeyState(key); + } + + /** + * Start building a {@code verifyOrSet} {@link Command} for the specified + * {@code key}. + * + * @param key the key to verify or set + * @return the next builder state + */ + public VerifyOrSetCommand.KeyState verifyOrSet(String key) { + return new VerifyOrSetCommand.KeyState(key); + } + + /** + * Start building a {@code findOrAdd} {@link Command} for the specified + * {@code key}. + * + * @param key the key to find or add + * @return the next builder state + */ + public FindOrAddCommand.KeyState findOrAdd(String key) { + return new FindOrAddCommand.KeyState(key); + } + + /** + * Start building a {@code findOrInsert} {@link Command} using the provided + * {@link Criteria}. + * + * @param criteria the {@link Criteria} to search + * @return the next builder state + */ + public FindOrInsertCommand.ConditionState findOrInsert(Criteria criteria) { + return new FindOrInsertCommand.ConditionState(criteria, null); + } + + /** + * Start building a {@code findOrInsert} {@link Command} using a raw CCL + * condition string. + * + * @param ccl the CCL condition + * @return the next builder state + */ + public FindOrInsertCommand.ConditionState findOrInsert(String ccl) { + return new FindOrInsertCommand.ConditionState(null, ccl); + } + + /** + * Start building a {@code search} {@link Command} for the specified + * {@code key}. + * + * @param key the key to search + * @return the next builder state + */ + public SearchCommand.KeyState search(String key) { + return new SearchCommand.KeyState(key); + } + + /** + * Start building a {@code browse} {@link Command} for the specified + * {@code key}. + * + * @param key the key to browse + * @return the next builder state + */ + public BrowseCommand.State browse(String key) { + return new BrowseCommand.State(key); + } + + /** + * Start building a {@code browse} {@link Command} for the specified + * {@code keys}. + * + * @param key the first key to browse + * @param moreKeys additional keys + * @return the next builder state + */ + public BrowseCommand.State browse(String key, String... moreKeys) { + return new BrowseCommand.State(key, moreKeys); + } + + /** + * Start building a {@code describe} {@link Command} for the specified + * {@code record}. + * + * @param record the record to describe + * @return the next builder state + */ + public DescribeCommand.State describe(long record) { + return new DescribeCommand.State(record); + } + + /** + * Start building a {@code describe} {@link Command} for the specified + * {@code records}. + * + * @param record the first record to describe + * @param moreRecords additional records + * @return the next builder state + */ + public DescribeCommand.State describe(long record, long... moreRecords) { + return new DescribeCommand.State(record, moreRecords); + } + + /** + * Start building a {@code describe} {@link Command} that describes all + * records, optionally at a historical + * {@link com.cinchapi.concourse.Timestamp Timestamp}. + * + * @return the next builder state + */ + public DescribeCommand.AllState describeAll() { + return new DescribeCommand.AllState(); + } + + /** + * Start building a {@code trace} {@link Command} for the specified + * {@code record}. + * + * @param record the record to trace + * @return the next builder state + */ + public TraceCommand.State trace(long record) { + return new TraceCommand.State(record); + } + + /** + * Start building a {@code trace} {@link Command} for the specified + * {@code records}. + * + * @param record the first record to trace + * @param moreRecords additional records + * @return the next builder state + */ + public TraceCommand.State trace(long record, long... moreRecords) { + return new TraceCommand.State(record, moreRecords); + } + + /** + * Start building a {@code holds} {@link Command} for the specified + * {@code record}. + * + * @param record the record to check + * @return the next builder state + */ + public HoldsCommand.State holds(long record) { + return new HoldsCommand.State(record); + } + + /** + * Start building a {@code holds} {@link Command} for the specified + * {@code records}. + * + * @param record the first record to check + * @param moreRecords additional records + * @return the next builder state + */ + public HoldsCommand.State holds(long record, long... moreRecords) { + return new HoldsCommand.State(record, moreRecords); + } + + /** + * Start building a {@code jsonify} {@link Command} for the specified + * {@code record}. + * + * @param record the record to jsonify + * @return the next builder state + */ + public JsonifyCommand.State jsonify(long record) { + return new JsonifyCommand.State(record); + } + + /** + * Start building a {@code jsonify} {@link Command} for the specified + * {@code records}. + * + * @param record the first record to jsonify + * @param moreRecords additional records + * @return the next builder state + */ + public JsonifyCommand.State jsonify(long record, long... moreRecords) { + return new JsonifyCommand.State(record, moreRecords); + } + + /** + * Start building a {@code chronicle} {@link Command} for the specified + * {@code key}. + * + * @param key the key to chronicle + * @return the next builder state + */ + public ChronicleCommand.KeyState chronicle(String key) { + return new ChronicleCommand.KeyState(key); + } + + /** + * Start building a {@code diff} {@link Command} for the specified + * {@code record}. + * + * @param record the record to diff + * @return the next builder state + */ + public DiffCommand.RecordState diff(long record) { + return new DiffCommand.RecordState(record); + } + + /** + * Start building a {@code diff} {@link Command} for the specified + * {@code key}. + * + * @param key the key to diff + * @return the next builder state + */ + public DiffCommand.KeyState diff(String key) { + return new DiffCommand.KeyState(key); + } + + /** + * Start building an {@code audit} {@link Command} for the specified + * {@code record}. + * + * @param record the record to audit + * @return the next builder state + */ + public AuditCommand.RecordState audit(long record) { + return new AuditCommand.RecordState(record); + } + + /** + * Start building an {@code audit} {@link Command} for the specified + * {@code key}. + * + * @param key the key to audit + * @return the next builder state + */ + public AuditCommand.KeyState audit(String key) { + return new AuditCommand.KeyState(key); + } + + /** + * Start building a {@code revert} {@link Command} for the specified + * {@code key}. + * + * @param key the key to revert + * @return the next builder state + */ + public RevertCommand.KeyState revert(String key) { + return new RevertCommand.KeyState(key); + } + + /** + * Start building a {@code revert} {@link Command} for the specified + * {@code keys}. + * + * @param key the first key to revert + * @param moreKeys additional keys + * @return the next builder state + */ + public RevertCommand.KeyState revert(String key, String... moreKeys) { + return new RevertCommand.KeyState(key, moreKeys); + } + + /** + * Start building a {@code reconcile} {@link Command} for the specified + * {@code key}. + * + * @param key the key to reconcile + * @return the next builder state + */ + public ReconcileCommand.KeyState reconcile(String key) { + return new ReconcileCommand.KeyState(key); + } + + /** + * Return a {@code consolidate} {@link Command} that merges the specified + * records into the {@code first}. + * + * @param first the target record + * @param second the first record to merge + * @param remaining additional records to merge + * @return the {@link Command} + */ + public ConsolidateCommand.State consolidate(long first, long second, + long... remaining) { + return new ConsolidateCommand.State(first, second, remaining); + } + + /** + * Start building a {@code calculate} {@link Command} with the specified + * aggregation {@code function} and {@code key}. + * + * @param function the calculation function (e.g., sum, avg) + * @param key the key to calculate + * @return the next builder state + */ + public CalculateCommand.State calculate(String function, String key) { + return new CalculateCommand.State(function, key); + } + + /** + * Return a {@code stage} {@link Command}. + * + * @return the {@link Command} + */ + public Command stage() { + return new BuiltCommand("stage"); + } + + /** + * Return a {@code commit} {@link Command}. + * + * @return the {@link Command} + */ + public Command commit() { + return new BuiltCommand("commit"); + } + + /** + * Return an {@code abort} {@link Command}. + * + * @return the {@link Command} + */ + public Command abort() { + return new BuiltCommand("abort"); + } + + /** + * Return a {@code ping} {@link Command}. + * + * @return the {@link Command} + */ + public Command ping() { + return new BuiltCommand("ping"); + } + + /** + * Return an {@code inventory} {@link Command}. + * + * @return the {@link Command} + */ + public Command inventory() { + return new BuiltCommand("inventory"); + } + + /** + * Return a {@code time} {@link Command}. + * + * @return the {@link Command} + */ + public Command time() { + return new BuiltCommand("time"); + } + + /** + * Return a {@code time} {@link Command} that resolves the given + * {@code phrase} to a timestamp. + * + * @param phrase the natural language time phrase + * @return the {@link Command} + */ + public Command time(String phrase) { + return new BuiltCommand("time " + phrase); + } + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandGroup.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandGroup.java new file mode 100644 index 000000000..434c19ca9 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandGroup.java @@ -0,0 +1,933 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.List; +import java.util.Set; + +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; +import com.cinchapi.concourse.thrift.Operator; + +/** + * An interface that mirrors the Concourse API with void-returning methods. + * Implementations collect the method invocations as {@link Command Commands} + * for batch submission via {@code Concourse#submit(CommandGroup)}. + */ +public interface CommandGroup { + + /** + * Return the accumulated {@link Command Commands}. + * + * @return an unmodifiable list of {@link Command Commands} + */ + List commands(); + + void abort(); + + void add(String key, Object value); + + void add(String key, Object value, long record); + + void add(String key, Object value, List records); + + void audit(long record); + + void audit(long record, long start); + + void audit(long record, String start); + + void audit(long record, long start, long tend); + + void audit(long record, String start, String tend); + + void audit(String key, long record); + + void audit(String key, long record, long start); + + void audit(String key, long record, String start); + + void audit(String key, long record, long start, long tend); + + void audit(String key, long record, String start, String tend); + + void browse(String key); + + void browse(List keys); + + void browse(String key, long timestamp); + + void browse(String key, String timestamp); + + void browse(List keys, long timestamp); + + void browse(List keys, String timestamp); + + void chronicle(String key, long record); + + void chronicle(String key, long record, long start); + + void chronicle(String key, long record, String start); + + void chronicle(String key, long record, long start, long tend); + + void chronicle(String key, long record, String start, String tend); + + void clear(long record); + + void clear(List records); + + void clear(String key, long record); + + void clear(List keys, long record); + + void clear(String key, List records); + + void clear(List keys, List records); + + void commit(); + + void describe(); + + void describe(long timestamp); + + void describe(String timestamp); + + void describe(long record, long timestamp); + + void describe(long record, String timestamp); + + void describe(List records); + + void describe(List records, long timestamp); + + void describe(List records, String timestamp); + + void diff(long record, long start); + + void diff(long record, String start); + + void diff(long record, long start, long tend); + + void diff(long record, String start, String tend); + + void diff(String key, long record, long start); + + void diff(String key, long record, String start); + + void diff(String key, long record, long start, long tend); + + void diff(String key, long record, String start, String tend); + + void diff(String key, long start); + + void diff(String key, String start); + + void diff(String key, String start, String tend); + + void stage(); + + void insert(String json); + + void insert(String json, long record); + + void insert(String json, List records); + + void remove(String key, Object value, long record); + + void remove(String key, Object value, List records); + + void set(String key, Object value, long record); + + void set(String key, Object value); + + void set(String key, Object value, List records); + + void reconcile(String key, long record, Set values); + + void inventory(); + + void select(long record); + + void select(List records); + + void select(List records, Page page); + + void select(List records, Order order); + + void select(List records, Order order, Page page); + + void select(long record, long timestamp); + + void select(long record, String timestamp); + + void select(List records, long timestamp); + + void select(List records, long timestamp, Page page); + + void select(List records, long timestamp, Order order); + + void select(List records, long timestamp, Order order, Page page); + + void select(List records, String timestamp); + + void select(List records, String timestamp, Page page); + + void select(List records, String timestamp, Order order); + + void select(List records, String timestamp, Order order, Page page); + + void select(String key, long record); + + void select(String key, long record, long timestamp); + + void select(String key, long record, String timestamp); + + void select(List keys, long record, long timestamp); + + void select(List keys, long record, String timestamp); + + void select(List keys, List records); + + void select(List keys, List records, Page page); + + void select(List keys, List records, Order order); + + void select(List keys, List records, Order order, Page page); + + void select(String key, List records); + + void select(String key, List records, Page page); + + void select(String key, List records, Order order); + + void select(String key, List records, Order order, Page page); + + void select(String key, List records, long timestamp); + + void select(String key, List records, long timestamp, Page page); + + void select(String key, List records, long timestamp, Order order); + + void select(String key, List records, long timestamp, Order order, + Page page); + + void select(String key, List records, String timestamp); + + void select(String key, List records, String timestamp, Page page); + + void select(String key, List records, String timestamp, Order order); + + void select(String key, List records, String timestamp, Order order, + Page page); + + void select(List keys, List records, long timestamp); + + void select(List keys, List records, long timestamp, + Page page); + + void select(List keys, List records, long timestamp, + Order order); + + void select(List keys, List records, long timestamp, + Order order, Page page); + + void select(List keys, List records, String timestamp); + + void select(List keys, List records, String timestamp, + Page page); + + void select(List keys, List records, String timestamp, + Order order); + + void select(List keys, List records, String timestamp, + Order order, Page page); + + void select(Criteria criteria); + + void select(Criteria criteria, Page page); + + void select(Criteria criteria, Order order); + + void select(Criteria criteria, Order order, Page page); + + void select(String ccl); + + void select(String ccl, Page page); + + void select(String ccl, Order order); + + void select(String ccl, Order order, Page page); + + void select(Criteria criteria, long timestamp); + + void select(Criteria criteria, long timestamp, Page page); + + void select(Criteria criteria, long timestamp, Order order); + + void select(Criteria criteria, long timestamp, Order order, Page page); + + void select(Criteria criteria, String timestamp); + + void select(Criteria criteria, String timestamp, Page page); + + void select(Criteria criteria, String timestamp, Order order); + + void select(Criteria criteria, String timestamp, Order order, Page page); + + void select(String ccl, long timestamp, Page page); + + void select(String ccl, long timestamp, Order order); + + void select(String ccl, long timestamp, Order order, Page page); + + void select(String ccl, String timestamp); + + void select(String ccl, String timestamp, Page page); + + void select(String ccl, String timestamp, Order order); + + void select(String ccl, String timestamp, Order order, Page page); + + void select(String key, Criteria criteria); + + void select(String key, Criteria criteria, Page page); + + void select(String key, Criteria criteria, Order order); + + void select(String key, Criteria criteria, Order order, Page page); + + void select(String key, Criteria criteria, long timestamp); + + void select(String key, Criteria criteria, long timestamp, Page page); + + void select(String key, Criteria criteria, long timestamp, Order order); + + void select(String key, Criteria criteria, long timestamp, Order order, + Page page); + + void select(String key, Criteria criteria, String timestamp); + + void select(String key, Criteria criteria, String timestamp, Page page); + + void select(String key, Criteria criteria, String timestamp, Order order); + + void select(String key, Criteria criteria, String timestamp, Order order, + Page page); + + void select(String key, String ccl, long timestamp); + + void select(String key, String ccl, long timestamp, Page page); + + void select(String key, String ccl, long timestamp, Order order); + + void select(String key, String ccl, long timestamp, Order order, Page page); + + void select(String key, String ccl, String timestamp); + + void select(String key, String ccl, String timestamp, Page page); + + void select(String key, String ccl, String timestamp, Order order); + + void select(String key, String ccl, String timestamp, Order order, + Page page); + + void select(List keys, Criteria criteria); + + void select(List keys, Criteria criteria, Page page); + + void select(List keys, Criteria criteria, Order order); + + void select(List keys, Criteria criteria, Order order, Page page); + + void select(List keys, Criteria criteria, long timestamp); + + void select(List keys, Criteria criteria, long timestamp, + Page page); + + void select(List keys, Criteria criteria, long timestamp, + Order order); + + void select(List keys, Criteria criteria, long timestamp, + Order order, Page page); + + void select(List keys, Criteria criteria, String timestamp); + + void select(List keys, Criteria criteria, String timestamp, + Page page); + + void select(List keys, Criteria criteria, String timestamp, + Order order); + + void select(List keys, Criteria criteria, String timestamp, + Order order, Page page); + + void select(List keys, String ccl, long timestamp); + + void select(List keys, String ccl, long timestamp, Page page); + + void select(List keys, String ccl, long timestamp, Order order); + + void select(List keys, String ccl, long timestamp, Order order, + Page page); + + void select(List keys, String ccl, String timestamp); + + void select(List keys, String ccl, String timestamp, Page page); + + void select(List keys, String ccl, String timestamp, Order order); + + void select(List keys, String ccl, String timestamp, Order order, + Page page); + + void get(String key, long record); + + void get(String key, long record, long timestamp); + + void get(String key, long record, String timestamp); + + void get(List keys, long record); + + void get(List keys, long record, long timestamp); + + void get(List keys, long record, String timestamp); + + void get(List keys, List records); + + void get(List keys, List records, Page page); + + void get(List keys, List records, Order order); + + void get(List keys, List records, Order order, Page page); + + void get(String key, List records); + + void get(String key, List records, Page page); + + void get(String key, List records, Order order); + + void get(String key, List records, Order order, Page page); + + void get(String key, List records, long timestamp); + + void get(String key, List records, long timestamp, Page page); + + void get(String key, List records, long timestamp, Order order); + + void get(String key, List records, long timestamp, Order order, + Page page); + + void get(String key, List records, String timestamp); + + void get(String key, List records, String timestamp, Page page); + + void get(String key, List records, String timestamp, Order order); + + void get(String key, List records, String timestamp, Order order, + Page page); + + void get(List keys, List records, long timestamp); + + void get(List keys, List records, long timestamp, Page page); + + void get(List keys, List records, long timestamp, + Order order); + + void get(List keys, List records, long timestamp, Order order, + Page page); + + void get(List keys, List records, String timestamp); + + void get(List keys, List records, String timestamp, + Page page); + + void get(List keys, List records, String timestamp, + Order order); + + void get(List keys, List records, String timestamp, + Order order, Page page); + + void get(String key, Criteria criteria); + + void get(String key, Criteria criteria, Page page); + + void get(String key, Criteria criteria, Order order); + + void get(String key, Criteria criteria, Order order, Page page); + + void get(Criteria criteria); + + void get(Criteria criteria, Page page); + + void get(Criteria criteria, Order order); + + void get(Criteria criteria, Order order, Page page); + + void get(String ccl); + + void get(String ccl, Page page); + + void get(String ccl, Order order); + + void get(String ccl, Order order, Page page); + + void get(Criteria criteria, long timestamp); + + void get(Criteria criteria, long timestamp, Page page); + + void get(Criteria criteria, long timestamp, Order order); + + void get(Criteria criteria, long timestamp, Order order, Page page); + + void get(Criteria criteria, String timestamp); + + void get(Criteria criteria, String timestamp, Page page); + + void get(Criteria criteria, String timestamp, Order order); + + void get(Criteria criteria, String timestamp, Order order, Page page); + + void get(String ccl, long timestamp, Page page); + + void get(String ccl, long timestamp, Order order); + + void get(String ccl, long timestamp, Order order, Page page); + + void get(String ccl, String timestamp); + + void get(String ccl, String timestamp, Page page); + + void get(String ccl, String timestamp, Order order); + + void get(String ccl, String timestamp, Order order, Page page); + + void get(String key, Criteria criteria, long timestamp); + + void get(String key, Criteria criteria, long timestamp, Page page); + + void get(String key, Criteria criteria, long timestamp, Order order); + + void get(String key, Criteria criteria, long timestamp, Order order, + Page page); + + void get(String key, Criteria criteria, String timestamp); + + void get(String key, Criteria criteria, String timestamp, Page page); + + void get(String key, Criteria criteria, String timestamp, Order order); + + void get(String key, Criteria criteria, String timestamp, Order order, + Page page); + + void get(String key, String ccl, long timestamp); + + void get(String key, String ccl, long timestamp, Page page); + + void get(String key, String ccl, long timestamp, Order order); + + void get(String key, String ccl, long timestamp, Order order, Page page); + + void get(String key, String ccl, String timestamp); + + void get(String key, String ccl, String timestamp, Page page); + + void get(String key, String ccl, String timestamp, Order order); + + void get(String key, String ccl, String timestamp, Order order, Page page); + + void get(List keys, Criteria criteria); + + void get(List keys, Criteria criteria, Page page); + + void get(List keys, Criteria criteria, Order order); + + void get(List keys, Criteria criteria, Order order, Page page); + + void get(List keys, String ccl); + + void get(List keys, String ccl, Page page); + + void get(List keys, String ccl, Order order); + + void get(List keys, String ccl, Order order, Page page); + + void get(List keys, Criteria criteria, long timestamp); + + void get(List keys, Criteria criteria, long timestamp, Page page); + + void get(List keys, Criteria criteria, long timestamp, Order order); + + void get(List keys, Criteria criteria, long timestamp, Order order, + Page page); + + void get(List keys, Criteria criteria, String timestamp); + + void get(List keys, Criteria criteria, String timestamp, Page page); + + void get(List keys, Criteria criteria, String timestamp, + Order order); + + void get(List keys, Criteria criteria, String timestamp, + Order order, Page page); + + void get(List keys, String ccl, long timestamp); + + void get(List keys, String ccl, long timestamp, Page page); + + void get(List keys, String ccl, long timestamp, Order order); + + void get(List keys, String ccl, long timestamp, Order order, + Page page); + + void get(List keys, String ccl, String timestamp); + + void get(List keys, String ccl, String timestamp, Page page); + + void get(List keys, String ccl, String timestamp, Order order); + + void get(List keys, String ccl, String timestamp, Order order, + Page page); + + void verify(String key, Object value, long record); + + void verify(String key, Object value, long record, long timestamp); + + void verify(String key, Object value, long record, String timestamp); + + void jsonify(List records, boolean identifier); + + void jsonify(List records, long timestamp, boolean identifier); + + void jsonify(List records, String timestamp, boolean identifier); + + void find(Criteria criteria); + + void find(Criteria criteria, Page page); + + void find(Criteria criteria, Order order); + + void find(Criteria criteria, Order order, Page page); + + void find(String ccl); + + void find(String ccl, Page page); + + void find(String ccl, Order order); + + void find(String ccl, Order order, Page page); + + void find(String key, Operator operator, List values); + + void find(String key, Operator operator, List values, Page page); + + void find(String key, Operator operator, List values, Order order); + + void find(String key, Operator operator, List values, Order order, + Page page); + + void find(String key, Operator operator, List values, + long timestamp); + + void find(String key, Operator operator, List values, + long timestamp, Page page); + + void find(String key, Operator operator, List values, + long timestamp, Order order); + + void find(String key, Operator operator, List values, + long timestamp, Order order, Page page); + + void find(String key, Operator operator, List values, + String timestamp); + + void find(String key, Operator operator, List values, + String timestamp, Page page); + + void find(String key, Operator operator, List values, + String timestamp, Order order); + + void find(String key, Operator operator, List values, + String timestamp, Order order, Page page); + + void find(String key, String operator, List values); + + void find(String key, String operator, List values, Page page); + + void find(String key, String operator, List values, Order order); + + void find(String key, String operator, List values, Order order, + Page page); + + void find(String key, String operator, List values, long timestamp); + + void find(String key, String operator, List values, long timestamp, + Page page); + + void find(String key, String operator, List values, long timestamp, + Order order); + + void find(String key, String operator, List values, long timestamp, + Order order, Page page); + + void find(String key, String operator, List values, + String timestamp); + + void find(String key, String operator, List values, + String timestamp, Page page); + + void find(String key, String operator, List values, + String timestamp, Order order); + + void find(String key, String operator, List values, + String timestamp, Order order, Page page); + + void search(String key, String query); + + void revert(List keys, List records, long timestamp); + + void revert(List keys, List records, String timestamp); + + void revert(List keys, long record, long timestamp); + + void revert(List keys, long record, String timestamp); + + void revert(String key, List records, long timestamp); + + void revert(String key, List records, String timestamp); + + void revert(String key, long record, long timestamp); + + void revert(String key, long record, String timestamp); + + void holds(List records); + + void holds(long record); + + void verifyAndSwap(String key, Object expected, long record, + Object replacement); + + void verifyOrSet(String key, Object value, long record); + + void findOrAdd(String key, Object value); + + void findOrInsert(Criteria criteria, String json); + + void findOrInsert(String ccl, String json); + + void time(); + + void time(String phrase); + + void trace(long record); + + void trace(long record, long timestamp); + + void trace(long record, String timestamp); + + void trace(List records); + + void trace(List records, long timestamp); + + void trace(List records, String timestamp); + + void consolidate(List records); + + void exec(String ccl); + + void submit(String ccl); + + void ping(); + + void sum(String key, long record); + + void sum(String key, long record, long timestamp); + + void sum(String key, long record, String timestamp); + + void sum(String key, List records); + + void sum(String key, List records, long timestamp); + + void sum(String key, List records, String timestamp); + + void sum(String key); + + void sum(String key, String timestamp); + + void sum(String key, Criteria criteria); + + void sum(String key, Criteria criteria, long timestamp); + + void sum(String key, Criteria criteria, String timestamp); + + void sum(String key, String ccl, long timestamp); + + void sum(String key, String ccl, String timestamp); + + void average(String key, long record); + + void average(String key, long record, long timestamp); + + void average(String key, long record, String timestamp); + + void average(String key, List records); + + void average(String key, List records, long timestamp); + + void average(String key, List records, String timestamp); + + void average(String key); + + void average(String key, String timestamp); + + void average(String key, Criteria criteria); + + void average(String key, Criteria criteria, long timestamp); + + void average(String key, Criteria criteria, String timestamp); + + void average(String key, String ccl, long timestamp); + + void average(String key, String ccl, String timestamp); + + void count(String key, long record); + + void count(String key, long record, long timestamp); + + void count(String key, long record, String timestamp); + + void count(String key, List records); + + void count(String key, List records, long timestamp); + + void count(String key, List records, String timestamp); + + void count(String key); + + void count(String key, String timestamp); + + void count(String key, Criteria criteria); + + void count(String key, Criteria criteria, long timestamp); + + void count(String key, Criteria criteria, String timestamp); + + void count(String key, String ccl, long timestamp); + + void count(String key, String ccl, String timestamp); + + void max(String key, long record); + + void max(String key, long record, long timestamp); + + void max(String key, long record, String timestamp); + + void max(String key, List records); + + void max(String key, List records, long timestamp); + + void max(String key, List records, String timestamp); + + void max(String key, Criteria criteria); + + void max(String key, Criteria criteria, long timestamp); + + void max(String key, Criteria criteria, String timestamp); + + void max(String key, String ccl); + + void max(String key, String ccl, long timestamp); + + void max(String key, String ccl, String timestamp); + + void max(String key); + + void min(String key, long record); + + void min(String key, long record, long timestamp); + + void min(String key, long record, String timestamp); + + void min(String key); + + void min(String key, List records, long timestamp); + + void min(String key, List records, String timestamp); + + void min(String key, Criteria criteria); + + void min(String key, Criteria criteria, long timestamp); + + void min(String key, Criteria criteria, String timestamp); + + void min(String key, String ccl); + + void min(String key, String ccl, long timestamp); + + void min(String key, String ccl, String timestamp); + + void min(String key, List records); + + void navigate(String key, long record); + + void navigate(String key, long record, long timestamp); + + void navigate(String key, long record, String timestamp); + + void navigate(List keys, long record); + + void navigate(List keys, long record, long timestamp); + + void navigate(List keys, long record, String timestamp); + + void navigate(List keys, List records); + + void navigate(String key, List records); + + void navigate(String key, List records, long timestamp); + + void navigate(String key, List records, String timestamp); + + void navigate(List keys, List records, long timestamp); + + void navigate(List keys, List records, String timestamp); + + void navigate(String key, String ccl); + + void navigate(String key, String ccl, long timestamp); + + void navigate(String key, String ccl, String timestamp); + + void navigate(List keys, String ccl); + + void navigate(List keys, String ccl, long timestamp); + + void navigate(List keys, String ccl, String timestamp); + + void navigate(String key, Criteria criteria); + + void navigate(String key, Criteria criteria, long timestamp); + + void navigate(String key, Criteria criteria, String timestamp); + + void navigate(List keys, Criteria criteria); + + void navigate(List keys, Criteria criteria, long timestamp); + + void navigate(List keys, Criteria criteria, String timestamp); + +} \ No newline at end of file diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandSerializer.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandSerializer.java new file mode 100644 index 000000000..1a79869ef --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandSerializer.java @@ -0,0 +1,1901 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.Language; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; +import com.cinchapi.concourse.thrift.JavaThriftBridge; +import com.cinchapi.concourse.thrift.TCommand; +import com.cinchapi.concourse.thrift.TCommandVerb; +import com.cinchapi.concourse.thrift.TObject; +import com.cinchapi.concourse.util.Convert; + +/** + * Utility for converting {@link Command Commands} to and from {@link TCommand} + * Thrift representations. + * + * @author Jeff Nelson + */ +public final class CommandSerializer { + + /** + * Convert a {@link Command} to a {@link TCommand} suitable for wire + * transport. + * + * @param command the {@link Command} to serialize + * @return the {@link TCommand} + * @throws UnsupportedOperationException if the {@link Command} type is not + * recognized + */ + public static TCommand toThrift(Command command) { + if(command instanceof ParsedCommand) { + return ((ParsedCommand) command).serialize(); + } + else if(command instanceof BuiltCommand) { + return serializeBuiltCommand((BuiltCommand) command); + } + else if(command instanceof FindCommand.ConditionState) { + return serializeFindCommand((FindCommand.ConditionState) command); + } + else if(command instanceof SelectCommand.SourceState) { + return serializeSelectCommand((SelectCommand.SourceState) command); + } + else if(command instanceof GetCommand.SourceState) { + return serializeGetCommand((GetCommand.SourceState) command); + } + else if(command instanceof NavigateCommand.SourceState) { + return serializeNavigateCommand( + (NavigateCommand.SourceState) command); + } + else if(command instanceof AddCommand.RecordState) { + return serializeAddRecordCommand((AddCommand.RecordState) command); + } + else if(command instanceof AddCommand.ValueState) { + return serializeAddValueCommand((AddCommand.ValueState) command); + } + else if(command instanceof SetCommand.RecordState) { + return serializeSetCommand((SetCommand.RecordState) command); + } + else if(command instanceof RemoveCommand.RecordState) { + return serializeRemoveCommand((RemoveCommand.RecordState) command); + } + else if(command instanceof ClearCommand.RecordState) { + return serializeClearCommand((ClearCommand.RecordState) command); + } + else if(command instanceof InsertCommand.RecordState) { + return serializeInsertRecordCommand( + (InsertCommand.RecordState) command); + } + else if(command instanceof InsertCommand.JsonState) { + return serializeInsertJsonCommand( + (InsertCommand.JsonState) command); + } + else if(command instanceof LinkCommand.DestinationState) { + return serializeLinkCommand((LinkCommand.DestinationState) command); + } + else if(command instanceof UnlinkCommand.DestinationState) { + return serializeUnlinkCommand( + (UnlinkCommand.DestinationState) command); + } + else if(command instanceof VerifyCommand.TimestampState) { + return serializeVerifyTimestampCommand( + (VerifyCommand.TimestampState) command); + } + else if(command instanceof VerifyCommand.RecordState) { + return serializeVerifyCommand((VerifyCommand.RecordState) command); + } + else if(command instanceof VerifyAndSwapCommand.SwapState) { + return serializeVerifyAndSwapCommand( + (VerifyAndSwapCommand.SwapState) command); + } + else if(command instanceof VerifyOrSetCommand.RecordState) { + return serializeVerifyOrSetCommand( + (VerifyOrSetCommand.RecordState) command); + } + else if(command instanceof FindOrAddCommand.ValueState) { + return serializeFindOrAddCommand( + (FindOrAddCommand.ValueState) command); + } + else if(command instanceof FindOrInsertCommand.JsonState) { + return serializeFindOrInsertCommand( + (FindOrInsertCommand.JsonState) command); + } + else if(command instanceof SearchCommand.QueryState) { + return serializeSearchCommand((SearchCommand.QueryState) command); + } + else if(command instanceof BrowseCommand.State) { + return serializeBrowseCommand((BrowseCommand.State) command); + } + else if(command instanceof DescribeCommand.AllState) { + return serializeDescribeAllCommand( + (DescribeCommand.AllState) command); + } + else if(command instanceof DescribeCommand.State) { + return serializeDescribeCommand((DescribeCommand.State) command); + } + else if(command instanceof TraceCommand.State) { + return serializeTraceCommand((TraceCommand.State) command); + } + else if(command instanceof HoldsCommand.State) { + return serializeHoldsCommand((HoldsCommand.State) command); + } + else if(command instanceof JsonifyCommand.State) { + return serializeJsonifyCommand((JsonifyCommand.State) command); + } + else if(command instanceof ChronicleCommand.RangeState) { + return serializeChronicleRangeCommand( + (ChronicleCommand.RangeState) command); + } + else if(command instanceof ChronicleCommand.TimestampState) { + return serializeChronicleTimestampCommand( + (ChronicleCommand.TimestampState) command); + } + else if(command instanceof ChronicleCommand.RecordState) { + return serializeChronicleRecordCommand( + (ChronicleCommand.RecordState) command); + } + else if(command instanceof DiffCommand.KeyRecordRangeState) { + return serializeDiffCommand( + (DiffCommand.KeyRecordRangeState) command); + } + else if(command instanceof DiffCommand.KeyRecordTimestampState) { + return serializeDiffCommand( + (DiffCommand.KeyRecordTimestampState) command); + } + else if(command instanceof DiffCommand.KeyRangeState) { + return serializeDiffCommand((DiffCommand.KeyRangeState) command); + } + else if(command instanceof DiffCommand.KeyTimestampState) { + return serializeDiffCommand( + (DiffCommand.KeyTimestampState) command); + } + else if(command instanceof DiffCommand.RecordRangeState) { + return serializeDiffCommand((DiffCommand.RecordRangeState) command); + } + else if(command instanceof DiffCommand.RecordTimestampState) { + return serializeDiffCommand( + (DiffCommand.RecordTimestampState) command); + } + else if(command instanceof AuditCommand.KeyRecordRangeState) { + return serializeAuditCommand( + (AuditCommand.KeyRecordRangeState) command); + } + else if(command instanceof AuditCommand.KeyRecordTimestampState) { + return serializeAuditCommand( + (AuditCommand.KeyRecordTimestampState) command); + } + else if(command instanceof AuditCommand.RecordRangeState) { + return serializeAuditCommand( + (AuditCommand.RecordRangeState) command); + } + else if(command instanceof AuditCommand.RecordTimestampState) { + return serializeAuditCommand( + (AuditCommand.RecordTimestampState) command); + } + else if(command instanceof AuditCommand.KeyRecordState) { + return serializeAuditCommand((AuditCommand.KeyRecordState) command); + } + else if(command instanceof AuditCommand.RecordState) { + return serializeAuditCommand((AuditCommand.RecordState) command); + } + else if(command instanceof RevertCommand.TimestampState) { + return serializeRevertCommand( + (RevertCommand.TimestampState) command); + } + else if(command instanceof ReconcileCommand.ValuesState) { + return serializeReconcileCommand( + (ReconcileCommand.ValuesState) command); + } + else if(command instanceof ConsolidateCommand.State) { + return serializeConsolidateCommand( + (ConsolidateCommand.State) command); + } + else if(command instanceof CalculateCommand.State) { + return serializeCalculateCommand((CalculateCommand.State) command); + } + else { + throw new UnsupportedOperationException( + "Cannot serialize Command of type " + + command.getClass().getName()); + } + } + + /** + * Reconstruct a {@link Command} from a {@link TCommand} received over the + * wire. + * + * @param tc the {@link TCommand} to deserialize + * @return the {@link Command} + * @throws UnsupportedOperationException if the verb is not recognized + */ + public static Command fromThrift(TCommand tc) { + switch (tc.getVerb()) { + case PING: + case STAGE: + case COMMIT: + case ABORT: + case INVENTORY: + return new BuiltCommand(tc.getVerb().name().toLowerCase()); + case FIND: + return deserializeFind(tc); + case SELECT: + return deserializeSelect(tc); + case GET: + return deserializeGet(tc); + case NAVIGATE: + return deserializeNavigate(tc); + case ADD: + return deserializeAdd(tc); + case SET: + return deserializeSet(tc); + case REMOVE: + return deserializeRemove(tc); + case CLEAR: + return deserializeClear(tc); + case INSERT: + return deserializeInsert(tc); + case LINK: + return deserializeLink(tc); + case UNLINK: + return deserializeUnlink(tc); + case VERIFY: + return deserializeVerify(tc); + case VERIFY_AND_SWAP: + return deserializeVerifyAndSwap(tc); + case VERIFY_OR_SET: + return deserializeVerifyOrSet(tc); + case FIND_OR_ADD: + return deserializeFindOrAdd(tc); + case FIND_OR_INSERT: + return deserializeFindOrInsert(tc); + case SEARCH: + return deserializeSearch(tc); + case BROWSE: + return deserializeBrowse(tc); + case DESCRIBE: + return deserializeDescribe(tc); + case TRACE: + return deserializeTrace(tc); + case HOLDS: + return deserializeHolds(tc); + case JSONIFY: + return deserializeJsonify(tc); + case CHRONICLE: + return deserializeChronicle(tc); + case DIFF: + return deserializeDiff(tc); + case AUDIT: + return deserializeAudit(tc); + case REVERT: + return deserializeRevert(tc); + case RECONCILE: + return deserializeReconcile(tc); + case CONSOLIDATE: + return deserializeConsolidate(tc); + case CALCULATE: + return deserializeCalculate(tc); + default: + throw new UnsupportedOperationException( + "Cannot deserialize TCommand with verb " + tc.getVerb()); + } + } + + /** + * Deserialize a {@code find} {@link TCommand} into a + * {@link FindCommand.ConditionState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeFind(TCommand tc) { + FindCommand.ConditionState state = new FindCommand.ConditionState( + getCriteria(tc), tc.getCondition()); + applyTimestamp(state, tc); + applyOrder(state, tc); + applyPage(state, tc); + return state; + } + + /** + * Deserialize a {@code select} {@link TCommand} into a + * {@link SelectCommand.SourceState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeSelect(TCommand tc) { + SelectCommand.SourceState state = new SelectCommand.SourceState( + getKeys(tc), getRecords(tc), getCriteria(tc), + tc.getCondition()); + applyTimestamp(state, tc); + applyOrder(state, tc); + applyPage(state, tc); + return state; + } + + /** + * Deserialize a {@code get} {@link TCommand} into a + * {@link GetCommand.SourceState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeGet(TCommand tc) { + GetCommand.SourceState state = new GetCommand.SourceState(getKeys(tc), + getRecords(tc), getCriteria(tc), tc.getCondition()); + applyTimestamp(state, tc); + applyOrder(state, tc); + applyPage(state, tc); + return state; + } + + /** + * Deserialize a {@code navigate} {@link TCommand} into a + * {@link NavigateCommand.SourceState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeNavigate(TCommand tc) { + NavigateCommand.SourceState state = new NavigateCommand.SourceState( + tc.getKeys(), getRecords(tc), getCriteria(tc), + tc.getCondition()); + applyTimestamp(state, tc); + return state; + } + + /** + * Deserialize an {@code add} {@link TCommand} into either an + * {@link AddCommand.RecordState} or {@link AddCommand.ValueState}, + * depending on whether records are specified. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeAdd(TCommand tc) { + String key = tc.getKeys().get(0); + Object value = Convert.thriftToJava(tc.getValue()); + if(tc.isSetRecords()) { + return new AddCommand.RecordState(key, value, tc.getRecords()); + } + else { + return new AddCommand.ValueState(key, value); + } + } + + /** + * Deserialize a {@code set} {@link TCommand} into a + * {@link SetCommand.RecordState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeSet(TCommand tc) { + return new SetCommand.RecordState(tc.getKeys().get(0), + Convert.thriftToJava(tc.getValue()), tc.getRecords()); + } + + /** + * Deserialize a {@code remove} {@link TCommand} into a + * {@link RemoveCommand.RecordState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeRemove(TCommand tc) { + Object value = tc.isSetValue() ? Convert.thriftToJava(tc.getValue()) + : null; + return new RemoveCommand.RecordState(tc.getKeys().get(0), value, + tc.getRecords()); + } + + /** + * Deserialize a {@code clear} {@link TCommand} into a + * {@link ClearCommand.RecordState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeClear(TCommand tc) { + List keys = tc.isSetKeys() ? tc.getKeys() : null; + List records = tc.getRecords(); + return new ClearCommand.RecordState(keys, records.get(0), + tail(records)); + } + + /** + * Deserialize an {@code insert} {@link TCommand} into either an + * {@link InsertCommand.RecordState} or {@link InsertCommand.JsonState}, + * depending on whether records are specified. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeInsert(TCommand tc) { + if(tc.isSetRecords()) { + return new InsertCommand.RecordState(tc.getJson(), tc.getRecords()); + } + else { + return new InsertCommand.JsonState(tc.getJson()); + } + } + + /** + * Deserialize a {@code link} {@link TCommand} into a + * {@link LinkCommand.DestinationState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeLink(TCommand tc) { + return new LinkCommand.DestinationState(tc.getKeys().get(0), + tc.getSourceRecord(), tc.getRecords()); + } + + /** + * Deserialize an {@code unlink} {@link TCommand} into an + * {@link UnlinkCommand.DestinationState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeUnlink(TCommand tc) { + return new UnlinkCommand.DestinationState(tc.getKeys().get(0), + tc.getSourceRecord(), tc.getRecords().get(0)); + } + + /** + * Deserialize a {@code verify} {@link TCommand} into either a + * {@link VerifyCommand.TimestampState} or + * {@link VerifyCommand.RecordState}, depending on whether a timestamp is + * specified. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeVerify(TCommand tc) { + String key = tc.getKeys().get(0); + Object value = Convert.thriftToJava(tc.getValue()); + long record = tc.getRecords().get(0); + if(tc.isSetTimestamp()) { + return new VerifyCommand.TimestampState(key, value, record, + Timestamp.fromMicros(tc.getTimestamp())); + } + else { + return new VerifyCommand.RecordState(key, value, record); + } + } + + /** + * Deserialize a {@code verifyAndSwap} {@link TCommand} into a + * {@link VerifyAndSwapCommand.SwapState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeVerifyAndSwap(TCommand tc) { + return new VerifyAndSwapCommand.SwapState(tc.getKeys().get(0), + Convert.thriftToJava(tc.getValue()), tc.getRecords().get(0), + Convert.thriftToJava(tc.getReplacement())); + } + + /** + * Deserialize a {@code verifyOrSet} {@link TCommand} into a + * {@link VerifyOrSetCommand.RecordState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeVerifyOrSet(TCommand tc) { + return new VerifyOrSetCommand.RecordState(tc.getKeys().get(0), + Convert.thriftToJava(tc.getValue()), tc.getRecords().get(0)); + } + + /** + * Deserialize a {@code findOrAdd} {@link TCommand} into a + * {@link FindOrAddCommand.ValueState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeFindOrAdd(TCommand tc) { + return new FindOrAddCommand.ValueState(tc.getKeys().get(0), + Convert.thriftToJava(tc.getValue())); + } + + /** + * Deserialize a {@code findOrInsert} {@link TCommand} into a + * {@link FindOrInsertCommand.JsonState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeFindOrInsert(TCommand tc) { + Timestamp ts = tc.isSetTimestamp() + ? Timestamp.fromMicros(tc.getTimestamp()) + : null; + return new FindOrInsertCommand.JsonState(getCriteria(tc), + tc.getCondition(), ts, tc.getJson()); + } + + /** + * Deserialize a {@code search} {@link TCommand} into a + * {@link SearchCommand.QueryState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeSearch(TCommand tc) { + return new SearchCommand.QueryState(tc.getKeys().get(0), tc.getQuery()); + } + + /** + * Deserialize a {@code browse} {@link TCommand} into a + * {@link BrowseCommand.State}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeBrowse(TCommand tc) { + List keys = tc.getKeys(); + BrowseCommand.State state = new BrowseCommand.State(keys.get(0), + keys.subList(1, keys.size()).toArray(new String[0])); + applyTimestamp(state, tc); + return state; + } + + /** + * Deserialize a {@code describe} {@link TCommand} into either a + * {@link DescribeCommand.State} or {@link DescribeCommand.AllState}, + * depending on whether records are specified. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeDescribe(TCommand tc) { + if(tc.isSetRecords()) { + List records = tc.getRecords(); + DescribeCommand.State state = new DescribeCommand.State( + records.get(0), tail(records)); + applyTimestamp(state, tc); + return state; + } + else { + DescribeCommand.AllState state = new DescribeCommand.AllState(); + applyTimestamp(state, tc); + return state; + } + } + + /** + * Deserialize a {@code trace} {@link TCommand} into a + * {@link TraceCommand.State}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeTrace(TCommand tc) { + List records = tc.getRecords(); + TraceCommand.State state = new TraceCommand.State(records.get(0), + tail(records)); + applyTimestamp(state, tc); + return state; + } + + /** + * Deserialize a {@code holds} {@link TCommand} into a + * {@link HoldsCommand.State}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeHolds(TCommand tc) { + List records = tc.getRecords(); + return new HoldsCommand.State(records.get(0), tail(records)); + } + + /** + * Deserialize a {@code jsonify} {@link TCommand} into a + * {@link JsonifyCommand.State}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeJsonify(TCommand tc) { + List records = tc.getRecords(); + JsonifyCommand.State state = new JsonifyCommand.State(records.get(0), + tail(records)); + applyTimestamp(state, tc); + return state; + } + + /** + * Deserialize a {@code chronicle} {@link TCommand} into the appropriate + * {@link ChronicleCommand} state, depending on which timestamp fields are + * set. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeChronicle(TCommand tc) { + String key = tc.getKeys().get(0); + long record = tc.getRecords().get(0); + if(tc.isSetEndTimestamp()) { + return new ChronicleCommand.RangeState(key, record, + Timestamp.fromMicros(tc.getTimestamp()), + Timestamp.fromMicros(tc.getEndTimestamp())); + } + else if(tc.isSetTimestamp()) { + return new ChronicleCommand.TimestampState(key, record, + Timestamp.fromMicros(tc.getTimestamp())); + } + else { + return new ChronicleCommand.RecordState(key, record); + } + } + + /** + * Deserialize a {@code diff} {@link TCommand} into the appropriate + * {@link DiffCommand} state, depending on which fields are set. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeDiff(TCommand tc) { + boolean hasKey = tc.isSetKeys(); + boolean hasRecord = tc.isSetRecords(); + boolean hasEnd = tc.isSetEndTimestamp(); + Timestamp start = Timestamp.fromMicros(tc.getTimestamp()); + if(hasKey && hasRecord && hasEnd) { + return new DiffCommand.KeyRecordRangeState(tc.getKeys().get(0), + tc.getRecords().get(0), start, + Timestamp.fromMicros(tc.getEndTimestamp())); + } + else if(hasKey && hasRecord) { + return new DiffCommand.KeyRecordTimestampState(tc.getKeys().get(0), + tc.getRecords().get(0), start); + } + else if(hasKey && hasEnd) { + return new DiffCommand.KeyRangeState(tc.getKeys().get(0), start, + Timestamp.fromMicros(tc.getEndTimestamp())); + } + else if(hasKey) { + return new DiffCommand.KeyTimestampState(tc.getKeys().get(0), + start); + } + else if(hasEnd) { + return new DiffCommand.RecordRangeState(tc.getRecords().get(0), + start, Timestamp.fromMicros(tc.getEndTimestamp())); + } + else { + return new DiffCommand.RecordTimestampState(tc.getRecords().get(0), + start); + } + } + + /** + * Deserialize an {@code audit} {@link TCommand} into the appropriate + * {@link AuditCommand} state, depending on which fields are set. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeAudit(TCommand tc) { + boolean hasKey = tc.isSetKeys(); + boolean hasTimestamp = tc.isSetTimestamp(); + boolean hasEnd = tc.isSetEndTimestamp(); + if(hasKey && hasTimestamp && hasEnd) { + return new AuditCommand.KeyRecordRangeState(tc.getKeys().get(0), + tc.getRecords().get(0), + Timestamp.fromMicros(tc.getTimestamp()), + Timestamp.fromMicros(tc.getEndTimestamp())); + } + else if(hasKey && hasTimestamp) { + return new AuditCommand.KeyRecordTimestampState(tc.getKeys().get(0), + tc.getRecords().get(0), + Timestamp.fromMicros(tc.getTimestamp())); + } + else if(hasKey) { + return new AuditCommand.KeyRecordState(tc.getKeys().get(0), + tc.getRecords().get(0)); + } + else if(hasTimestamp && hasEnd) { + return new AuditCommand.RecordRangeState(tc.getRecords().get(0), + Timestamp.fromMicros(tc.getTimestamp()), + Timestamp.fromMicros(tc.getEndTimestamp())); + } + else if(hasTimestamp) { + return new AuditCommand.RecordTimestampState(tc.getRecords().get(0), + Timestamp.fromMicros(tc.getTimestamp())); + } + else { + return new AuditCommand.RecordState(tc.getRecords().get(0)); + } + } + + /** + * Deserialize a {@code revert} {@link TCommand} into a + * {@link RevertCommand.TimestampState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeRevert(TCommand tc) { + return new RevertCommand.TimestampState(tc.getKeys(), tc.getRecords(), + Timestamp.fromMicros(tc.getTimestamp())); + } + + /** + * Deserialize a {@code reconcile} {@link TCommand} into a + * {@link ReconcileCommand.ValuesState}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeReconcile(TCommand tc) { + List values = tc.getValues().stream().map(Convert::thriftToJava) + .collect(Collectors.toList()); + return new ReconcileCommand.ValuesState(tc.getKeys().get(0), + tc.getRecords().get(0), values); + } + + /** + * Deserialize a {@code consolidate} {@link TCommand} into a + * {@link ConsolidateCommand.State}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeConsolidate(TCommand tc) { + List records = tc.getRecords(); + return new ConsolidateCommand.State(records.get(0), records.get(1), + tail(records, 2)); + } + + /** + * Deserialize a {@code calculate} {@link TCommand} into a + * {@link CalculateCommand.State}. + * + * @param tc the {@link TCommand} to deserialize + * @return the deserialized {@link Command} + */ + private static Command deserializeCalculate(TCommand tc) { + CalculateCommand.State state = new CalculateCommand.State( + tc.getFunction(), tc.getKeys().get(0)); + if(tc.isSetRecords()) { + List records = tc.getRecords(); + state.in(records.get(0), tail(records)); + } + Criteria criteria = getCriteria(tc); + if(criteria != null) { + state.where(criteria); + } + else if(tc.isSetCondition()) { + state.where(tc.getCondition()); + } + applyTimestamp(state, tc); + return state; + } + + /** + * Return the {@link Criteria} from a {@link TCommand}, or {@code null} if + * not set. + * + * @param tc the {@link TCommand} to extract from + * @return the {@link Criteria}, or {@code null} + */ + @Nullable + private static Criteria getCriteria(TCommand tc) { + return tc.isSetCriteria() + ? Language.translateFromThriftCriteria(tc.getCriteria()) + : null; + } + + /** + * Return the keys list from a {@link TCommand}, or {@code null} if not set. + * + * @param tc the {@link TCommand} to extract from + * @return the keys {@link List}, or {@code null} + */ + @Nullable + private static List getKeys(TCommand tc) { + return tc.isSetKeys() ? tc.getKeys() : null; + } + + /** + * Return the records list from a {@link TCommand}, or {@code null} if not + * set. + * + * @param tc the {@link TCommand} to extract from + * @return the records {@link List}, or {@code null} + */ + @Nullable + private static List getRecords(TCommand tc) { + return tc.isSetRecords() ? tc.getRecords() : null; + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link FindCommand.ConditionState}. + * + * @param state the {@link FindCommand.ConditionState} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(FindCommand.ConditionState state, + TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional order from a {@link TCommand} to a + * {@link FindCommand.ConditionState}. + * + * @param state the {@link FindCommand.ConditionState} to modify + * @param tc the {@link TCommand} containing the order + */ + private static void applyOrder(FindCommand.ConditionState state, + TCommand tc) { + if(tc.isSetOrder()) { + state.order(JavaThriftBridge.convert(tc.getOrder())); + } + } + + /** + * Apply the optional page from a {@link TCommand} to a + * {@link FindCommand.ConditionState}. + * + * @param state the {@link FindCommand.ConditionState} to modify + * @param tc the {@link TCommand} containing the page + */ + private static void applyPage(FindCommand.ConditionState state, + TCommand tc) { + if(tc.isSetPage()) { + state.page(JavaThriftBridge.convert(tc.getPage())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link SelectCommand.SourceState}. + * + * @param state the {@link SelectCommand.SourceState} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(SelectCommand.SourceState state, + TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional order from a {@link TCommand} to a + * {@link SelectCommand.SourceState}. + * + * @param state the {@link SelectCommand.SourceState} to modify + * @param tc the {@link TCommand} containing the order + */ + private static void applyOrder(SelectCommand.SourceState state, + TCommand tc) { + if(tc.isSetOrder()) { + state.order(JavaThriftBridge.convert(tc.getOrder())); + } + } + + /** + * Apply the optional page from a {@link TCommand} to a + * {@link SelectCommand.SourceState}. + * + * @param state the {@link SelectCommand.SourceState} to modify + * @param tc the {@link TCommand} containing the page + */ + private static void applyPage(SelectCommand.SourceState state, + TCommand tc) { + if(tc.isSetPage()) { + state.page(JavaThriftBridge.convert(tc.getPage())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link GetCommand.SourceState}. + * + * @param state the {@link GetCommand.SourceState} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(GetCommand.SourceState state, + TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional order from a {@link TCommand} to a + * {@link GetCommand.SourceState}. + * + * @param state the {@link GetCommand.SourceState} to modify + * @param tc the {@link TCommand} containing the order + */ + private static void applyOrder(GetCommand.SourceState state, TCommand tc) { + if(tc.isSetOrder()) { + state.order(JavaThriftBridge.convert(tc.getOrder())); + } + } + + /** + * Apply the optional page from a {@link TCommand} to a + * {@link GetCommand.SourceState}. + * + * @param state the {@link GetCommand.SourceState} to modify + * @param tc the {@link TCommand} containing the page + */ + private static void applyPage(GetCommand.SourceState state, TCommand tc) { + if(tc.isSetPage()) { + state.page(JavaThriftBridge.convert(tc.getPage())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link NavigateCommand.SourceState}. + * + * @param state the {@link NavigateCommand.SourceState} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(NavigateCommand.SourceState state, + TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link BrowseCommand.State}. + * + * @param state the {@link BrowseCommand.State} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(BrowseCommand.State state, TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link DescribeCommand.State}. + * + * @param state the {@link DescribeCommand.State} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(DescribeCommand.State state, + TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link DescribeCommand.AllState}. + * + * @param state the {@link DescribeCommand.AllState} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(DescribeCommand.AllState state, + TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link TraceCommand.State}. + * + * @param state the {@link TraceCommand.State} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(TraceCommand.State state, TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link JsonifyCommand.State}. + * + * @param state the {@link JsonifyCommand.State} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(JsonifyCommand.State state, + TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Apply the optional timestamp from a {@link TCommand} to a + * {@link CalculateCommand.State}. + * + * @param state the {@link CalculateCommand.State} to modify + * @param tc the {@link TCommand} containing the timestamp + */ + private static void applyTimestamp(CalculateCommand.State state, + TCommand tc) { + if(tc.isSetTimestamp()) { + state.at(Timestamp.fromMicros(tc.getTimestamp())); + } + } + + /** + * Extract all elements after the first from a {@link List} of {@link Long + * Longs} as a {@code long} array. + * + * @param list the {@link List} to extract from + * @return the tail as a {@code long} array + */ + private static long[] tail(List list) { + return tail(list, 1); + } + + /** + * Extract all elements starting at {@code offset} from a {@link List} of + * {@link Long Longs} as a {@code long} array. + * + * @param list the {@link List} to extract from + * @param offset the starting index + * @return the sub-list as a {@code long} array + */ + private static long[] tail(List list, int offset) { + long[] arr = new long[list.size() - offset]; + for (int i = offset; i < list.size(); i++) { + arr[i - offset] = list.get(i); + } + return arr; + } + + /** + * Serialize a nullary {@link BuiltCommand} into a {@link TCommand}. + * + * @param command the {@link BuiltCommand} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeBuiltCommand(BuiltCommand command) { + String verb = command.ccl().toUpperCase(); + return new TCommand(TCommandVerb.valueOf(verb)); + } + + /** + * Serialize a {@code find} {@link FindCommand.ConditionState} into a + * {@link TCommand}. + * + * @param state the {@link FindCommand.ConditionState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeFindCommand( + FindCommand.ConditionState state) { + TCommand tc = new TCommand(TCommandVerb.FIND); + setCondition(tc, state.criteria(), state.condition()); + setTimestamp(tc, state.timestamp()); + setOrder(tc, state.order()); + setPage(tc, state.page()); + return tc; + } + + /** + * Serialize a {@code select} {@link SelectCommand.SourceState} into a + * {@link TCommand}. + * + * @param state the {@link SelectCommand.SourceState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeSelectCommand( + SelectCommand.SourceState state) { + TCommand tc = new TCommand(TCommandVerb.SELECT); + setKeys(tc, state.keys()); + setRecords(tc, state.records()); + setCondition(tc, state.criteria(), state.condition()); + setTimestamp(tc, state.timestamp()); + setOrder(tc, state.order()); + setPage(tc, state.page()); + return tc; + } + + /** + * Serialize a {@code get} {@link GetCommand.SourceState} into a + * {@link TCommand}. + * + * @param state the {@link GetCommand.SourceState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeGetCommand(GetCommand.SourceState state) { + TCommand tc = new TCommand(TCommandVerb.GET); + setKeys(tc, state.keys()); + setRecords(tc, state.records()); + setCondition(tc, state.criteria(), state.condition()); + setTimestamp(tc, state.timestamp()); + setOrder(tc, state.order()); + setPage(tc, state.page()); + return tc; + } + + /** + * Serialize a {@code navigate} {@link NavigateCommand.SourceState} into a + * {@link TCommand}. + * + * @param state the {@link NavigateCommand.SourceState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeNavigateCommand( + NavigateCommand.SourceState state) { + TCommand tc = new TCommand(TCommandVerb.NAVIGATE); + setKeys(tc, state.keys()); + setRecords(tc, state.records()); + setCondition(tc, state.criteria(), state.condition()); + setTimestamp(tc, state.timestamp()); + return tc; + } + + /** + * Serialize an {@code add} {@link AddCommand.RecordState} into a + * {@link TCommand} with record targets. + * + * @param state the {@link AddCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeAddRecordCommand( + AddCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.ADD); + tc.setKeys(Collections.singletonList(state.key())); + tc.setValue(Convert.javaToThrift(state.value())); + tc.setRecords(state.records()); + return tc; + } + + /** + * Serialize an {@code add} {@link AddCommand.ValueState} into a + * {@link TCommand} without record targets. + * + * @param state the {@link AddCommand.ValueState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeAddValueCommand( + AddCommand.ValueState state) { + TCommand tc = new TCommand(TCommandVerb.ADD); + tc.setKeys(Collections.singletonList(state.key())); + tc.setValue(Convert.javaToThrift(state.value())); + return tc; + } + + /** + * Serialize a {@code set} {@link SetCommand.RecordState} into a + * {@link TCommand}. + * + * @param state the {@link SetCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeSetCommand(SetCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.SET); + tc.setKeys(Collections.singletonList(state.key())); + tc.setValue(Convert.javaToThrift(state.value())); + tc.setRecords(state.records()); + return tc; + } + + /** + * Serialize a {@code remove} {@link RemoveCommand.RecordState} into a + * {@link TCommand}. + * + * @param state the {@link RemoveCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeRemoveCommand( + RemoveCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.REMOVE); + tc.setKeys(Collections.singletonList(state.key())); + if(state.value() != null) { + tc.setValue(Convert.javaToThrift(state.value())); + } + tc.setRecords(state.records()); + return tc; + } + + /** + * Serialize a {@code clear} {@link ClearCommand.RecordState} into a + * {@link TCommand}. + * + * @param state the {@link ClearCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeClearCommand( + ClearCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.CLEAR); + if(state.keys() != null) { + tc.setKeys(state.keys()); + } + tc.setRecords(state.records()); + return tc; + } + + /** + * Serialize an {@code insert} {@link InsertCommand.RecordState} into a + * {@link TCommand} with record targets. + * + * @param state the {@link InsertCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeInsertRecordCommand( + InsertCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.INSERT); + tc.setJson(state.json()); + tc.setRecords(state.records()); + return tc; + } + + /** + * Serialize an {@code insert} {@link InsertCommand.JsonState} into a + * {@link TCommand} without record targets. + * + * @param state the {@link InsertCommand.JsonState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeInsertJsonCommand( + InsertCommand.JsonState state) { + TCommand tc = new TCommand(TCommandVerb.INSERT); + tc.setJson(state.json()); + return tc; + } + + /** + * Serialize a {@code link} {@link LinkCommand.DestinationState} into a + * {@link TCommand}. + * + * @param state the {@link LinkCommand.DestinationState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeLinkCommand( + LinkCommand.DestinationState state) { + TCommand tc = new TCommand(TCommandVerb.LINK); + tc.setKeys(Collections.singletonList(state.key())); + tc.setSourceRecord(state.source()); + tc.setRecords(state.destinations()); + return tc; + } + + /** + * Serialize an {@code unlink} {@link UnlinkCommand.DestinationState} into a + * {@link TCommand}. + * + * @param state the {@link UnlinkCommand.DestinationState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeUnlinkCommand( + UnlinkCommand.DestinationState state) { + TCommand tc = new TCommand(TCommandVerb.UNLINK); + tc.setKeys(Collections.singletonList(state.key())); + tc.setSourceRecord(state.source()); + tc.setRecords(Collections.singletonList(state.destination())); + return tc; + } + + /** + * Serialize a {@code verify} {@link VerifyCommand.RecordState} into a + * {@link TCommand} without a timestamp. + * + * @param state the {@link VerifyCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeVerifyCommand( + VerifyCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.VERIFY); + tc.setKeys(Collections.singletonList(state.key())); + tc.setValue(Convert.javaToThrift(state.value())); + tc.setRecords(Collections.singletonList(state.record())); + return tc; + } + + /** + * Serialize a {@code verify} {@link VerifyCommand.TimestampState} into a + * {@link TCommand} with a timestamp. + * + * @param state the {@link VerifyCommand.TimestampState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeVerifyTimestampCommand( + VerifyCommand.TimestampState state) { + TCommand tc = new TCommand(TCommandVerb.VERIFY); + tc.setKeys(Collections.singletonList(state.key())); + tc.setValue(Convert.javaToThrift(state.value())); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.timestamp().getMicros()); + return tc; + } + + /** + * Serialize a {@code verifyAndSwap} {@link VerifyAndSwapCommand.SwapState} + * into a {@link TCommand}. + * + * @param state the {@link VerifyAndSwapCommand.SwapState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeVerifyAndSwapCommand( + VerifyAndSwapCommand.SwapState state) { + TCommand tc = new TCommand(TCommandVerb.VERIFY_AND_SWAP); + tc.setKeys(Collections.singletonList(state.key())); + tc.setValue(Convert.javaToThrift(state.expected())); + tc.setReplacement(Convert.javaToThrift(state.replacement())); + tc.setRecords(Collections.singletonList(state.record())); + return tc; + } + + /** + * Serialize a {@code verifyOrSet} {@link VerifyOrSetCommand.RecordState} + * into a {@link TCommand}. + * + * @param state the {@link VerifyOrSetCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeVerifyOrSetCommand( + VerifyOrSetCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.VERIFY_OR_SET); + tc.setKeys(Collections.singletonList(state.key())); + tc.setValue(Convert.javaToThrift(state.value())); + tc.setRecords(Collections.singletonList(state.record())); + return tc; + } + + /** + * Serialize a {@code findOrAdd} {@link FindOrAddCommand.ValueState} into a + * {@link TCommand}. + * + * @param state the {@link FindOrAddCommand.ValueState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeFindOrAddCommand( + FindOrAddCommand.ValueState state) { + TCommand tc = new TCommand(TCommandVerb.FIND_OR_ADD); + tc.setKeys(Collections.singletonList(state.key())); + tc.setValue(Convert.javaToThrift(state.value())); + return tc; + } + + /** + * Serialize a {@code findOrInsert} {@link FindOrInsertCommand.JsonState} + * into a {@link TCommand}. + * + * @param state the {@link FindOrInsertCommand.JsonState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeFindOrInsertCommand( + FindOrInsertCommand.JsonState state) { + TCommand tc = new TCommand(TCommandVerb.FIND_OR_INSERT); + setCondition(tc, state.criteria(), state.condition()); + setTimestamp(tc, state.timestamp()); + tc.setJson(state.json()); + return tc; + } + + /** + * Serialize a {@code search} {@link SearchCommand.QueryState} into a + * {@link TCommand}. + * + * @param state the {@link SearchCommand.QueryState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeSearchCommand( + SearchCommand.QueryState state) { + TCommand tc = new TCommand(TCommandVerb.SEARCH); + tc.setKeys(Collections.singletonList(state.key())); + tc.setQuery(state.query()); + return tc; + } + + /** + * Serialize a {@code browse} {@link BrowseCommand.State} into a + * {@link TCommand}. + * + * @param state the {@link BrowseCommand.State} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeBrowseCommand(BrowseCommand.State state) { + TCommand tc = new TCommand(TCommandVerb.BROWSE); + tc.setKeys(state.keys()); + setTimestamp(tc, state.timestamp()); + return tc; + } + + /** + * Serialize a {@code describe} {@link DescribeCommand.AllState} into a + * {@link TCommand} without records. + * + * @param state the {@link DescribeCommand.AllState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeDescribeAllCommand( + DescribeCommand.AllState state) { + TCommand tc = new TCommand(TCommandVerb.DESCRIBE); + setTimestamp(tc, state.timestamp()); + return tc; + } + + /** + * Serialize a {@code describe} {@link DescribeCommand.State} into a + * {@link TCommand} with records. + * + * @param state the {@link DescribeCommand.State} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeDescribeCommand( + DescribeCommand.State state) { + TCommand tc = new TCommand(TCommandVerb.DESCRIBE); + tc.setRecords(state.records()); + setTimestamp(tc, state.timestamp()); + return tc; + } + + /** + * Serialize a {@code trace} {@link TraceCommand.State} into a + * {@link TCommand}. + * + * @param state the {@link TraceCommand.State} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeTraceCommand(TraceCommand.State state) { + TCommand tc = new TCommand(TCommandVerb.TRACE); + tc.setRecords(state.records()); + setTimestamp(tc, state.timestamp()); + return tc; + } + + /** + * Serialize a {@code holds} {@link HoldsCommand.State} into a + * {@link TCommand}. + * + * @param state the {@link HoldsCommand.State} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeHoldsCommand(HoldsCommand.State state) { + TCommand tc = new TCommand(TCommandVerb.HOLDS); + tc.setRecords(state.records()); + return tc; + } + + /** + * Serialize a {@code jsonify} {@link JsonifyCommand.State} into a + * {@link TCommand}. + * + * @param state the {@link JsonifyCommand.State} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeJsonifyCommand( + JsonifyCommand.State state) { + TCommand tc = new TCommand(TCommandVerb.JSONIFY); + tc.setRecords(state.records()); + setTimestamp(tc, state.timestamp()); + return tc; + } + + /** + * Serialize a {@code chronicle} {@link ChronicleCommand.RangeState} into a + * {@link TCommand} with a time range. + * + * @param state the {@link ChronicleCommand.RangeState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeChronicleRangeCommand( + ChronicleCommand.RangeState state) { + TCommand tc = new TCommand(TCommandVerb.CHRONICLE); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + tc.setEndTimestamp(state.end().getMicros()); + return tc; + } + + /** + * Serialize a {@code chronicle} {@link ChronicleCommand.TimestampState} + * into a {@link TCommand} with a start timestamp. + * + * @param state the {@link ChronicleCommand.TimestampState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeChronicleTimestampCommand( + ChronicleCommand.TimestampState state) { + TCommand tc = new TCommand(TCommandVerb.CHRONICLE); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + return tc; + } + + /** + * Serialize a {@code chronicle} {@link ChronicleCommand.RecordState} into a + * {@link TCommand} without timestamps. + * + * @param state the {@link ChronicleCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeChronicleRecordCommand( + ChronicleCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.CHRONICLE); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + return tc; + } + + /** + * Serialize a {@code diff} {@link DiffCommand.KeyRecordRangeState} into a + * {@link TCommand}. + * + * @param state the {@link DiffCommand.KeyRecordRangeState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeDiffCommand( + DiffCommand.KeyRecordRangeState state) { + TCommand tc = new TCommand(TCommandVerb.DIFF); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + tc.setEndTimestamp(state.end().getMicros()); + return tc; + } + + /** + * Serialize a {@code diff} {@link DiffCommand.KeyRecordTimestampState} into + * a {@link TCommand}. + * + * @param state the {@link DiffCommand.KeyRecordTimestampState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeDiffCommand( + DiffCommand.KeyRecordTimestampState state) { + TCommand tc = new TCommand(TCommandVerb.DIFF); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + return tc; + } + + /** + * Serialize a {@code diff} {@link DiffCommand.KeyRangeState} into a + * {@link TCommand}. + * + * @param state the {@link DiffCommand.KeyRangeState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeDiffCommand( + DiffCommand.KeyRangeState state) { + TCommand tc = new TCommand(TCommandVerb.DIFF); + tc.setKeys(Collections.singletonList(state.key())); + tc.setTimestamp(state.start().getMicros()); + tc.setEndTimestamp(state.end().getMicros()); + return tc; + } + + /** + * Serialize a {@code diff} {@link DiffCommand.KeyTimestampState} into a + * {@link TCommand}. + * + * @param state the {@link DiffCommand.KeyTimestampState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeDiffCommand( + DiffCommand.KeyTimestampState state) { + TCommand tc = new TCommand(TCommandVerb.DIFF); + tc.setKeys(Collections.singletonList(state.key())); + tc.setTimestamp(state.start().getMicros()); + return tc; + } + + /** + * Serialize a {@code diff} {@link DiffCommand.RecordRangeState} into a + * {@link TCommand}. + * + * @param state the {@link DiffCommand.RecordRangeState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeDiffCommand( + DiffCommand.RecordRangeState state) { + TCommand tc = new TCommand(TCommandVerb.DIFF); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + tc.setEndTimestamp(state.end().getMicros()); + return tc; + } + + /** + * Serialize a {@code diff} {@link DiffCommand.RecordTimestampState} into a + * {@link TCommand}. + * + * @param state the {@link DiffCommand.RecordTimestampState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeDiffCommand( + DiffCommand.RecordTimestampState state) { + TCommand tc = new TCommand(TCommandVerb.DIFF); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + return tc; + } + + /** + * Serialize an {@code audit} {@link AuditCommand.KeyRecordRangeState} into + * a {@link TCommand}. + * + * @param state the {@link AuditCommand.KeyRecordRangeState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeAuditCommand( + AuditCommand.KeyRecordRangeState state) { + TCommand tc = new TCommand(TCommandVerb.AUDIT); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + tc.setEndTimestamp(state.end().getMicros()); + return tc; + } + + /** + * Serialize an {@code audit} {@link AuditCommand.KeyRecordTimestampState} + * into a {@link TCommand}. + * + * @param state the {@link AuditCommand.KeyRecordTimestampState} to + * serialize + * @return the {@link TCommand} + */ + private static TCommand serializeAuditCommand( + AuditCommand.KeyRecordTimestampState state) { + TCommand tc = new TCommand(TCommandVerb.AUDIT); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + return tc; + } + + /** + * Serialize an {@code audit} {@link AuditCommand.RecordRangeState} into a + * {@link TCommand}. + * + * @param state the {@link AuditCommand.RecordRangeState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeAuditCommand( + AuditCommand.RecordRangeState state) { + TCommand tc = new TCommand(TCommandVerb.AUDIT); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + tc.setEndTimestamp(state.end().getMicros()); + return tc; + } + + /** + * Serialize an {@code audit} {@link AuditCommand.RecordTimestampState} into + * a {@link TCommand}. + * + * @param state the {@link AuditCommand.RecordTimestampState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeAuditCommand( + AuditCommand.RecordTimestampState state) { + TCommand tc = new TCommand(TCommandVerb.AUDIT); + tc.setRecords(Collections.singletonList(state.record())); + tc.setTimestamp(state.start().getMicros()); + return tc; + } + + /** + * Serialize an {@code audit} {@link AuditCommand.KeyRecordState} into a + * {@link TCommand}. + * + * @param state the {@link AuditCommand.KeyRecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeAuditCommand( + AuditCommand.KeyRecordState state) { + TCommand tc = new TCommand(TCommandVerb.AUDIT); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + return tc; + } + + /** + * Serialize an {@code audit} {@link AuditCommand.RecordState} into a + * {@link TCommand}. + * + * @param state the {@link AuditCommand.RecordState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeAuditCommand( + AuditCommand.RecordState state) { + TCommand tc = new TCommand(TCommandVerb.AUDIT); + tc.setRecords(Collections.singletonList(state.record())); + return tc; + } + + /** + * Serialize a {@code revert} {@link RevertCommand.TimestampState} into a + * {@link TCommand}. + * + * @param state the {@link RevertCommand.TimestampState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeRevertCommand( + RevertCommand.TimestampState state) { + TCommand tc = new TCommand(TCommandVerb.REVERT); + tc.setKeys(state.keys()); + tc.setRecords(state.records()); + tc.setTimestamp(state.timestamp().getMicros()); + return tc; + } + + /** + * Serialize a {@code reconcile} {@link ReconcileCommand.ValuesState} into a + * {@link TCommand}. + * + * @param state the {@link ReconcileCommand.ValuesState} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeReconcileCommand( + ReconcileCommand.ValuesState state) { + TCommand tc = new TCommand(TCommandVerb.RECONCILE); + tc.setKeys(Collections.singletonList(state.key())); + tc.setRecords(Collections.singletonList(state.record())); + List tvalues = state.values().stream() + .map(Convert::javaToThrift).collect(Collectors.toList()); + tc.setValues(tvalues); + return tc; + } + + /** + * Serialize a {@code consolidate} {@link ConsolidateCommand.State} into a + * {@link TCommand}. + * + * @param state the {@link ConsolidateCommand.State} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeConsolidateCommand( + ConsolidateCommand.State state) { + TCommand tc = new TCommand(TCommandVerb.CONSOLIDATE); + tc.setRecords(state.records()); + return tc; + } + + /** + * Serialize a {@code calculate} {@link CalculateCommand.State} into a + * {@link TCommand}. + * + * @param state the {@link CalculateCommand.State} to serialize + * @return the {@link TCommand} + */ + private static TCommand serializeCalculateCommand( + CalculateCommand.State state) { + TCommand tc = new TCommand(TCommandVerb.CALCULATE); + tc.setFunction(state.function()); + tc.setKeys(Collections.singletonList(state.key())); + if(state.records() != null) { + tc.setRecords(state.records()); + } + setCondition(tc, state.criteria(), state.condition()); + setTimestamp(tc, state.timestamp()); + return tc; + } + + /** + * Set the condition fields on a {@link TCommand} from the given + * {@link Criteria} or CCL condition string. + * + * @param tc the {@link TCommand} to modify + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the CCL condition string, or {@code null} + */ + private static void setCondition(TCommand tc, @Nullable Criteria criteria, + @Nullable String condition) { + if(criteria != null) { + tc.setCriteria(Language.translateToThriftCriteria(criteria)); + } + else if(condition != null) { + tc.setCondition(condition); + } + } + + /** + * Set the timestamp field on a {@link TCommand} if the given + * {@link Timestamp} is not {@code null}. + * + * @param tc the {@link TCommand} to modify + * @param timestamp the {@link Timestamp}, or {@code null} + */ + private static void setTimestamp(TCommand tc, + @Nullable Timestamp timestamp) { + if(timestamp != null) { + tc.setTimestamp(timestamp.getMicros()); + } + } + + /** + * Set the order field on a {@link TCommand} if the given {@link Order} is + * not {@code null}. + * + * @param tc the {@link TCommand} to modify + * @param order the {@link Order}, or {@code null} + */ + private static void setOrder(TCommand tc, @Nullable Order order) { + if(order != null) { + tc.setOrder(JavaThriftBridge.convert(order)); + } + } + + /** + * Set the page field on a {@link TCommand} if the given {@link Page} is not + * {@code null}. + * + * @param tc the {@link TCommand} to modify + * @param page the {@link Page}, or {@code null} + */ + private static void setPage(TCommand tc, @Nullable Page page) { + if(page != null) { + tc.setPage(JavaThriftBridge.convert(page)); + } + } + + /** + * Set the keys field on a {@link TCommand} from a list that may be + * {@code null} or empty (indicating all keys). + * + * @param tc the {@link TCommand} to modify + * @param keys the keys {@link List}, or {@code null} + */ + private static void setKeys(TCommand tc, @Nullable List keys) { + if(keys != null && !keys.isEmpty()) { + tc.setKeys(keys); + } + } + + /** + * Set the records field on a {@link TCommand} if the given list is not + * {@code null}. + * + * @param tc the {@link TCommand} to modify + * @param records the records {@link List}, or {@code null} + */ + private static void setRecords(TCommand tc, @Nullable List records) { + if(records != null) { + tc.setRecords(records); + } + } + + /** + * Construct a new {@link CommandSerializer}. + */ + private CommandSerializer() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ConsolidateCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ConsolidateCommand.java new file mode 100644 index 000000000..115b59e08 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ConsolidateCommand.java @@ -0,0 +1,102 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import com.google.common.collect.Lists; + +/** + * A {@link Command} builder for {@code consolidate} commands. + *

+ * {@code consolidate} merges the data from multiple records into a single + * target record. The first record in the list is the target; all remaining + * records are merged into it. + *

+ * + *
+ * consolidate <first> <second>
+ * consolidate <first> [<remaining>]
+ * 
+ * + * @author Jeff Nelson + */ +public final class ConsolidateCommand { + + /** + * The terminal state for a {@code consolidate} command. + */ + public static final class State implements Command { + + /** + * The records to consolidate, where the first record is the target. + */ + private final List records; + + /** + * Construct a new instance. + * + * @param first the target record + * @param second the first record to merge + * @param remaining additional records to merge + */ + State(long first, long second, long... remaining) { + List all = Lists + .newArrayListWithCapacity(2 + remaining.length); + all.add(first); + all.add(second); + for (long r : remaining) { + all.add(r); + } + this.records = all; + } + + /** + * Return the records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("consolidate "); + sb.append(records.get(0)); + if(records.size() == 2) { + sb.append(" "); + sb.append(records.get(1)); + } + else { + sb.append(" "); + sb.append(CclRenderer + .records(records.subList(1, records.size()))); + } + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private ConsolidateCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/DescribeCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/DescribeCommand.java new file mode 100644 index 000000000..6ab56d893 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/DescribeCommand.java @@ -0,0 +1,169 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code describe} commands. + *

+ * {@code describe} returns the keys that have at least one value in one or more + * records, optionally at a historical timestamp. + *

+ * + *
+ * describe [at timestamp]
+ * describe <records> [at timestamp]
+ * 
+ * + * @author Jeff Nelson + */ +public final class DescribeCommand { + + /** + * The terminal state for a {@code describe} command that targets all + * records, supporting an optional {@code at} clause for historical + * inspection. + */ + public static final class AllState implements Command { + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * Construct a new instance. + */ + AllState() {} + + /** + * Pin this command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public AllState at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("describe"); + CclRenderer.appendTimestamp(sb, timestamp); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a {@code describe} command. This state is reached + * after specifying the records to describe and supports an optional + * {@code at} clause for historical inspection. + */ + public static final class State implements Command { + + /** + * The target records. + */ + private final List records; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * Construct a new instance. + * + * @param record the first record to describe + * @param moreRecords additional records + */ + State(long record, long... moreRecords) { + this.records = CclRenderer.collectRecords(record, moreRecords); + } + + /** + * Pin this command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public State at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("describe "); + sb.append(CclRenderer.records(records)); + CclRenderer.appendTimestamp(sb, timestamp); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private DescribeCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/DiffCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/DiffCommand.java new file mode 100644 index 000000000..887d8cc4e --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/DiffCommand.java @@ -0,0 +1,645 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code diff} commands. + *

+ * {@code diff} computes the changes to a record or a key within a record + * between one or two timestamps. + *

+ * + *
+ * diff <record> at <start>
+ * diff <record> at <start> at <end>
+ * diff <key> at <start>
+ * diff <key> at <start> at <end>
+ * diff <key> in <record> at <start>
+ * diff <key> in <record> at <start> at <end>
+ * 
+ * + * @author Jeff Nelson + */ +public final class DiffCommand { + + /** + * The state after specifying the record for the {@code diff} command. + */ + public static final class RecordState { + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param record the target record + */ + RecordState(long record) { + this.record = record; + } + + /** + * Specify the start {@link Timestamp} for the diff. + * + * @param start the start {@link Timestamp} + * @return the next builder state + */ + public RecordTimestampState at(Timestamp start) { + return new RecordTimestampState(record, start); + } + + } + + /** + * The state after specifying the key for the {@code diff} command. + */ + public static final class KeyState { + + /** + * The key to diff. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to diff + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the start {@link Timestamp} for a key-only diff (without a + * record). + * + * @param start the start {@link Timestamp} + * @return the next builder state + */ + public KeyTimestampState at(Timestamp start) { + return new KeyTimestampState(key, start); + } + + /** + * Specify the record in which to diff the key. + * + * @param record the target record + * @return the next builder state + */ + public KeyRecordState in(long record) { + return new KeyRecordState(key, record); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public KeyRecordState within(long record) { + return in(record); + } + + } + + /** + * The state after specifying the key and record for a key-scoped + * {@code diff} command. + */ + public static final class KeyRecordState { + + /** + * The key to diff. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + */ + KeyRecordState(String key, long record) { + this.key = key; + this.record = record; + } + + /** + * Specify the start {@link Timestamp} for the diff. + * + * @param start the start {@link Timestamp} + * @return the next builder state + */ + public KeyRecordTimestampState at(Timestamp start) { + return new KeyRecordTimestampState(key, record, start); + } + + } + + /** + * The terminal state for a record-scoped {@code diff} command with a start + * {@link Timestamp}. Supports an optional second {@code at} clause for an + * end timestamp. + */ + public static final class RecordTimestampState implements Command { + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * Construct a new instance. + * + * @param record the target record + * @param start the start {@link Timestamp} + */ + RecordTimestampState(long record, Timestamp start) { + this.record = record; + this.start = start; + } + + /** + * Specify the end {@link Timestamp} for this command. + * + * @param end the end {@link Timestamp} + * @return the next builder state + */ + public RecordRangeState at(Timestamp end) { + return new RecordRangeState(record, start, end); + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("diff "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a record-scoped {@code diff} command that includes + * both a start and end {@link Timestamp}. + */ + public static final class RecordRangeState implements Command { + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * The end {@link Timestamp}. + */ + private final Timestamp end; + + /** + * Construct a new instance. + * + * @param record the target record + * @param start the start {@link Timestamp} + * @param end the end {@link Timestamp} + */ + RecordRangeState(long record, Timestamp start, Timestamp end) { + this.record = record; + this.start = start; + this.end = end; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + /** + * Return the end {@link Timestamp} for this command. + * + * @return the end {@link Timestamp} + */ + public Timestamp end() { + return end; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("diff "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + CclRenderer.appendTimestamp(sb, end); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a key-only {@code diff} command with a start + * {@link Timestamp}. Supports an optional second {@code at} clause for an + * end timestamp. + */ + public static final class KeyTimestampState implements Command { + + /** + * The key to diff. + */ + private final String key; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * Construct a new instance. + * + * @param key the key + * @param start the start {@link Timestamp} + */ + KeyTimestampState(String key, Timestamp start) { + this.key = key; + this.start = start; + } + + /** + * Specify the end {@link Timestamp} for this command. + * + * @param end the end {@link Timestamp} + * @return the next builder state + */ + public KeyRangeState at(Timestamp end) { + return new KeyRangeState(key, start, end); + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("diff "); + sb.append(key); + CclRenderer.appendTimestamp(sb, start); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a key-only {@code diff} command that includes both + * a start and end {@link Timestamp}. + */ + public static final class KeyRangeState implements Command { + + /** + * The key to diff. + */ + private final String key; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * The end {@link Timestamp}. + */ + private final Timestamp end; + + /** + * Construct a new instance. + * + * @param key the key + * @param start the start {@link Timestamp} + * @param end the end {@link Timestamp} + */ + KeyRangeState(String key, Timestamp start, Timestamp end) { + this.key = key; + this.start = start; + this.end = end; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + /** + * Return the end {@link Timestamp} for this command. + * + * @return the end {@link Timestamp} + */ + public Timestamp end() { + return end; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("diff "); + sb.append(key); + CclRenderer.appendTimestamp(sb, start); + CclRenderer.appendTimestamp(sb, end); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a key-record {@code diff} command with a start + * {@link Timestamp}. Supports an optional second {@code at} clause for an + * end timestamp. + */ + public static final class KeyRecordTimestampState implements Command { + + /** + * The key to diff. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + * @param start the start {@link Timestamp} + */ + KeyRecordTimestampState(String key, long record, Timestamp start) { + this.key = key; + this.record = record; + this.start = start; + } + + /** + * Specify the end {@link Timestamp} for this command. + * + * @param end the end {@link Timestamp} + * @return the next builder state + */ + public KeyRecordRangeState at(Timestamp end) { + return new KeyRecordRangeState(key, record, start, end); + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("diff "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a key-scoped {@code diff} command that includes + * both a start and end {@link Timestamp}. + */ + public static final class KeyRecordRangeState implements Command { + + /** + * The key to diff. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * The start {@link Timestamp}. + */ + private final Timestamp start; + + /** + * The end {@link Timestamp}. + */ + private final Timestamp end; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + * @param start the start {@link Timestamp} + * @param end the end {@link Timestamp} + */ + KeyRecordRangeState(String key, long record, Timestamp start, + Timestamp end) { + this.key = key; + this.record = record; + this.start = start; + this.end = end; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the start {@link Timestamp} for this command. + * + * @return the start {@link Timestamp} + */ + public Timestamp start() { + return start; + } + + /** + * Return the end {@link Timestamp} for this command. + * + * @return the end {@link Timestamp} + */ + public Timestamp end() { + return end; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("diff "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, start); + CclRenderer.appendTimestamp(sb, end); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private DiffCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindCommand.java new file mode 100644 index 000000000..e5fb55660 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindCommand.java @@ -0,0 +1,192 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; + +/** + * A {@link Command} builder for {@code find} commands. + *

+ * {@code find} locates record identifiers that match a condition. + *

+ * + *
+ * find <condition> [at timestamp] [order by ...] [page ...]
+ * 
+ * + * @author Jeff Nelson + */ +public final class FindCommand { + + /** + * The terminal state for a {@code find} command. This state is reached + * after specifying the condition and supports optional {@code at}, + * {@code order}, and {@code page} clauses. + */ + public static final class ConditionState implements Command { + + /** + * The structured {@link Criteria}, or {@code null} if a raw CCL string + * was provided. + */ + @Nullable + private final Criteria criteria; + + /** + * The raw CCL condition string, or {@code null} if a {@link Criteria} + * was provided. + */ + @Nullable + private final String condition; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * The optional sort {@link Order}. + */ + @Nullable + private Order order; + + /** + * The optional {@link Page pagination}. + */ + @Nullable + private Page page; + + /** + * Construct a new instance. + * + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the raw CCL string, or {@code null} + */ + ConditionState(@Nullable Criteria criteria, + @Nullable String condition) { + this.criteria = criteria; + this.condition = condition; + } + + /** + * Pin this {@code find} command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public ConditionState at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Apply an {@link Order} to this {@code find} command. + * + * @param order the {@link Order} + * @return this state for further chaining + */ + public ConditionState order(Order order) { + this.order = order; + return this; + } + + /** + * Apply {@link Page pagination} to this {@code find} command. + * + * @param page the {@link Page} + * @return this state for further chaining + */ + public ConditionState page(Page page) { + this.page = page; + return this; + } + + /** + * Return the {@link Criteria} for this command. + * + * @return the {@link Criteria}, or {@code null} + */ + @Nullable + public Criteria criteria() { + return criteria; + } + + /** + * Return the raw CCL condition for this command. + * + * @return the condition string, or {@code null} + */ + @Nullable + public String condition() { + return condition; + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + /** + * Return the sort {@link Order}. + * + * @return the {@link Order}, or {@code null} + */ + @Nullable + public Order order() { + return order; + } + + /** + * Return the {@link Page pagination}. + * + * @return the {@link Page}, or {@code null} + */ + @Nullable + public Page page() { + return page; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("find "); + CclRenderer.appendCondition(sb, criteria, condition); + CclRenderer.appendTimestamp(sb, timestamp); + CclRenderer.appendOrder(sb, order); + CclRenderer.appendPage(sb, page); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private FindCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindOrAddCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindOrAddCommand.java new file mode 100644 index 000000000..c69f5159f --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindOrAddCommand.java @@ -0,0 +1,128 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +/** + * A {@link Command} builder for {@code findOrAdd} commands. + *

+ * {@code findOrAdd} atomically finds a record where a key holds a specified + * value, or adds the key/value association to a new record if no match is + * found. + *

+ * + *
+ * findOrAdd <key> as <value>
+ * 
+ * + * @author Jeff Nelson + */ +public final class FindOrAddCommand { + + /** + * The state after specifying the key for the {@code findOrAdd} command. + */ + public static final class KeyState { + + /** + * The key to find or add. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to find or add + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the value to find or add for this key. + * + * @param value the value + * @return the next builder state + */ + public ValueState as(Object value) { + return new ValueState(key, value); + } + + } + + /** + * The terminal state for a {@code findOrAdd} command, reached after + * specifying the key and value. + */ + public static final class ValueState implements Command { + + /** + * The key to find or add. + */ + private final String key; + + /** + * The value to find or add. + */ + private final Object value; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + */ + ValueState(String key, Object value) { + this.key = key; + this.value = value; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the value for this command. + * + * @return the value + */ + public Object value() { + return value; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("findOrAdd "); + sb.append(key); + sb.append(" as "); + sb.append(CclRenderer.value(value)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private FindOrAddCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindOrInsertCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindOrInsertCommand.java new file mode 100644 index 000000000..08080810f --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/FindOrInsertCommand.java @@ -0,0 +1,250 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; + +/** + * A {@link Command} builder for {@code findOrInsert} commands. + *

+ * {@code findOrInsert} atomically finds records matching a condition, or + * inserts JSON data into a new record if no match is found. + *

+ * + *
+ * findOrInsert <condition> [at timestamp] '<json>'
+ * 
+ * + * @author Jeff Nelson + */ +public final class FindOrInsertCommand { + + /** + * The state after specifying the condition for the {@code findOrInsert} + * command. + */ + public static final class ConditionState { + + /** + * The structured {@link Criteria}, or {@code null} if a raw CCL string + * was provided. + */ + @Nullable + private final Criteria criteria; + + /** + * The raw CCL condition string, or {@code null} if a {@link Criteria} + * was provided. + */ + @Nullable + private final String condition; + + /** + * Construct a new instance. + * + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the raw CCL string, or {@code null} + */ + ConditionState(@Nullable Criteria criteria, + @Nullable String condition) { + this.criteria = criteria; + this.condition = condition; + } + + /** + * Pin this command to a historical {@link Timestamp} for evaluating the + * condition. + * + * @param timestamp the {@link Timestamp} + * @return the next builder state + */ + public TimestampState at(Timestamp timestamp) { + return new TimestampState(criteria, condition, timestamp); + } + + /** + * Specify the JSON data to insert if no matching record is found. + * + * @param json the JSON string to insert + * @return the next builder state + */ + public JsonState json(String json) { + return new JsonState(criteria, condition, null, json); + } + + } + + /** + * The state after specifying the condition and a historical + * {@link Timestamp} for the {@code findOrInsert} command. + */ + public static final class TimestampState { + + /** + * The structured {@link Criteria}, or {@code null} if a raw CCL string + * was provided. + */ + @Nullable + private final Criteria criteria; + + /** + * The raw CCL condition string, or {@code null} if a {@link Criteria} + * was provided. + */ + @Nullable + private final String condition; + + /** + * The historical {@link Timestamp}. + */ + private final Timestamp timestamp; + + /** + * Construct a new instance. + * + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the raw CCL string, or {@code null} + * @param timestamp the historical {@link Timestamp} + */ + TimestampState(@Nullable Criteria criteria, @Nullable String condition, + Timestamp timestamp) { + this.criteria = criteria; + this.condition = condition; + this.timestamp = timestamp; + } + + /** + * Specify the JSON data to insert if no matching record is found. + * + * @param json the JSON string to insert + * @return the next builder state + */ + public JsonState json(String json) { + return new JsonState(criteria, condition, timestamp, json); + } + + } + + /** + * The terminal state for a {@code findOrInsert} command, reached after + * specifying the condition, optional timestamp, and JSON data. + */ + public static final class JsonState implements Command { + + /** + * The structured {@link Criteria}, or {@code null} if a raw CCL string + * was provided. + */ + @Nullable + private final Criteria criteria; + + /** + * The raw CCL condition string, or {@code null} if a {@link Criteria} + * was provided. + */ + @Nullable + private final String condition; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private final Timestamp timestamp; + + /** + * The JSON data to insert. + */ + private final String json; + + /** + * Construct a new instance. + * + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the raw CCL string, or {@code null} + * @param timestamp the historical {@link Timestamp}, or {@code null} + * @param json the JSON data + */ + JsonState(@Nullable Criteria criteria, @Nullable String condition, + @Nullable Timestamp timestamp, String json) { + this.criteria = criteria; + this.condition = condition; + this.timestamp = timestamp; + this.json = json; + } + + /** + * Return the {@link Criteria} for this command. + * + * @return the {@link Criteria}, or {@code null} + */ + @Nullable + public Criteria criteria() { + return criteria; + } + + /** + * Return the raw CCL condition for this command. + * + * @return the condition string, or {@code null} + */ + @Nullable + public String condition() { + return condition; + } + + /** + * Return the historical {@link Timestamp} for this command. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + /** + * Return the JSON data for this command. + * + * @return the JSON string + */ + public String json() { + return json; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("findOrInsert "); + CclRenderer.appendCondition(sb, criteria, condition); + CclRenderer.appendTimestamp(sb, timestamp); + sb.append(" '"); + sb.append(json); + sb.append("'"); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private FindOrInsertCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/GetCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/GetCommand.java new file mode 100644 index 000000000..8602202cb --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/GetCommand.java @@ -0,0 +1,459 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; + +/** + * A {@link Command} builder for {@code get} commands. + *

+ * {@code get} retrieves the most recent value for specified keys from records + * or records matching a condition. + *

+ * + *
+ * get [keys] from <records>
+ *     [at timestamp] [order by ...] [page ...]
+ * get [keys] where <condition>
+ *     [at timestamp] [order by ...] [page ...]
+ * 
+ * + * @author Jeff Nelson + */ +public final class GetCommand { + + /** + * The state after calling {@link Command#getAll()} with no keys, indicating + * that all keys should be retrieved. + */ + public static final class AllKeysState { + + /** + * Construct a new instance. + */ + AllKeysState() {} + + /** + * Get all keys from the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public SourceState from(long record) { + return from(record, new long[0]); + } + + /** + * Get all keys from the specified {@code records}. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState from(long record, long... moreRecords) { + return new SourceState(null, + CclRenderer.collectRecords(record, moreRecords), null, + null); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState in(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState in(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState within(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState within(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Get all keys from records matching the {@link Criteria}. + * + * @param criteria the {@link Criteria} + * @return the next builder state + */ + public SourceState where(Criteria criteria) { + return new SourceState(null, null, criteria, null); + } + + /** + * Get all keys from records matching the CCL condition. + * + * @param ccl the CCL condition string + * @return the next builder state + */ + public SourceState where(String ccl) { + return new SourceState(null, null, null, ccl); + } + + } + + /** + * The state after specifying keys for the {@code get} command. + */ + public static final class KeyState { + + /** + * The keys to get. + */ + private final List keys; + + /** + * Construct a new instance. + * + * @param key the first key + * @param moreKeys additional keys + */ + KeyState(String key, String... moreKeys) { + this.keys = CclRenderer.collectKeys(key, moreKeys); + } + + /** + * Get from the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public SourceState from(long record) { + return from(record, new long[0]); + } + + /** + * Get from the specified {@code records}. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState from(long record, long... moreRecords) { + return new SourceState(keys, + CclRenderer.collectRecords(record, moreRecords), null, + null); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState in(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState in(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState within(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState within(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Get from records matching the {@link Criteria}. + * + * @param criteria the {@link Criteria} + * @return the next builder state + */ + public SourceState where(Criteria criteria) { + return new SourceState(keys, null, criteria, null); + } + + /** + * Get from records matching the CCL condition. + * + * @param ccl the CCL condition string + * @return the next builder state + */ + public SourceState where(String ccl) { + return new SourceState(keys, null, null, ccl); + } + + } + + /** + * The terminal state for a {@code get} command, reached after specifying + * the data source. Supports optional {@code at}, {@code order}, and + * {@code page} clauses. + */ + public static final class SourceState implements Command { + + /** + * The keys to get, or {@code null} for all keys. + */ + @Nullable + private final List keys; + + /** + * The target records, or {@code null} if a condition was provided. + */ + @Nullable + private final List records; + + /** + * The structured {@link Criteria}, or {@code null}. + */ + @Nullable + private final Criteria criteria; + + /** + * The raw CCL condition string, or {@code null}. + */ + @Nullable + private final String condition; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * The optional sort {@link Order}. + */ + @Nullable + private Order order; + + /** + * The optional {@link Page pagination}. + */ + @Nullable + private Page page; + + /** + * Construct a new instance. + * + * @param keys the keys, or {@code null} + * @param records the records, or {@code null} + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the CCL string, or {@code null} + */ + SourceState(@Nullable List keys, @Nullable List records, + @Nullable Criteria criteria, @Nullable String condition) { + this.keys = keys; + this.records = records; + this.criteria = criteria; + this.condition = condition; + } + + /** + * Pin this command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public SourceState at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Apply an {@link Order} to this command. + * + * @param order the {@link Order} + * @return this state for further chaining + */ + public SourceState order(Order order) { + this.order = order; + return this; + } + + /** + * Apply {@link Page pagination} to this command. + * + * @param page the {@link Page} + * @return this state for further chaining + */ + public SourceState page(Page page) { + this.page = page; + return this; + } + + /** + * Return the keys for this command. + * + * @return the keys, or an empty list for all keys + */ + public List keys() { + return keys != null ? Collections.unmodifiableList(keys) + : Collections.emptyList(); + } + + /** + * Return the target records. + * + * @return the records, or {@code null} + */ + @Nullable + public List records() { + return records != null ? Collections.unmodifiableList(records) + : null; + } + + /** + * Return the {@link Criteria}. + * + * @return the {@link Criteria}, or {@code null} + */ + @Nullable + public Criteria criteria() { + return criteria; + } + + /** + * Return the raw CCL condition for this command. + * + * @return the condition string, or {@code null} + */ + @Nullable + public String condition() { + return condition; + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + /** + * Return the sort {@link Order}. + * + * @return the {@link Order}, or {@code null} + */ + @Nullable + public Order order() { + return order; + } + + /** + * Return the {@link Page pagination}. + * + * @return the {@link Page}, or {@code null} + */ + @Nullable + public Page page() { + return page; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("get"); + if(keys != null) { + sb.append(" "); + sb.append(CclRenderer.keys(keys)); + } + if(records != null) { + if(keys != null) { + sb.append(" from "); + } + else { + sb.append(" "); + } + sb.append(CclRenderer.records(records)); + } + else { + sb.append(" where "); + CclRenderer.appendCondition(sb, criteria, condition); + } + CclRenderer.appendTimestamp(sb, timestamp); + CclRenderer.appendOrder(sb, order); + CclRenderer.appendPage(sb, page); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private GetCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/HoldsCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/HoldsCommand.java new file mode 100644 index 000000000..4855b187c --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/HoldsCommand.java @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +/** + * A {@link Command} builder for {@code holds} commands. + *

+ * {@code holds} checks whether one or more records currently contain any data. + *

+ * + *
+ * holds <records>
+ * 
+ * + * @author Jeff Nelson + */ +public final class HoldsCommand { + + /** + * The terminal state for a {@code holds} command, reached after specifying + * the records to check. + */ + public static final class State implements Command { + + /** + * The target records. + */ + private final List records; + + /** + * Construct a new instance. + * + * @param record the first record to check + * @param moreRecords additional records + */ + State(long record, long... moreRecords) { + this.records = CclRenderer.collectRecords(record, moreRecords); + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("holds "); + sb.append(CclRenderer.records(records)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private HoldsCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/InsertCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/InsertCommand.java new file mode 100644 index 000000000..ad1fe1afa --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/InsertCommand.java @@ -0,0 +1,238 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +/** + * A {@link Command} builder for {@code insert} commands. + *

+ * {@code insert} imports JSON data into one or more records. When no records + * are specified, a new record is created. + *

+ * + *
+ * insert <json>
+ * insert <json> in <record>
+ * insert <json> in [<records>]
+ * 
+ * + * @author Jeff Nelson + */ +public final class InsertCommand { + + /** + * The terminal state after specifying JSON data for the {@code insert} + * command. This state produces CCL without a record target, but can + * optionally be narrowed to specific records via + * {@link #in(long, long...)}. + */ + public static final class JsonState implements Command { + + /** + * The JSON data to insert. + */ + private final String json; + + /** + * Construct a new instance. + * + * @param json the JSON string to insert + */ + JsonState(String json) { + this.json = json; + } + + /** + * Insert into the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return new RecordState(json, CclRenderer.collectRecords(record)); + } + + /** + * Insert into the specified {@code records}. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState in(long first, long... more) { + return new RecordState(json, + CclRenderer.collectRecords(first, more)); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState into(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState into(long first, long... more) { + return in(first, more); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState to(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState to(long first, long... more) { + return in(first, more); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState within(long first, long... more) { + return in(first, more); + } + + /** + * Return the JSON data for this command. + * + * @return the JSON string + */ + public String json() { + return json; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("insert "); + sb.append("'"); + sb.append(json); + sb.append("'"); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for an {@code insert} command that targets specific + * records. + */ + public static final class RecordState implements Command { + + /** + * The JSON data to insert. + */ + private final String json; + + /** + * The target records. + */ + private final List records; + + /** + * Construct a new instance. + * + * @param json the JSON string + * @param records the target records + */ + RecordState(String json, List records) { + this.json = json; + this.records = records; + } + + /** + * Return the JSON data for this command. + * + * @return the JSON string + */ + public String json() { + return json; + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("insert "); + sb.append("'"); + sb.append(json); + sb.append("'"); + sb.append(" in "); + sb.append(CclRenderer.records(records)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private InsertCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/JsonifyCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/JsonifyCommand.java new file mode 100644 index 000000000..9f852324f --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/JsonifyCommand.java @@ -0,0 +1,146 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code jsonify} commands. + *

+ * {@code jsonify} serializes one or more records as JSON, optionally at a + * historical timestamp and optionally including the record identifier in each + * JSON object. + *

+ * + *
+ * jsonify <records> [with $id$] [at timestamp]
+ * 
+ * + * @author Jeff Nelson + */ +public final class JsonifyCommand { + + /** + * The terminal state for a {@code jsonify} command. This state is reached + * after specifying the records to serialize and supports optional + * {@code at} and {@code identifier} clauses. + */ + public static final class State implements Command { + + /** + * The target records. + */ + private final List records; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * Whether to include the record identifier in the JSON output. + */ + private boolean identifier; + + /** + * Construct a new instance. + * + * @param record the first record to jsonify + * @param moreRecords additional records + */ + State(long record, long... moreRecords) { + this.records = CclRenderer.collectRecords(record, moreRecords); + this.identifier = false; + } + + /** + * Pin this command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public State at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Include the record identifier in each JSON object produced by this + * command. + * + * @return this state for further chaining + */ + public State identifier() { + this.identifier = true; + return this; + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + /** + * Return whether the record identifier should be included in the JSON + * output. + * + * @return {@code true} if the identifier is included + */ + public boolean includeIdentifier() { + return identifier; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("jsonify "); + sb.append(CclRenderer.records(records)); + if(identifier) { + sb.append(" with $id$"); + } + CclRenderer.appendTimestamp(sb, timestamp); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private JsonifyCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/LinkCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/LinkCommand.java new file mode 100644 index 000000000..2949f3e5c --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/LinkCommand.java @@ -0,0 +1,201 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +/** + * A {@link Command} builder for {@code link} commands. + *

+ * {@code link} creates a directional relationship from a source record to one + * or more destination records on a given key. + *

+ * + *
+ * link <key> from <source> to <destination>
+ * link <key> from <source> to [<destinations>]
+ * 
+ * + * @author Jeff Nelson + */ +public final class LinkCommand { + + /** + * The state after specifying the key for the {@code link} command. + */ + public static final class KeyState { + + /** + * The link key. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the link key + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the source record from which the link originates. + * + * @param source the source record + * @return the next builder state + */ + public SourceState from(long source) { + return new SourceState(key, source); + } + + } + + /** + * The state after specifying the key and source record for the {@code link} + * command. + */ + public static final class SourceState { + + /** + * The link key. + */ + private final String key; + + /** + * The source record. + */ + private final long source; + + /** + * Construct a new instance. + * + * @param key the link key + * @param source the source record + */ + SourceState(String key, long source) { + this.key = key; + this.source = source; + } + + /** + * Specify a single destination record for the link. + * + * @param destination the destination record + * @return the next builder state + */ + public DestinationState to(long destination) { + return new DestinationState(key, source, + CclRenderer.collectRecords(destination)); + } + + /** + * Specify multiple destination records for the link. + * + * @param first the first destination record + * @param more additional destination records + * @return the next builder state + */ + public DestinationState to(long first, long... more) { + return new DestinationState(key, source, + CclRenderer.collectRecords(first, more)); + } + + } + + /** + * The terminal state for a {@code link} command, reached after specifying + * the key, source, and destination records. + */ + public static final class DestinationState implements Command { + + /** + * The link key. + */ + private final String key; + + /** + * The source record. + */ + private final long source; + + /** + * The destination records. + */ + private final List destinations; + + /** + * Construct a new instance. + * + * @param key the link key + * @param source the source record + * @param destinations the destination records + */ + DestinationState(String key, long source, List destinations) { + this.key = key; + this.source = source; + this.destinations = destinations; + } + + /** + * Return the link key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the source record for this command. + * + * @return the source record + */ + public long source() { + return source; + } + + /** + * Return the destination records for this command. + * + * @return the destination records + */ + public List destinations() { + return Collections.unmodifiableList(destinations); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("link "); + sb.append(key); + sb.append(" from "); + sb.append(Long.toString(source)); + sb.append(" to "); + sb.append(CclRenderer.records(destinations)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private LinkCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/NavigateCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/NavigateCommand.java new file mode 100644 index 000000000..dfce1ae44 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/NavigateCommand.java @@ -0,0 +1,287 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; + +/** + * A {@link Command} builder for {@code navigate} commands. + *

+ * {@code navigate} follows link paths in the document-graph data model. + *

+ * + *
+ * navigate <keys> from <records> [at timestamp]
+ * navigate <keys> where <condition> [at timestamp]
+ * 
+ * + * @author Jeff Nelson + */ +public final class NavigateCommand { + + /** + * The state after specifying keys for the {@code navigate} command. + */ + public static final class KeyState { + + /** + * The navigation keys. + */ + private final List keys; + + /** + * Construct a new instance. + * + * @param key the first key + * @param moreKeys additional keys + */ + KeyState(String key, String... moreKeys) { + this.keys = CclRenderer.collectKeys(key, moreKeys); + } + + /** + * Navigate from the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public SourceState from(long record) { + return from(record, new long[0]); + } + + /** + * Navigate from the specified {@code records}. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState from(long record, long... moreRecords) { + return new SourceState(keys, + CclRenderer.collectRecords(record, moreRecords), null, + null); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState in(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState in(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState within(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState within(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Navigate from records matching the {@link Criteria}. + * + * @param criteria the {@link Criteria} + * @return the next builder state + */ + public SourceState where(Criteria criteria) { + return new SourceState(keys, null, criteria, null); + } + + /** + * Navigate from records matching the CCL condition. + * + * @param ccl the CCL condition string + * @return the next builder state + */ + public SourceState where(String ccl) { + return new SourceState(keys, null, null, ccl); + } + + } + + /** + * The terminal state for a {@code navigate} command. Supports an optional + * {@code at} clause for historical navigation. + */ + public static final class SourceState implements Command { + + /** + * The navigation keys. + */ + private final List keys; + + /** + * The source records, or {@code null} if a condition was provided. + */ + @Nullable + private final List records; + + /** + * The structured {@link Criteria}, or {@code null}. + */ + @Nullable + private final Criteria criteria; + + /** + * The raw CCL condition string, or {@code null}. + */ + @Nullable + private final String condition; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * Construct a new instance. + * + * @param keys the keys + * @param records the records, or {@code null} + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the CCL string, or {@code null} + */ + SourceState(List keys, @Nullable List records, + @Nullable Criteria criteria, @Nullable String condition) { + this.keys = keys; + this.records = records; + this.criteria = criteria; + this.condition = condition; + } + + /** + * Pin this command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public SourceState at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Return the navigation keys. + * + * @return the keys + */ + public List keys() { + return Collections.unmodifiableList(keys); + } + + /** + * Return the source records. + * + * @return the records, or {@code null} + */ + @Nullable + public List records() { + return records != null ? Collections.unmodifiableList(records) + : null; + } + + /** + * Return the {@link Criteria}. + * + * @return the {@link Criteria}, or {@code null} + */ + @Nullable + public Criteria criteria() { + return criteria; + } + + /** + * Return the raw CCL condition for this command. + * + * @return the condition string, or {@code null} + */ + @Nullable + public String condition() { + return condition; + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("navigate "); + sb.append(CclRenderer.keys(keys)); + if(records != null) { + sb.append(" from "); + sb.append(CclRenderer.records(records)); + } + else { + sb.append(" where "); + CclRenderer.appendCondition(sb, criteria, condition); + } + CclRenderer.appendTimestamp(sb, timestamp); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private NavigateCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ParsedCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ParsedCommand.java new file mode 100644 index 000000000..a358f0586 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ParsedCommand.java @@ -0,0 +1,411 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.StreamSupport; + +import com.cinchapi.ccl.grammar.KeyTokenSymbol; +import com.cinchapi.ccl.grammar.Symbol; +import com.cinchapi.ccl.grammar.TimestampSymbol; +import com.cinchapi.ccl.grammar.command.AddSymbol; +import com.cinchapi.ccl.grammar.command.AuditSymbol; +import com.cinchapi.ccl.grammar.command.BrowseSymbol; +import com.cinchapi.ccl.grammar.command.CalculateSymbol; +import com.cinchapi.ccl.grammar.command.ChronicleSymbol; +import com.cinchapi.ccl.grammar.command.ClearSymbol; +import com.cinchapi.ccl.grammar.command.CommandSymbol; +import com.cinchapi.ccl.grammar.command.ConsolidateSymbol; +import com.cinchapi.ccl.grammar.command.DescribeSymbol; +import com.cinchapi.ccl.grammar.command.DiffSymbol; +import com.cinchapi.ccl.grammar.command.FindOrAddSymbol; +import com.cinchapi.ccl.grammar.command.FindOrInsertSymbol; +import com.cinchapi.ccl.grammar.command.FindSymbol; +import com.cinchapi.ccl.grammar.command.GetSymbol; +import com.cinchapi.ccl.grammar.command.HoldsSymbol; +import com.cinchapi.ccl.grammar.command.InsertSymbol; +import com.cinchapi.ccl.grammar.command.JsonifySymbol; +import com.cinchapi.ccl.grammar.command.LinkSymbol; +import com.cinchapi.ccl.grammar.command.NavigateSymbol; +import com.cinchapi.ccl.grammar.command.ReconcileSymbol; +import com.cinchapi.ccl.grammar.command.RemoveSymbol; +import com.cinchapi.ccl.grammar.command.RevertSymbol; +import com.cinchapi.ccl.grammar.command.SearchSymbol; +import com.cinchapi.ccl.grammar.command.SelectSymbol; +import com.cinchapi.ccl.grammar.command.SetSymbol; +import com.cinchapi.ccl.grammar.command.TraceSymbol; +import com.cinchapi.ccl.grammar.command.UnlinkSymbol; +import com.cinchapi.ccl.grammar.command.VerifyAndSwapSymbol; +import com.cinchapi.ccl.grammar.command.VerifyOrSetSymbol; +import com.cinchapi.ccl.grammar.command.VerifySymbol; +import com.cinchapi.ccl.syntax.CommandTree; +import com.cinchapi.concourse.lang.ConcourseCompiler; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; +import com.cinchapi.concourse.thrift.JavaThriftBridge; +import com.cinchapi.concourse.thrift.TCommand; +import com.cinchapi.concourse.thrift.TCommandVerb; +import com.cinchapi.concourse.util.Convert; + +/** + * A {@link Command} created by parsing a CCL string via + * {@link Command#parse(String)}. + *

+ * Unlike the builder-pattern {@link Command Commands} constructed via the + * fluent API, a {@link ParsedCommand} stores the raw CCL string and the parsed + * {@link CommandTree}. Serialization to {@link TCommand} is handled by the + * package-private {@link #serialize()} method, which builds the wire + * representation directly from the parsed tree. + *

+ * + * @author Jeff Nelson + */ +final class ParsedCommand implements Command { + + /** + * The original CCL string. + */ + private final String ccl; + + /** + * The parsed {@link CommandTree}. + */ + private final CommandTree tree; + + /** + * Construct a new instance. + * + * @param ccl the original CCL string + * @param tree the parsed {@link CommandTree} + */ + ParsedCommand(String ccl, CommandTree tree) { + this.ccl = ccl; + this.tree = tree; + } + + @Override + public String ccl() { + return ccl; + } + + /** + * Serialize this {@link ParsedCommand} to a {@link TCommand} by walking the + * parsed {@link CommandTree}. + * + * @return the {@link TCommand} + */ + /* package */ TCommand serialize() { + CommandSymbol symbol = (CommandSymbol) tree.root(); + TCommand tc = new TCommand(TCommandVerb.valueOf(symbol.type())); + populateFromSymbol(tc, symbol); + populateFromTree(tc); + return tc; + } + + @Override + public String toString() { + return ccl(); + } + + /** + * Populate a {@link TCommand} with data extracted from the + * {@link CommandSymbol}. + * + * @param tc the {@link TCommand} to populate + * @param symbol the {@link CommandSymbol} carrying parsed data + */ + private void populateFromSymbol(TCommand tc, CommandSymbol symbol) { + if(symbol instanceof FindSymbol) { + setTimestamp(tc, ((FindSymbol) symbol).timestamp()); + } + else if(symbol instanceof SelectSymbol) { + SelectSymbol ss = (SelectSymbol) symbol; + setKeyTokens(tc, ss.keys()); + setRecordsFromSymbol(tc, ss.record(), ss.records()); + setTimestamp(tc, ss.timestamp()); + } + else if(symbol instanceof GetSymbol) { + GetSymbol gs = (GetSymbol) symbol; + setKeyTokens(tc, gs.keys()); + setRecordsFromSymbol(tc, gs.record(), gs.records()); + setTimestamp(tc, gs.timestamp()); + } + else if(symbol instanceof NavigateSymbol) { + NavigateSymbol ns = (NavigateSymbol) symbol; + setKeyTokens(tc, ns.keys()); + setRecordsFromSymbol(tc, ns.record(), ns.records()); + setTimestamp(tc, ns.timestamp()); + } + else if(symbol instanceof AddSymbol) { + AddSymbol as = (AddSymbol) symbol; + tc.setKeys(Collections.singletonList(as.key().toString())); + tc.setValue(Convert.javaToThrift(as.value().value())); + setRecordsFromSymbol(tc, as.record(), as.records()); + } + else if(symbol instanceof SetSymbol) { + SetSymbol ss = (SetSymbol) symbol; + tc.setKeys(Collections.singletonList(ss.key().toString())); + tc.setValue(Convert.javaToThrift(ss.value().value())); + setRecordsFromSymbol(tc, ss.record(), ss.records()); + } + else if(symbol instanceof RemoveSymbol) { + RemoveSymbol rs = (RemoveSymbol) symbol; + tc.setKeys(Collections.singletonList(rs.key().toString())); + tc.setValue(Convert.javaToThrift(rs.value().value())); + setRecordsFromSymbol(tc, null, + rs.isMultiRecord() ? rs.records() : null); + if(!rs.isMultiRecord()) { + tc.setRecords(Collections.singletonList(rs.record())); + } + } + else if(symbol instanceof ClearSymbol) { + ClearSymbol cs = (ClearSymbol) symbol; + if(cs.keys() != null) { + setKeyTokens(tc, cs.keys()); + } + else if(cs.key() != null) { + tc.setKeys(Collections.singletonList(cs.key().toString())); + } + setRecordsFromSymbol(tc, null, cs.records()); + if(cs.records() == null) { + tc.setRecords(Collections.singletonList(cs.record())); + } + } + else if(symbol instanceof InsertSymbol) { + InsertSymbol is = (InsertSymbol) symbol; + tc.setJson(is.json()); + setRecordsFromSymbol(tc, is.record(), is.records()); + } + else if(symbol instanceof LinkSymbol) { + LinkSymbol ls = (LinkSymbol) symbol; + tc.setKeys(Collections.singletonList(ls.key().toString())); + tc.setSourceRecord(ls.source()); + tc.setRecords(new ArrayList<>(ls.destinations())); + } + else if(symbol instanceof UnlinkSymbol) { + UnlinkSymbol us = (UnlinkSymbol) symbol; + tc.setKeys(Collections.singletonList(us.key().toString())); + tc.setSourceRecord(us.source()); + tc.setRecords(Collections.singletonList(us.destination())); + } + else if(symbol instanceof VerifySymbol) { + VerifySymbol vs = (VerifySymbol) symbol; + tc.setKeys(Collections.singletonList(vs.key().toString())); + tc.setValue(Convert.javaToThrift(vs.value().value())); + tc.setRecords(Collections.singletonList(vs.record())); + setTimestamp(tc, vs.timestamp()); + } + else if(symbol instanceof VerifyAndSwapSymbol) { + VerifyAndSwapSymbol vas = (VerifyAndSwapSymbol) symbol; + tc.setKeys(Collections.singletonList(vas.key().toString())); + tc.setValue(Convert.javaToThrift(vas.expected().value())); + tc.setReplacement(Convert.javaToThrift(vas.replacement().value())); + tc.setRecords(Collections.singletonList(vas.record())); + } + else if(symbol instanceof VerifyOrSetSymbol) { + VerifyOrSetSymbol vos = (VerifyOrSetSymbol) symbol; + tc.setKeys(Collections.singletonList(vos.key().toString())); + tc.setValue(Convert.javaToThrift(vos.value().value())); + tc.setRecords(Collections.singletonList(vos.record())); + } + else if(symbol instanceof FindOrAddSymbol) { + FindOrAddSymbol foa = (FindOrAddSymbol) symbol; + tc.setKeys(Collections.singletonList(foa.key().toString())); + tc.setValue(Convert.javaToThrift(foa.value().value())); + } + else if(symbol instanceof FindOrInsertSymbol) { + FindOrInsertSymbol foi = (FindOrInsertSymbol) symbol; + tc.setJson(foi.json()); + setTimestamp(tc, foi.timestamp()); + } + else if(symbol instanceof SearchSymbol) { + SearchSymbol ss = (SearchSymbol) symbol; + tc.setKeys(Collections.singletonList(ss.key().toString())); + tc.setQuery(ss.query()); + } + else if(symbol instanceof BrowseSymbol) { + BrowseSymbol bs = (BrowseSymbol) symbol; + setKeyTokens(tc, bs.keys()); + setTimestamp(tc, bs.timestamp()); + } + else if(symbol instanceof DescribeSymbol) { + DescribeSymbol ds = (DescribeSymbol) symbol; + setRecordsFromSymbol(tc, ds.record(), ds.records()); + setTimestamp(tc, ds.timestamp()); + } + else if(symbol instanceof TraceSymbol) { + TraceSymbol ts = (TraceSymbol) symbol; + setRecordsFromSymbol(tc, ts.record(), ts.records()); + setTimestamp(tc, ts.timestamp()); + } + else if(symbol instanceof HoldsSymbol) { + HoldsSymbol hs = (HoldsSymbol) symbol; + setRecordsFromSymbol(tc, hs.record(), hs.records()); + } + else if(symbol instanceof JsonifySymbol) { + JsonifySymbol js = (JsonifySymbol) symbol; + setRecordsFromSymbol(tc, js.record(), js.records()); + setTimestamp(tc, js.timestamp()); + } + else if(symbol instanceof ChronicleSymbol) { + ChronicleSymbol cs = (ChronicleSymbol) symbol; + tc.setKeys(Collections.singletonList(cs.key().toString())); + tc.setRecords(Collections.singletonList(cs.record())); + setTimestamp(tc, cs.start()); + if(cs.end() != null && cs.end() != TimestampSymbol.PRESENT) { + tc.setEndTimestamp(cs.end().timestamp()); + } + } + else if(symbol instanceof DiffSymbol) { + DiffSymbol ds = (DiffSymbol) symbol; + if(ds.key() != null) { + tc.setKeys(Collections.singletonList(ds.key().toString())); + } + if(ds.record() != null) { + tc.setRecords(Collections.singletonList(ds.record())); + } + setTimestamp(tc, ds.start()); + if(ds.end() != null && ds.end() != TimestampSymbol.PRESENT) { + tc.setEndTimestamp(ds.end().timestamp()); + } + } + else if(symbol instanceof AuditSymbol) { + AuditSymbol as = (AuditSymbol) symbol; + if(as.key() != null) { + tc.setKeys(Collections.singletonList(as.key().toString())); + } + tc.setRecords(Collections.singletonList(as.record())); + setTimestamp(tc, as.start()); + if(as.end() != null && as.end() != TimestampSymbol.PRESENT) { + tc.setEndTimestamp(as.end().timestamp()); + } + } + else if(symbol instanceof RevertSymbol) { + RevertSymbol rs = (RevertSymbol) symbol; + if(rs.keys() != null) { + setKeyTokens(tc, rs.keys()); + } + else if(rs.key() != null) { + tc.setKeys(Collections.singletonList(rs.key().toString())); + } + setRecordsFromSymbol(tc, null, rs.records()); + if(rs.records() == null) { + tc.setRecords(Collections.singletonList(rs.record())); + } + setTimestamp(tc, rs.timestamp()); + } + else if(symbol instanceof ReconcileSymbol) { + ReconcileSymbol rs = (ReconcileSymbol) symbol; + tc.setKeys(Collections.singletonList(rs.key().toString())); + tc.setRecords(Collections.singletonList(rs.record())); + tc.setValues(rs.values().stream() + .map(v -> Convert.javaToThrift(v.value())) + .collect(Collectors.toList())); + } + else if(symbol instanceof ConsolidateSymbol) { + ConsolidateSymbol cs = (ConsolidateSymbol) symbol; + List records = new ArrayList<>(); + records.add(cs.first()); + records.addAll(cs.remaining()); + tc.setRecords(records); + } + else if(symbol instanceof CalculateSymbol) { + CalculateSymbol cs = (CalculateSymbol) symbol; + tc.setFunction(cs.function()); + tc.setKeys(Collections.singletonList(cs.key().toString())); + if(cs.records() != null) { + tc.setRecords(new ArrayList<>(cs.records())); + } + setTimestamp(tc, cs.timestamp()); + } + // NOTE: Nullary commands (PingSymbol, StageSymbol, + // CommitSymbol, AbortSymbol, InventorySymbol) need no + // additional fields beyond the verb that is already set. + } + + /** + * Populate a {@link TCommand} with condition, order, and page data from the + * {@link CommandTree}. + * + * @param tc the {@link TCommand} to populate + */ + private void populateFromTree(TCommand tc) { + if(tree.conditionTree() != null) { + String condition = StreamSupport + .stream(ConcourseCompiler.get() + .tokenize(tree.conditionTree()).spliterator(), + false) + .map(Symbol::toString).collect(Collectors.joining(" ")); + tc.setCondition(condition); + } + if(tree.orderTree() != null) { + tc.setOrder(JavaThriftBridge.convert(Order.from(tree.orderTree()))); + } + if(tree.pageTree() != null) { + tc.setPage(JavaThriftBridge.convert(Page.from(tree.pageTree()))); + } + } + + /** + * Set a timestamp on the {@link TCommand} if the given + * {@link TimestampSymbol} represents a historical timestamp. + * + * @param tc the {@link TCommand} to modify + * @param ts the {@link TimestampSymbol}, or {@code null} + */ + private static void setTimestamp(TCommand tc, TimestampSymbol ts) { + if(ts != null && ts != TimestampSymbol.PRESENT && ts.timestamp() != 0) { + tc.setTimestamp(ts.timestamp()); + } + } + + /** + * Set key tokens on the {@link TCommand} from a collection of + * {@link KeyTokenSymbol KeyTokenSymbols}. + * + * @param tc the {@link TCommand} to modify + * @param keys the key symbols, or {@code null} + */ + private static void setKeyTokens(TCommand tc, + java.util.Collection> keys) { + if(keys != null && !keys.isEmpty()) { + tc.setKeys(keys.stream().map(KeyTokenSymbol::toString) + .collect(Collectors.toList())); + } + } + + /** + * Set records on the {@link TCommand} from a single record or a collection + * of records extracted from a {@link CommandSymbol}. + * + * @param tc the {@link TCommand} to modify + * @param record the single record, or {@code null} + * @param records the collection of records, or {@code null} + */ + private static void setRecordsFromSymbol(TCommand tc, Long record, + java.util.Collection records) { + if(records != null) { + tc.setRecords(new ArrayList<>(records)); + } + else if(record != null) { + tc.setRecords(Collections.singletonList(record)); + } + } + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ReconcileCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ReconcileCommand.java new file mode 100644 index 000000000..d4de194da --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/ReconcileCommand.java @@ -0,0 +1,204 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +/** + * A {@link Command} builder for {@code reconcile} commands. + *

+ * {@code reconcile} atomically replaces all values stored for a key in a record + * with a new set of values. + *

+ * + *
+ * reconcile <key> in <record> with <values>
+ * 
+ * + * @author Jeff Nelson + */ +public final class ReconcileCommand { + + /** + * The state after specifying the key for the {@code reconcile} command. + */ + public static final class KeyState { + + /** + * The key to reconcile. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to reconcile + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the record in which to reconcile the key. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return new RecordState(key, record); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + } + + /** + * The state after specifying the key and record for the {@code reconcile} + * command. + */ + public static final class RecordState { + + /** + * The key to reconcile. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + */ + RecordState(String key, long record) { + this.key = key; + this.record = record; + } + + /** + * Specify the values to reconcile. + * + * @param value the first value + * @param moreValues additional values + * @return the next builder state + */ + public ValuesState with(Object value, Object... moreValues) { + List values = new ArrayList<>(); + values.add(value); + for (Object v : moreValues) { + values.add(v); + } + return new ValuesState(key, record, values); + } + + } + + /** + * The terminal state for a {@code reconcile} command, reached after + * specifying the key, record, and values. + */ + public static final class ValuesState implements Command { + + /** + * The key to reconcile. + */ + private final String key; + + /** + * The target record. + */ + private final long record; + + /** + * The values to reconcile. + */ + private final List values; + + /** + * Construct a new instance. + * + * @param key the key + * @param record the target record + * @param values the values + */ + ValuesState(String key, long record, List values) { + this.key = key; + this.record = record; + this.values = values; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the values for this command. + * + * @return the values + */ + public List values() { + return Collections.unmodifiableList(values); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("reconcile "); + sb.append(key); + sb.append(" in "); + sb.append(Long.toString(record)); + sb.append(" with "); + sb.append(CclRenderer.values(values)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private ReconcileCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/RemoveCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/RemoveCommand.java new file mode 100644 index 000000000..23b5d6f84 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/RemoveCommand.java @@ -0,0 +1,324 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +/** + * A {@link Command} builder for {@code remove} commands. + *

+ * {@code remove} disassociates a value from a key in one or more records, or + * removes all values for a key from records. + *

+ * + *
+ * remove <key> as <value> from <record>
+ * remove <key> as <value> from [<records>]
+ * remove <key> from <record>
+ * remove <key> from [<records>]
+ * 
+ * + * @author Jeff Nelson + */ +public final class RemoveCommand { + + /** + * The state after specifying the key for the {@code remove} command. From + * here the caller can specify a value with {@link #as(Object)} or go + * directly to record targeting with {@link #from(long, long...)}. + */ + public static final class KeyState { + + /** + * The key to remove. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to remove + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the value to remove for this key. + * + * @param value the value to remove + * @return the next builder state + */ + public ValueState as(Object value) { + return new ValueState(key, value); + } + + /** + * Remove from the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public RecordState from(long record) { + return new RecordState(key, null, + CclRenderer.collectRecords(record)); + } + + /** + * Remove from the specified {@code records}. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState from(long first, long... more) { + return new RecordState(key, null, + CclRenderer.collectRecords(first, more)); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState in(long first, long... more) { + return from(first, more); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState within(long first, long... more) { + return from(first, more); + } + + } + + /** + * The state after specifying the key and value for the {@code remove} + * command. The caller must specify target records via {@link #from(long)} + * or {@link #from(long, long...)}. + */ + public static final class ValueState { + + /** + * The key to remove. + */ + private final String key; + + /** + * The value to remove. + */ + private final Object value; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + */ + ValueState(String key, Object value) { + this.key = key; + this.value = value; + } + + /** + * Remove from the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public RecordState from(long record) { + return new RecordState(key, value, + CclRenderer.collectRecords(record)); + } + + /** + * Remove from the specified {@code records}. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState from(long first, long... more) { + return new RecordState(key, value, + CclRenderer.collectRecords(first, more)); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState in(long first, long... more) { + return from(first, more); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState within(long first, long... more) { + return from(first, more); + } + + } + + /** + * The terminal state for a {@code remove} command, reached after specifying + * the key, optional value, and target records. + */ + public static final class RecordState implements Command { + + /** + * The key to remove. + */ + private final String key; + + /** + * The value to remove, or {@code null} if all values for the key should + * be removed. + */ + @Nullable + private final Object value; + + /** + * The target records. + */ + private final List records; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value, or {@code null} + * @param records the target records + */ + RecordState(String key, @Nullable Object value, List records) { + this.key = key; + this.value = value; + this.records = records; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the value for this command. + * + * @return the value, or {@code null} if not specified + */ + @Nullable + public Object value() { + return value; + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("remove "); + sb.append(key); + if(value != null) { + sb.append(" as "); + sb.append(CclRenderer.value(value)); + } + sb.append(" from "); + sb.append(CclRenderer.records(records)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private RemoveCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/RevertCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/RevertCommand.java new file mode 100644 index 000000000..71c49385e --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/RevertCommand.java @@ -0,0 +1,247 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code revert} commands. + *

+ * {@code revert} restores one or more keys in one or more records to their + * state at a given {@link Timestamp}. + *

+ * + *
+ * revert <keys> in <records> at <timestamp>
+ * 
+ * + * @author Jeff Nelson + */ +public final class RevertCommand { + + /** + * The state after specifying the keys for the {@code revert} command. + */ + public static final class KeyState { + + /** + * The keys to revert. + */ + private final List keys; + + /** + * Construct a new instance. + * + * @param key the first key + * @param moreKeys additional keys + */ + KeyState(String key, String... moreKeys) { + this.keys = CclRenderer.collectKeys(key, moreKeys); + } + + /** + * Specify the record in which to revert the keys. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return in(record, new long[0]); + } + + /** + * Specify the records in which to revert the keys. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public RecordState in(long record, long... moreRecords) { + return new RecordState(keys, + CclRenderer.collectRecords(record, moreRecords)); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState from(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public RecordState from(long record, long... moreRecords) { + return in(record, moreRecords); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public RecordState within(long record, long... moreRecords) { + return in(record, moreRecords); + } + + } + + /** + * The state after specifying the keys and records for the {@code revert} + * command. + */ + public static final class RecordState { + + /** + * The keys to revert. + */ + private final List keys; + + /** + * The target records. + */ + private final List records; + + /** + * Construct a new instance. + * + * @param keys the keys + * @param records the target records + */ + RecordState(List keys, List records) { + this.keys = keys; + this.records = records; + } + + /** + * Specify the {@link Timestamp} to revert to. + * + * @param timestamp the target {@link Timestamp} + * @return the next builder state + */ + public TimestampState to(Timestamp timestamp) { + return new TimestampState(keys, records, timestamp); + } + + } + + /** + * The terminal state for a {@code revert} command, reached after specifying + * keys, records, and the target {@link Timestamp}. + */ + public static final class TimestampState implements Command { + + /** + * The keys to revert. + */ + private final List keys; + + /** + * The target records. + */ + private final List records; + + /** + * The target {@link Timestamp}. + */ + private final Timestamp timestamp; + + /** + * Construct a new instance. + * + * @param keys the keys + * @param records the target records + * @param timestamp the target {@link Timestamp} + */ + TimestampState(List keys, List records, + Timestamp timestamp) { + this.keys = keys; + this.records = records; + this.timestamp = timestamp; + } + + /** + * Return the keys for this command. + * + * @return the keys + */ + public List keys() { + return Collections.unmodifiableList(keys); + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + /** + * Return the target {@link Timestamp} for this command. + * + * @return the {@link Timestamp} + */ + public Timestamp timestamp() { + return timestamp; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("revert "); + sb.append(CclRenderer.keys(keys)); + sb.append(" in "); + sb.append(CclRenderer.records(records)); + sb.append(" at "); + sb.append(timestamp.getMicros()); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private RevertCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SearchCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SearchCommand.java new file mode 100644 index 000000000..c9385e283 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SearchCommand.java @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +/** + * A {@link Command} builder for {@code search} commands. + *

+ * {@code search} performs a full-text search against indexed values for a + * specified key. + *

+ * + *
+ * search <key> for <query>
+ * 
+ * + * @author Jeff Nelson + */ +public final class SearchCommand { + + /** + * The state after specifying the key for the {@code search} command. + */ + public static final class KeyState { + + /** + * The key to search. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to search + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the search query for this key. + * + * @param query the full-text search query + * @return the next builder state + */ + public QueryState forQuery(String query) { + return new QueryState(key, query); + } + + } + + /** + * The terminal state for a {@code search} command, reached after specifying + * both the key and the search query. + */ + public static final class QueryState implements Command { + + /** + * The key to search. + */ + private final String key; + + /** + * The full-text search query. + */ + private final String query; + + /** + * Construct a new instance. + * + * @param key the key to search + * @param query the search query + */ + QueryState(String key, String query) { + this.key = key; + this.query = query; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the search query for this command. + * + * @return the query + */ + public String query() { + return query; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("search "); + sb.append(key); + sb.append(" for "); + sb.append(CclRenderer.value(query)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private SearchCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SelectCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SelectCommand.java new file mode 100644 index 000000000..ccb6182ab --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SelectCommand.java @@ -0,0 +1,459 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; + +/** + * A {@link Command} builder for {@code select} commands. + *

+ * {@code select} retrieves all values for specified keys from records or + * records matching a condition. + *

+ * + *
+ * select [keys] from <records>
+ *     [at timestamp] [order by ...] [page ...]
+ * select [keys] where <condition>
+ *     [at timestamp] [order by ...] [page ...]
+ * 
+ * + * @author Jeff Nelson + */ +public final class SelectCommand { + + /** + * The state after calling {@link Command#selectAll()} with no keys, + * indicating that all keys should be selected. + */ + public static final class AllKeysState { + + /** + * Construct a new instance. + */ + AllKeysState() {} + + /** + * Select all keys from the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public SourceState from(long record) { + return from(record, new long[0]); + } + + /** + * Select all keys from the specified {@code records}. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState from(long record, long... moreRecords) { + return new SourceState(null, + CclRenderer.collectRecords(record, moreRecords), null, + null); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState in(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState in(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState within(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState within(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Select all keys from records matching the {@link Criteria}. + * + * @param criteria the {@link Criteria} + * @return the next builder state + */ + public SourceState where(Criteria criteria) { + return new SourceState(null, null, criteria, null); + } + + /** + * Select all keys from records matching the CCL condition. + * + * @param ccl the CCL condition string + * @return the next builder state + */ + public SourceState where(String ccl) { + return new SourceState(null, null, null, ccl); + } + + } + + /** + * The state after specifying keys for the {@code select} command. + */ + public static final class KeyState { + + /** + * The keys to select. + */ + private final List keys; + + /** + * Construct a new instance. + * + * @param key the first key + * @param moreKeys additional keys + */ + KeyState(String key, String... moreKeys) { + this.keys = CclRenderer.collectKeys(key, moreKeys); + } + + /** + * Select from the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public SourceState from(long record) { + return from(record, new long[0]); + } + + /** + * Select from the specified {@code records}. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState from(long record, long... moreRecords) { + return new SourceState(keys, + CclRenderer.collectRecords(record, moreRecords), null, + null); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState in(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState in(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Alias for {@link #from(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public SourceState within(long record) { + return from(record); + } + + /** + * Alias for {@link #from(long, long...)} to support alternate CCL + * dialects. + * + * @param record the first record + * @param moreRecords additional records + * @return the next builder state + */ + public SourceState within(long record, long... moreRecords) { + return from(record, moreRecords); + } + + /** + * Select from records matching the {@link Criteria}. + * + * @param criteria the {@link Criteria} + * @return the next builder state + */ + public SourceState where(Criteria criteria) { + return new SourceState(keys, null, criteria, null); + } + + /** + * Select from records matching the CCL condition. + * + * @param ccl the CCL condition string + * @return the next builder state + */ + public SourceState where(String ccl) { + return new SourceState(keys, null, null, ccl); + } + + } + + /** + * The terminal state for a {@code select} command, reached after specifying + * the data source (records or condition). Supports optional {@code at}, + * {@code order}, and {@code page} clauses. + */ + public static final class SourceState implements Command { + + /** + * The keys to select, or {@code null} for all keys. + */ + @Nullable + private final List keys; + + /** + * The target records, or {@code null} if a condition was provided. + */ + @Nullable + private final List records; + + /** + * The structured {@link Criteria}, or {@code null}. + */ + @Nullable + private final Criteria criteria; + + /** + * The raw CCL condition string, or {@code null}. + */ + @Nullable + private final String condition; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * The optional sort {@link Order}. + */ + @Nullable + private Order order; + + /** + * The optional {@link Page pagination}. + */ + @Nullable + private Page page; + + /** + * Construct a new instance. + * + * @param keys the keys, or {@code null} + * @param records the records, or {@code null} + * @param criteria the {@link Criteria}, or {@code null} + * @param condition the CCL string, or {@code null} + */ + SourceState(@Nullable List keys, @Nullable List records, + @Nullable Criteria criteria, @Nullable String condition) { + this.keys = keys; + this.records = records; + this.criteria = criteria; + this.condition = condition; + } + + /** + * Pin this command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public SourceState at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Apply an {@link Order} to this command. + * + * @param order the {@link Order} + * @return this state for further chaining + */ + public SourceState order(Order order) { + this.order = order; + return this; + } + + /** + * Apply {@link Page pagination} to this command. + * + * @param page the {@link Page} + * @return this state for further chaining + */ + public SourceState page(Page page) { + this.page = page; + return this; + } + + /** + * Return the keys for this command. + * + * @return the keys, or an empty list for all keys + */ + public List keys() { + return keys != null ? Collections.unmodifiableList(keys) + : Collections.emptyList(); + } + + /** + * Return the target records. + * + * @return the records, or {@code null} + */ + @Nullable + public List records() { + return records != null ? Collections.unmodifiableList(records) + : null; + } + + /** + * Return the {@link Criteria}. + * + * @return the {@link Criteria}, or {@code null} + */ + @Nullable + public Criteria criteria() { + return criteria; + } + + /** + * Return the raw CCL condition for this command. + * + * @return the condition string, or {@code null} + */ + @Nullable + public String condition() { + return condition; + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + /** + * Return the sort {@link Order}. + * + * @return the {@link Order}, or {@code null} + */ + @Nullable + public Order order() { + return order; + } + + /** + * Return the {@link Page pagination}. + * + * @return the {@link Page}, or {@code null} + */ + @Nullable + public Page page() { + return page; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("select"); + if(keys != null) { + sb.append(" "); + sb.append(CclRenderer.keys(keys)); + } + if(records != null) { + if(keys != null) { + sb.append(" from "); + } + else { + sb.append(" "); + } + sb.append(CclRenderer.records(records)); + } + else { + sb.append(" where "); + CclRenderer.appendCondition(sb, criteria, condition); + } + CclRenderer.appendTimestamp(sb, timestamp); + CclRenderer.appendOrder(sb, order); + CclRenderer.appendPage(sb, page); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private SelectCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SetCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SetCommand.java new file mode 100644 index 000000000..d47c6c21a --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/SetCommand.java @@ -0,0 +1,225 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +/** + * A {@link Command} builder for {@code set} commands. + *

+ * {@code set} atomically clears all existing values for a key in a record and + * adds a new value. Unlike {@code add}, {@code set} always requires a target + * record. + *

+ * + *
+ * set <key> as <value> in <record>
+ * set <key> as <value> in [<records>]
+ * 
+ * + * @author Jeff Nelson + */ +public final class SetCommand { + + /** + * The state after specifying the key for the {@code set} command. + */ + public static final class KeyState { + + /** + * The key to set. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to set + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the value to set for this key. + * + * @param value the value to set + * @return the next builder state + */ + public ValueState as(Object value) { + return new ValueState(key, value); + } + + } + + /** + * The state after specifying the key and value for the {@code set} command. + * This is not a terminal state because {@code set} requires a + * target record. + */ + public static final class ValueState { + + /** + * The key to set. + */ + private final String key; + + /** + * The value to set. + */ + private final Object value; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + */ + ValueState(String key, Object value) { + this.key = key; + this.value = value; + } + + /** + * Set in the specified {@code record}. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return new RecordState(key, value, + CclRenderer.collectRecords(record)); + } + + /** + * Set in the specified {@code records}. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState in(long first, long... more) { + return new RecordState(key, value, + CclRenderer.collectRecords(first, more)); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + /** + * Alias for {@link #in(long, long...)} to support alternate CCL + * dialects. + * + * @param first the first record + * @param more additional records + * @return the next builder state + */ + public RecordState within(long first, long... more) { + return in(first, more); + } + + } + + /** + * The terminal state for a {@code set} command, reached after specifying + * the key, value, and target records. + */ + public static final class RecordState implements Command { + + /** + * The key to set. + */ + private final String key; + + /** + * The value to set. + */ + private final Object value; + + /** + * The target records. + */ + private final List records; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + * @param records the target records + */ + RecordState(String key, Object value, List records) { + this.key = key; + this.value = value; + this.records = records; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the value for this command. + * + * @return the value + */ + public Object value() { + return value; + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("set "); + sb.append(key); + sb.append(" as "); + sb.append(CclRenderer.value(value)); + sb.append(" in "); + sb.append(CclRenderer.records(records)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private SetCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/TraceCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/TraceCommand.java new file mode 100644 index 000000000..125a402cb --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/TraceCommand.java @@ -0,0 +1,115 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Collections; +import java.util.List; + +import javax.annotation.Nullable; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code trace} commands. + *

+ * {@code trace} returns the records that link to one or more specified records, + * optionally at a historical timestamp. + *

+ * + *
+ * trace <records> [at timestamp]
+ * 
+ * + * @author Jeff Nelson + */ +public final class TraceCommand { + + /** + * The terminal state for a {@code trace} command. This state is reached + * after specifying the records to trace and supports an optional {@code at} + * clause for historical inspection. + */ + public static final class State implements Command { + + /** + * The target records. + */ + private final List records; + + /** + * The optional historical {@link Timestamp}. + */ + @Nullable + private Timestamp timestamp; + + /** + * Construct a new instance. + * + * @param record the first record to trace + * @param moreRecords additional records + */ + State(long record, long... moreRecords) { + this.records = CclRenderer.collectRecords(record, moreRecords); + } + + /** + * Pin this command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return this state for further chaining + */ + public State at(Timestamp timestamp) { + this.timestamp = timestamp; + return this; + } + + /** + * Return the target records for this command. + * + * @return the records + */ + public List records() { + return Collections.unmodifiableList(records); + } + + /** + * Return the historical {@link Timestamp}. + * + * @return the {@link Timestamp}, or {@code null} + */ + @Nullable + public Timestamp timestamp() { + return timestamp; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("trace "); + sb.append(CclRenderer.records(records)); + CclRenderer.appendTimestamp(sb, timestamp); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private TraceCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/UnlinkCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/UnlinkCommand.java new file mode 100644 index 000000000..f533923fc --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/UnlinkCommand.java @@ -0,0 +1,184 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +/** + * A {@link Command} builder for {@code unlink} commands. + *

+ * {@code unlink} removes a directional relationship from a source record to a + * destination record on a given key. + *

+ * + *
+ * unlink <key> from <source> to <destination>
+ * 
+ * + * @author Jeff Nelson + */ +public final class UnlinkCommand { + + /** + * The state after specifying the key for the {@code unlink} command. + */ + public static final class KeyState { + + /** + * The link key. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the link key + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the source record from which the link originates. + * + * @param source the source record + * @return the next builder state + */ + public SourceState from(long source) { + return new SourceState(key, source); + } + + } + + /** + * The state after specifying the key and source record for the + * {@code unlink} command. + */ + public static final class SourceState { + + /** + * The link key. + */ + private final String key; + + /** + * The source record. + */ + private final long source; + + /** + * Construct a new instance. + * + * @param key the link key + * @param source the source record + */ + SourceState(String key, long source) { + this.key = key; + this.source = source; + } + + /** + * Specify the destination record for the unlink. + * + * @param destination the destination record + * @return the next builder state + */ + public DestinationState to(long destination) { + return new DestinationState(key, source, destination); + } + + } + + /** + * The terminal state for an {@code unlink} command, reached after + * specifying the key, source, and destination record. + */ + public static final class DestinationState implements Command { + + /** + * The link key. + */ + private final String key; + + /** + * The source record. + */ + private final long source; + + /** + * The destination record. + */ + private final long destination; + + /** + * Construct a new instance. + * + * @param key the link key + * @param source the source record + * @param destination the destination record + */ + DestinationState(String key, long source, long destination) { + this.key = key; + this.source = source; + this.destination = destination; + } + + /** + * Return the link key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the source record for this command. + * + * @return the source record + */ + public long source() { + return source; + } + + /** + * Return the destination record for this command. + * + * @return the destination record + */ + public long destination() { + return destination; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("unlink "); + sb.append(key); + sb.append(" from "); + sb.append(Long.toString(source)); + sb.append(" to "); + sb.append(Long.toString(destination)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private UnlinkCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyAndSwapCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyAndSwapCommand.java new file mode 100644 index 000000000..1fbdcc8eb --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyAndSwapCommand.java @@ -0,0 +1,259 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +/** + * A {@link Command} builder for {@code verifyAndSwap} commands. + *

+ * {@code verifyAndSwap} atomically checks that a key holds an expected value in + * a record and, if so, replaces it with a new value. + *

+ * + *
+ * verifyAndSwap <key> as <expected> in <record> with <replacement>
+ * 
+ * + * @author Jeff Nelson + */ +public final class VerifyAndSwapCommand { + + /** + * The state after specifying the key for the {@code verifyAndSwap} command. + */ + public static final class KeyState { + + /** + * The key to verify and swap. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to verify and swap + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the expected value for this key. + * + * @param expected the expected value + * @return the next builder state + */ + public ValueState as(Object expected) { + return new ValueState(key, expected); + } + + } + + /** + * The state after specifying the key and expected value for the + * {@code verifyAndSwap} command. + */ + public static final class ValueState { + + /** + * The key to verify and swap. + */ + private final String key; + + /** + * The expected value. + */ + private final Object expected; + + /** + * Construct a new instance. + * + * @param key the key + * @param expected the expected value + */ + ValueState(String key, Object expected) { + this.key = key; + this.expected = expected; + } + + /** + * Specify the record in which to verify and swap. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return new RecordState(key, expected, record); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + } + + /** + * The state after specifying the key, expected value, and record for the + * {@code verifyAndSwap} command. + */ + public static final class RecordState { + + /** + * The key to verify and swap. + */ + private final String key; + + /** + * The expected value. + */ + private final Object expected; + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param key the key + * @param expected the expected value + * @param record the target record + */ + RecordState(String key, Object expected, long record) { + this.key = key; + this.expected = expected; + this.record = record; + } + + /** + * Specify the replacement value to swap in. + * + * @param replacement the replacement value + * @return the next builder state + */ + public SwapState with(Object replacement) { + return new SwapState(key, expected, record, replacement); + } + + } + + /** + * The terminal state for a {@code verifyAndSwap} command, reached after + * specifying the key, expected value, record, and replacement value. + */ + public static final class SwapState implements Command { + + /** + * The key to verify and swap. + */ + private final String key; + + /** + * The expected value. + */ + private final Object expected; + + /** + * The target record. + */ + private final long record; + + /** + * The replacement value. + */ + private final Object replacement; + + /** + * Construct a new instance. + * + * @param key the key + * @param expected the expected value + * @param record the target record + * @param replacement the replacement value + */ + SwapState(String key, Object expected, long record, + Object replacement) { + this.key = key; + this.expected = expected; + this.record = record; + this.replacement = replacement; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the expected value for this command. + * + * @return the expected value + */ + public Object expected() { + return expected; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the replacement value for this command. + * + * @return the replacement value + */ + public Object replacement() { + return replacement; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("verifyAndSwap "); + sb.append(key); + sb.append(" as "); + sb.append(CclRenderer.value(expected)); + sb.append(" in "); + sb.append(Long.toString(record)); + sb.append(" with "); + sb.append(CclRenderer.value(replacement)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private VerifyAndSwapCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyCommand.java new file mode 100644 index 000000000..cfeeadef9 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyCommand.java @@ -0,0 +1,305 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import com.cinchapi.concourse.Timestamp; + +/** + * A {@link Command} builder for {@code verify} commands. + *

+ * {@code verify} checks whether a value is currently associated with a key in a + * record. + *

+ * + *
+ * verify <key> as <value> in <record>
+ * verify <key> as <value> in <record> at <timestamp>
+ * 
+ * + * @author Jeff Nelson + */ +public final class VerifyCommand { + + /** + * The state after specifying the key for the {@code verify} command. + */ + public static final class KeyState { + + /** + * The key to verify. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to verify + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the value to verify for this key. + * + * @param value the value to verify + * @return the next builder state + */ + public ValueState as(Object value) { + return new ValueState(key, value); + } + + } + + /** + * The state after specifying the key and value for the {@code verify} + * command. + */ + public static final class ValueState { + + /** + * The key to verify. + */ + private final String key; + + /** + * The value to verify. + */ + private final Object value; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + */ + ValueState(String key, Object value) { + this.key = key; + this.value = value; + } + + /** + * Specify the record in which to verify. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return new RecordState(key, value, record); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + } + + /** + * The terminal state for a {@code verify} command, reached after specifying + * the key, value, and record. Supports an optional {@code at} clause for + * historical verification. + */ + public static final class RecordState implements Command { + + /** + * The key to verify. + */ + private final String key; + + /** + * The value to verify. + */ + private final Object value; + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + * @param record the target record + */ + RecordState(String key, Object value, long record) { + this.key = key; + this.value = value; + this.record = record; + } + + /** + * Pin this {@code verify} command to a historical {@link Timestamp}. + * + * @param timestamp the {@link Timestamp} + * @return the next builder state + */ + public TimestampState at(Timestamp timestamp) { + return new TimestampState(key, value, record, timestamp); + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the value for this command. + * + * @return the value + */ + public Object value() { + return value; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("verify "); + sb.append(key); + sb.append(" as "); + sb.append(CclRenderer.value(value)); + sb.append(" in "); + sb.append(Long.toString(record)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + /** + * The terminal state for a {@code verify} command that includes a + * historical {@link Timestamp}. + */ + public static final class TimestampState implements Command { + + /** + * The key to verify. + */ + private final String key; + + /** + * The value to verify. + */ + private final Object value; + + /** + * The target record. + */ + private final long record; + + /** + * The historical {@link Timestamp}. + */ + private final Timestamp timestamp; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + * @param record the target record + * @param timestamp the {@link Timestamp} + */ + TimestampState(String key, Object value, long record, + Timestamp timestamp) { + this.key = key; + this.value = value; + this.record = record; + this.timestamp = timestamp; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the value for this command. + * + * @return the value + */ + public Object value() { + return value; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + /** + * Return the historical {@link Timestamp} for this command. + * + * @return the {@link Timestamp} + */ + public Timestamp timestamp() { + return timestamp; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("verify "); + sb.append(key); + sb.append(" as "); + sb.append(CclRenderer.value(value)); + sb.append(" in "); + sb.append(Long.toString(record)); + CclRenderer.appendTimestamp(sb, timestamp); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private VerifyCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyOrSetCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyOrSetCommand.java new file mode 100644 index 000000000..9f7f5ae55 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/VerifyOrSetCommand.java @@ -0,0 +1,194 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +/** + * A {@link Command} builder for {@code verifyOrSet} commands. + *

+ * {@code verifyOrSet} atomically checks whether a key holds a specific value in + * a record and, if not, sets the key to that value. + *

+ * + *
+ * verifyOrSet <key> as <value> in <record>
+ * 
+ * + * @author Jeff Nelson + */ +public final class VerifyOrSetCommand { + + /** + * The state after specifying the key for the {@code verifyOrSet} command. + */ + public static final class KeyState { + + /** + * The key to verify or set. + */ + private final String key; + + /** + * Construct a new instance. + * + * @param key the key to verify or set + */ + KeyState(String key) { + this.key = key; + } + + /** + * Specify the value to verify or set for this key. + * + * @param value the value + * @return the next builder state + */ + public ValueState as(Object value) { + return new ValueState(key, value); + } + + } + + /** + * The state after specifying the key and value for the {@code verifyOrSet} + * command. + */ + public static final class ValueState { + + /** + * The key to verify or set. + */ + private final String key; + + /** + * The value to verify or set. + */ + private final Object value; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + */ + ValueState(String key, Object value) { + this.key = key; + this.value = value; + } + + /** + * Specify the record in which to verify or set. + * + * @param record the target record + * @return the next builder state + */ + public RecordState in(long record) { + return new RecordState(key, value, record); + } + + /** + * Alias for {@link #in(long)} to support alternate CCL dialects. + * + * @param record the target record + * @return the next builder state + */ + public RecordState within(long record) { + return in(record); + } + + } + + /** + * The terminal state for a {@code verifyOrSet} command, reached after + * specifying the key, value, and record. + */ + public static final class RecordState implements Command { + + /** + * The key to verify or set. + */ + private final String key; + + /** + * The value to verify or set. + */ + private final Object value; + + /** + * The target record. + */ + private final long record; + + /** + * Construct a new instance. + * + * @param key the key + * @param value the value + * @param record the target record + */ + RecordState(String key, Object value, long record) { + this.key = key; + this.value = value; + this.record = record; + } + + /** + * Return the key for this command. + * + * @return the key + */ + public String key() { + return key; + } + + /** + * Return the value for this command. + * + * @return the value + */ + public Object value() { + return value; + } + + /** + * Return the target record for this command. + * + * @return the record + */ + public long record() { + return record; + } + + @Override + public String ccl() { + StringBuilder sb = new StringBuilder("verifyOrSet "); + sb.append(key); + sb.append(" as "); + sb.append(CclRenderer.value(value)); + sb.append(" in "); + sb.append(Long.toString(record)); + return sb.toString(); + } + + @Override + public String toString() { + return ccl(); + } + + } + + private VerifyOrSetCommand() {/* no-init */} + +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseCalculateService.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseCalculateService.java index d7b2ebb20..577b3fa28 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseCalculateService.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseCalculateService.java @@ -6,7 +6,7 @@ */ package com.cinchapi.concourse.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-13") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-15") @SuppressWarnings({ "unchecked", "rawtypes", "serial", "unused" }) public class ConcourseCalculateService { diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseNavigateService.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseNavigateService.java index 46d6c3b2a..9c6a603d5 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseNavigateService.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseNavigateService.java @@ -15,7 +15,7 @@ */ package com.cinchapi.concourse.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-13") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-15") @SuppressWarnings({ "unchecked", "rawtypes", "serial", "unused" }) public class ConcourseNavigateService { diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseService.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseService.java index 358818237..b203742d8 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseService.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/ConcourseService.java @@ -6,7 +6,7 @@ */ package com.cinchapi.concourse.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-13") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-15") @SuppressWarnings({ "unchecked", "rawtypes", "serial", "unused" }) public class ConcourseService { @@ -2285,6 +2285,14 @@ public interface Iface { public boolean consolidateRecords(java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.PermissionException, org.apache.thrift.TException; + public com.cinchapi.concourse.thrift.ComplexTObject exec(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException; + + public java.util.List submit(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException; + + public com.cinchapi.concourse.thrift.ComplexTObject execCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException; + + public java.util.List submitCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException; + public com.cinchapi.concourse.thrift.ComplexTObject invokeManagement(java.lang.String method, java.util.List params, com.cinchapi.concourse.thrift.AccessToken creds) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.ManagementException, org.apache.thrift.TException; public boolean ping(com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.PermissionException, org.apache.thrift.TException; @@ -2995,6 +3003,14 @@ public interface AsyncIface { public void consolidateRecords(java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; + public void exec(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; + + public void submit(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; + + public void execCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; + + public void submitCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; + public void invokeManagement(java.lang.String method, java.util.List params, com.cinchapi.concourse.thrift.AccessToken creds, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; public void ping(com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; @@ -16853,6 +16869,174 @@ public boolean recv_consolidateRecords() throws com.cinchapi.concourse.thrift.Se throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "consolidateRecords failed: unknown result"); } + @Override + public com.cinchapi.concourse.thrift.ComplexTObject exec(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException + { + send_exec(commands, creds, transaction, environment); + return recv_exec(); + } + + public void send_exec(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws org.apache.thrift.TException + { + exec_args args = new exec_args(); + args.setCommands(commands); + args.setCreds(creds); + args.setTransaction(transaction); + args.setEnvironment(environment); + sendBase("exec", args); + } + + public com.cinchapi.concourse.thrift.ComplexTObject recv_exec() throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException + { + exec_result result = new exec_result(); + receiveBase(result, "exec"); + if (result.isSetSuccess()) { + return result.success; + } + if (result.ex != null) { + throw result.ex; + } + if (result.ex2 != null) { + throw result.ex2; + } + if (result.ex3 != null) { + throw result.ex3; + } + if (result.ex4 != null) { + throw result.ex4; + } + if (result.ex5 != null) { + throw result.ex5; + } + throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "exec failed: unknown result"); + } + + @Override + public java.util.List submit(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException + { + send_submit(commands, creds, transaction, environment); + return recv_submit(); + } + + public void send_submit(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws org.apache.thrift.TException + { + submit_args args = new submit_args(); + args.setCommands(commands); + args.setCreds(creds); + args.setTransaction(transaction); + args.setEnvironment(environment); + sendBase("submit", args); + } + + public java.util.List recv_submit() throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException + { + submit_result result = new submit_result(); + receiveBase(result, "submit"); + if (result.isSetSuccess()) { + return result.success; + } + if (result.ex != null) { + throw result.ex; + } + if (result.ex2 != null) { + throw result.ex2; + } + if (result.ex3 != null) { + throw result.ex3; + } + if (result.ex4 != null) { + throw result.ex4; + } + if (result.ex5 != null) { + throw result.ex5; + } + throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "submit failed: unknown result"); + } + + @Override + public com.cinchapi.concourse.thrift.ComplexTObject execCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException + { + send_execCcl(ccl, creds, transaction, environment); + return recv_execCcl(); + } + + public void send_execCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws org.apache.thrift.TException + { + execCcl_args args = new execCcl_args(); + args.setCcl(ccl); + args.setCreds(creds); + args.setTransaction(transaction); + args.setEnvironment(environment); + sendBase("execCcl", args); + } + + public com.cinchapi.concourse.thrift.ComplexTObject recv_execCcl() throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException + { + execCcl_result result = new execCcl_result(); + receiveBase(result, "execCcl"); + if (result.isSetSuccess()) { + return result.success; + } + if (result.ex != null) { + throw result.ex; + } + if (result.ex2 != null) { + throw result.ex2; + } + if (result.ex3 != null) { + throw result.ex3; + } + if (result.ex4 != null) { + throw result.ex4; + } + if (result.ex5 != null) { + throw result.ex5; + } + throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "execCcl failed: unknown result"); + } + + @Override + public java.util.List submitCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException + { + send_submitCcl(ccl, creds, transaction, environment); + return recv_submitCcl(); + } + + public void send_submitCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) throws org.apache.thrift.TException + { + submitCcl_args args = new submitCcl_args(); + args.setCcl(ccl); + args.setCreds(creds); + args.setTransaction(transaction); + args.setEnvironment(environment); + sendBase("submitCcl", args); + } + + public java.util.List recv_submitCcl() throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException + { + submitCcl_result result = new submitCcl_result(); + receiveBase(result, "submitCcl"); + if (result.isSetSuccess()) { + return result.success; + } + if (result.ex != null) { + throw result.ex; + } + if (result.ex2 != null) { + throw result.ex2; + } + if (result.ex3 != null) { + throw result.ex3; + } + if (result.ex4 != null) { + throw result.ex4; + } + if (result.ex5 != null) { + throw result.ex5; + } + throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "submitCcl failed: unknown result"); + } + @Override public com.cinchapi.concourse.thrift.ComplexTObject invokeManagement(java.lang.String method, java.util.List params, com.cinchapi.concourse.thrift.AccessToken creds) throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.ManagementException, org.apache.thrift.TException { @@ -34533,6 +34717,182 @@ public java.lang.Boolean getResult() throws com.cinchapi.concourse.thrift.Securi } } + @Override + public void exec(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + checkReady(); + exec_call method_call = new exec_call(commands, creds, transaction, environment, resultHandler, this, ___protocolFactory, ___transport); + this.___currentMethod = method_call; + ___manager.call(method_call); + } + + public static class exec_call extends org.apache.thrift.async.TAsyncMethodCall { + private java.util.List commands; + private com.cinchapi.concourse.thrift.AccessToken creds; + private com.cinchapi.concourse.thrift.TransactionToken transaction; + private java.lang.String environment; + public exec_call(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, 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.commands = commands; + this.creds = creds; + this.transaction = transaction; + this.environment = environment; + } + + @Override + public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { + prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("exec", org.apache.thrift.protocol.TMessageType.CALL, 0)); + exec_args args = new exec_args(); + args.setCommands(commands); + args.setCreds(creds); + args.setTransaction(transaction); + args.setEnvironment(environment); + args.write(prot); + prot.writeMessageEnd(); + } + + @Override + public com.cinchapi.concourse.thrift.ComplexTObject getResult() throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException { + if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { + throw new java.lang.IllegalStateException("Method call not finished!"); + } + org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); + org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + return (new Client(prot)).recv_exec(); + } + } + + @Override + public void submit(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + checkReady(); + submit_call method_call = new submit_call(commands, creds, transaction, environment, resultHandler, this, ___protocolFactory, ___transport); + this.___currentMethod = method_call; + ___manager.call(method_call); + } + + public static class submit_call extends org.apache.thrift.async.TAsyncMethodCall> { + private java.util.List commands; + private com.cinchapi.concourse.thrift.AccessToken creds; + private com.cinchapi.concourse.thrift.TransactionToken transaction; + private java.lang.String environment; + public submit_call(java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, 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.commands = commands; + this.creds = creds; + this.transaction = transaction; + this.environment = environment; + } + + @Override + public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { + prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("submit", org.apache.thrift.protocol.TMessageType.CALL, 0)); + submit_args args = new submit_args(); + args.setCommands(commands); + args.setCreds(creds); + args.setTransaction(transaction); + args.setEnvironment(environment); + args.write(prot); + prot.writeMessageEnd(); + } + + @Override + public java.util.List getResult() throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException { + if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { + throw new java.lang.IllegalStateException("Method call not finished!"); + } + org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); + org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + return (new Client(prot)).recv_submit(); + } + } + + @Override + public void execCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + checkReady(); + execCcl_call method_call = new execCcl_call(ccl, creds, transaction, environment, resultHandler, this, ___protocolFactory, ___transport); + this.___currentMethod = method_call; + ___manager.call(method_call); + } + + public static class execCcl_call extends org.apache.thrift.async.TAsyncMethodCall { + private java.lang.String ccl; + private com.cinchapi.concourse.thrift.AccessToken creds; + private com.cinchapi.concourse.thrift.TransactionToken transaction; + private java.lang.String environment; + public execCcl_call(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, 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.ccl = ccl; + this.creds = creds; + this.transaction = transaction; + this.environment = environment; + } + + @Override + public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { + prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("execCcl", org.apache.thrift.protocol.TMessageType.CALL, 0)); + execCcl_args args = new execCcl_args(); + args.setCcl(ccl); + args.setCreds(creds); + args.setTransaction(transaction); + args.setEnvironment(environment); + args.write(prot); + prot.writeMessageEnd(); + } + + @Override + public com.cinchapi.concourse.thrift.ComplexTObject getResult() throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException { + if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { + throw new java.lang.IllegalStateException("Method call not finished!"); + } + org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); + org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + return (new Client(prot)).recv_execCcl(); + } + } + + @Override + public void submitCcl(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + checkReady(); + submitCcl_call method_call = new submitCcl_call(ccl, creds, transaction, environment, resultHandler, this, ___protocolFactory, ___transport); + this.___currentMethod = method_call; + ___manager.call(method_call); + } + + public static class submitCcl_call extends org.apache.thrift.async.TAsyncMethodCall> { + private java.lang.String ccl; + private com.cinchapi.concourse.thrift.AccessToken creds; + private com.cinchapi.concourse.thrift.TransactionToken transaction; + private java.lang.String environment; + public submitCcl_call(java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment, 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.ccl = ccl; + this.creds = creds; + this.transaction = transaction; + this.environment = environment; + } + + @Override + public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { + prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("submitCcl", org.apache.thrift.protocol.TMessageType.CALL, 0)); + submitCcl_args args = new submitCcl_args(); + args.setCcl(ccl); + args.setCreds(creds); + args.setTransaction(transaction); + args.setEnvironment(environment); + args.write(prot); + prot.writeMessageEnd(); + } + + @Override + public java.util.List getResult() throws com.cinchapi.concourse.thrift.SecurityException, com.cinchapi.concourse.thrift.TransactionException, com.cinchapi.concourse.thrift.InvalidArgumentException, com.cinchapi.concourse.thrift.PermissionException, com.cinchapi.concourse.thrift.ParseException, org.apache.thrift.TException { + if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { + throw new java.lang.IllegalStateException("Method call not finished!"); + } + org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); + org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + return (new Client(prot)).recv_submitCcl(); + } + } + @Override public void invokeManagement(java.lang.String method, java.util.List params, com.cinchapi.concourse.thrift.AccessToken creds, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); @@ -34979,6 +35339,10 @@ protected Processor(I iface, java.util.Map extends org.apache.thrift.ProcessFunction { + public exec() { + super("exec"); + } + + @Override + public exec_args getEmptyArgsInstance() { + return new exec_args(); + } + + @Override + protected boolean isOneway() { + return false; + } + + @Override + protected boolean rethrowUnhandledExceptions() { + return false; + } + + @Override + public exec_result getResult(I iface, exec_args args) throws org.apache.thrift.TException { + exec_result result = new exec_result(); + try { + result.success = iface.exec(args.commands, args.creds, args.transaction, args.environment); + } catch (com.cinchapi.concourse.thrift.SecurityException ex) { + result.ex = ex; + } catch (com.cinchapi.concourse.thrift.TransactionException ex2) { + result.ex2 = ex2; + } catch (com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + result.ex3 = ex3; + } catch (com.cinchapi.concourse.thrift.PermissionException ex4) { + result.ex4 = ex4; + } catch (com.cinchapi.concourse.thrift.ParseException ex5) { + result.ex5 = ex5; + } + return result; + } + } + + public static class submit extends org.apache.thrift.ProcessFunction { + public submit() { + super("submit"); + } + + @Override + public submit_args getEmptyArgsInstance() { + return new submit_args(); + } + + @Override + protected boolean isOneway() { + return false; + } + + @Override + protected boolean rethrowUnhandledExceptions() { + return false; + } + + @Override + public submit_result getResult(I iface, submit_args args) throws org.apache.thrift.TException { + submit_result result = new submit_result(); + try { + result.success = iface.submit(args.commands, args.creds, args.transaction, args.environment); + } catch (com.cinchapi.concourse.thrift.SecurityException ex) { + result.ex = ex; + } catch (com.cinchapi.concourse.thrift.TransactionException ex2) { + result.ex2 = ex2; + } catch (com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + result.ex3 = ex3; + } catch (com.cinchapi.concourse.thrift.PermissionException ex4) { + result.ex4 = ex4; + } catch (com.cinchapi.concourse.thrift.ParseException ex5) { + result.ex5 = ex5; + } + return result; + } + } + + public static class execCcl extends org.apache.thrift.ProcessFunction { + public execCcl() { + super("execCcl"); + } + + @Override + public execCcl_args getEmptyArgsInstance() { + return new execCcl_args(); + } + + @Override + protected boolean isOneway() { + return false; + } + + @Override + protected boolean rethrowUnhandledExceptions() { + return false; + } + + @Override + public execCcl_result getResult(I iface, execCcl_args args) throws org.apache.thrift.TException { + execCcl_result result = new execCcl_result(); + try { + result.success = iface.execCcl(args.ccl, args.creds, args.transaction, args.environment); + } catch (com.cinchapi.concourse.thrift.SecurityException ex) { + result.ex = ex; + } catch (com.cinchapi.concourse.thrift.TransactionException ex2) { + result.ex2 = ex2; + } catch (com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + result.ex3 = ex3; + } catch (com.cinchapi.concourse.thrift.PermissionException ex4) { + result.ex4 = ex4; + } catch (com.cinchapi.concourse.thrift.ParseException ex5) { + result.ex5 = ex5; + } + return result; + } + } + + public static class submitCcl extends org.apache.thrift.ProcessFunction { + public submitCcl() { + super("submitCcl"); + } + + @Override + public submitCcl_args getEmptyArgsInstance() { + return new submitCcl_args(); + } + + @Override + protected boolean isOneway() { + return false; + } + + @Override + protected boolean rethrowUnhandledExceptions() { + return false; + } + + @Override + public submitCcl_result getResult(I iface, submitCcl_args args) throws org.apache.thrift.TException { + submitCcl_result result = new submitCcl_result(); + try { + result.success = iface.submitCcl(args.ccl, args.creds, args.transaction, args.environment); + } catch (com.cinchapi.concourse.thrift.SecurityException ex) { + result.ex = ex; + } catch (com.cinchapi.concourse.thrift.TransactionException ex2) { + result.ex2 = ex2; + } catch (com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + result.ex3 = ex3; + } catch (com.cinchapi.concourse.thrift.PermissionException ex4) { + result.ex4 = ex4; + } catch (com.cinchapi.concourse.thrift.ParseException ex5) { + result.ex5 = ex5; + } + return result; + } + } + public static class invokeManagement extends org.apache.thrift.ProcessFunction { public invokeManagement() { super("invokeManagement"); @@ -48432,6 +48956,10 @@ protected AsyncProcessor(I iface, java.util.Map extends org.apache.thrift.AsyncProcessFunction { - public invokeManagement() { - super("invokeManagement"); + public static class exec extends org.apache.thrift.AsyncProcessFunction { + public exec() { + super("exec"); } @Override - public invokeManagement_args getEmptyArgsInstance() { - return new invokeManagement_args(); + public exec_args getEmptyArgsInstance() { + return new exec_args(); } @Override @@ -76903,7 +77431,7 @@ public org.apache.thrift.async.AsyncMethodCallback() { @Override public void onComplete(com.cinchapi.concourse.thrift.ComplexTObject o) { - invokeManagement_result result = new invokeManagement_result(); + exec_result result = new exec_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -76919,15 +77447,27 @@ public void onComplete(com.cinchapi.concourse.thrift.ComplexTObject o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - invokeManagement_result result = new invokeManagement_result(); + exec_result result = new exec_result(); if (e instanceof com.cinchapi.concourse.thrift.SecurityException) { result.ex = (com.cinchapi.concourse.thrift.SecurityException) e; result.setExIsSet(true); msg = result; - } else if (e instanceof com.cinchapi.concourse.thrift.ManagementException) { - result.ex2 = (com.cinchapi.concourse.thrift.ManagementException) e; + } else if (e instanceof com.cinchapi.concourse.thrift.TransactionException) { + result.ex2 = (com.cinchapi.concourse.thrift.TransactionException) e; result.setEx2IsSet(true); msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.InvalidArgumentException) { + result.ex3 = (com.cinchapi.concourse.thrift.InvalidArgumentException) e; + result.setEx3IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.PermissionException) { + result.ex4 = (com.cinchapi.concourse.thrift.PermissionException) e; + result.setEx4IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.ParseException) { + result.ex5 = (com.cinchapi.concourse.thrift.ParseException) e; + result.setEx5IsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -76957,30 +77497,29 @@ protected boolean isOneway() { } @Override - public void start(I iface, invokeManagement_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.invokeManagement(args.method, args.params, args.creds,resultHandler); + public void start(I iface, exec_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.exec(args.commands, args.creds, args.transaction, args.environment,resultHandler); } } - public static class ping extends org.apache.thrift.AsyncProcessFunction { - public ping() { - super("ping"); + public static class submit extends org.apache.thrift.AsyncProcessFunction> { + public submit() { + super("submit"); } @Override - public ping_args getEmptyArgsInstance() { - return new ping_args(); + public submit_args getEmptyArgsInstance() { + return new submit_args(); } @Override - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { + return new org.apache.thrift.async.AsyncMethodCallback>() { @Override - public void onComplete(java.lang.Boolean o) { - ping_result result = new ping_result(); + public void onComplete(java.util.List o) { + submit_result result = new submit_result(); result.success = o; - result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -76995,15 +77534,27 @@ public void onComplete(java.lang.Boolean o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - ping_result result = new ping_result(); + submit_result result = new submit_result(); if (e instanceof com.cinchapi.concourse.thrift.SecurityException) { result.ex = (com.cinchapi.concourse.thrift.SecurityException) e; result.setExIsSet(true); msg = result; - } else if (e instanceof com.cinchapi.concourse.thrift.PermissionException) { - result.ex2 = (com.cinchapi.concourse.thrift.PermissionException) e; + } else if (e instanceof com.cinchapi.concourse.thrift.TransactionException) { + result.ex2 = (com.cinchapi.concourse.thrift.TransactionException) e; result.setEx2IsSet(true); msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.InvalidArgumentException) { + result.ex3 = (com.cinchapi.concourse.thrift.InvalidArgumentException) e; + result.setEx3IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.PermissionException) { + result.ex4 = (com.cinchapi.concourse.thrift.PermissionException) e; + result.setEx4IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.ParseException) { + result.ex5 = (com.cinchapi.concourse.thrift.ParseException) e; + result.setEx5IsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -77033,624 +77584,357 @@ protected boolean isOneway() { } @Override - public void start(I iface, ping_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.ping(args.creds, args.transaction, args.environment,resultHandler); + public void start(I iface, submit_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.submit(args.commands, args.creds, args.transaction, args.environment,resultHandler); } } - } - - public static class abort_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("abort_args"); - - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); - - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new abort_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new abort_argsTupleSchemeFactory(); - - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required - public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CREDS((short)1, "creds"), - TRANSACTION((short)2, "transaction"), - ENVIRONMENT((short)3, "environment"); - - private static final java.util.Map byName = new java.util.LinkedHashMap(); - - static { - for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { - byName.put(field.getFieldName(), field); - } - } - - /** - * Find the _Fields constant that matches fieldId, or null if its not found. - */ - @org.apache.thrift.annotation.Nullable - public static _Fields findByThriftId(int fieldId) { - switch(fieldId) { - case 1: // CREDS - return CREDS; - case 2: // TRANSACTION - return TRANSACTION; - case 3: // ENVIRONMENT - return ENVIRONMENT; - 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); - return fields; - } - - /** - * Find the _Fields constant that matches name, or null if its not found. - */ - @org.apache.thrift.annotation.Nullable - public static _Fields findByName(java.lang.String name) { - return byName.get(name); - } - - private final short _thriftId; - private final java.lang.String _fieldName; - - _Fields(short thriftId, java.lang.String fieldName) { - _thriftId = thriftId; - _fieldName = fieldName; + public static class execCcl extends org.apache.thrift.AsyncProcessFunction { + public execCcl() { + super("execCcl"); } @Override - public short getThriftFieldId() { - return _thriftId; + public execCcl_args getEmptyArgsInstance() { + return new execCcl_args(); } @Override - public java.lang.String getFieldName() { - return _fieldName; - } - } - - // isset id assignments - public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; - static { - java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); - tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); - tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(abort_args.class, metaDataMap); - } - - public abort_args() { - } - - public abort_args( - com.cinchapi.concourse.thrift.AccessToken creds, - com.cinchapi.concourse.thrift.TransactionToken transaction, - java.lang.String environment) - { - this(); - this.creds = creds; - this.transaction = transaction; - this.environment = environment; - } - - /** - * Performs a deep copy on other. - */ - public abort_args(abort_args other) { - if (other.isSetCreds()) { - this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); - } - if (other.isSetTransaction()) { - this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); - } - if (other.isSetEnvironment()) { - this.environment = other.environment; - } - } - - @Override - public abort_args deepCopy() { - return new abort_args(this); - } - - @Override - public void clear() { - this.creds = null; - this.transaction = null; - this.environment = null; - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.AccessToken getCreds() { - return this.creds; - } - - public abort_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { - this.creds = creds; - return this; - } - - public void unsetCreds() { - this.creds = null; - } - - /** Returns true if field creds is set (has been assigned a value) and false otherwise */ - public boolean isSetCreds() { - return this.creds != null; - } - - public void setCredsIsSet(boolean value) { - if (!value) { - this.creds = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { - return this.transaction; - } - - public abort_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { - this.transaction = transaction; - return this; - } - - public void unsetTransaction() { - this.transaction = null; - } - - /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ - public boolean isSetTransaction() { - return this.transaction != null; - } - - public void setTransactionIsSet(boolean value) { - if (!value) { - this.transaction = null; + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + @Override + public void onComplete(com.cinchapi.concourse.thrift.ComplexTObject o) { + execCcl_result result = new execCcl_result(); + result.success = o; + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + @Override + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + execCcl_result result = new execCcl_result(); + if (e instanceof com.cinchapi.concourse.thrift.SecurityException) { + result.ex = (com.cinchapi.concourse.thrift.SecurityException) e; + result.setExIsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.TransactionException) { + result.ex2 = (com.cinchapi.concourse.thrift.TransactionException) e; + result.setEx2IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.InvalidArgumentException) { + result.ex3 = (com.cinchapi.concourse.thrift.InvalidArgumentException) e; + result.setEx3IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.PermissionException) { + result.ex4 = (com.cinchapi.concourse.thrift.PermissionException) e; + result.setEx4IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.ParseException) { + result.ex5 = (com.cinchapi.concourse.thrift.ParseException) e; + result.setEx5IsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; } - } - - @org.apache.thrift.annotation.Nullable - public java.lang.String getEnvironment() { - return this.environment; - } - public abort_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { - this.environment = environment; - return this; - } - - public void unsetEnvironment() { - this.environment = null; - } - - /** Returns true if field environment is set (has been assigned a value) and false otherwise */ - public boolean isSetEnvironment() { - return this.environment != null; - } - - public void setEnvironmentIsSet(boolean value) { - if (!value) { - this.environment = null; + @Override + protected boolean isOneway() { + return false; } - } - - @Override - public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { - switch (field) { - case CREDS: - if (value == null) { - unsetCreds(); - } else { - setCreds((com.cinchapi.concourse.thrift.AccessToken)value); - } - break; - - case TRANSACTION: - if (value == null) { - unsetTransaction(); - } else { - setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); - } - break; - - case ENVIRONMENT: - if (value == null) { - unsetEnvironment(); - } else { - setEnvironment((java.lang.String)value); - } - break; + @Override + public void start(I iface, execCcl_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.execCcl(args.ccl, args.creds, args.transaction, args.environment,resultHandler); } } - @org.apache.thrift.annotation.Nullable - @Override - public java.lang.Object getFieldValue(_Fields field) { - switch (field) { - case CREDS: - return getCreds(); - - case TRANSACTION: - return getTransaction(); - - case ENVIRONMENT: - return getEnvironment(); - + public static class submitCcl extends org.apache.thrift.AsyncProcessFunction> { + public submitCcl() { + super("submitCcl"); } - throw new java.lang.IllegalStateException(); - } - /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ - @Override - public boolean isSet(_Fields field) { - if (field == null) { - throw new java.lang.IllegalArgumentException(); + @Override + public submitCcl_args getEmptyArgsInstance() { + return new submitCcl_args(); } - switch (field) { - case CREDS: - return isSetCreds(); - case TRANSACTION: - return isSetTransaction(); - case ENVIRONMENT: - return isSetEnvironment(); + @Override + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override + public void onComplete(java.util.List o) { + submitCcl_result result = new submitCcl_result(); + result.success = o; + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + @Override + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + submitCcl_result result = new submitCcl_result(); + if (e instanceof com.cinchapi.concourse.thrift.SecurityException) { + result.ex = (com.cinchapi.concourse.thrift.SecurityException) e; + result.setExIsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.TransactionException) { + result.ex2 = (com.cinchapi.concourse.thrift.TransactionException) e; + result.setEx2IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.InvalidArgumentException) { + result.ex3 = (com.cinchapi.concourse.thrift.InvalidArgumentException) e; + result.setEx3IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.PermissionException) { + result.ex4 = (com.cinchapi.concourse.thrift.PermissionException) e; + result.setEx4IsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.ParseException) { + result.ex5 = (com.cinchapi.concourse.thrift.ParseException) e; + result.setEx5IsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; } - throw new java.lang.IllegalStateException(); - } - @Override - public boolean equals(java.lang.Object that) { - if (that instanceof abort_args) - return this.equals((abort_args)that); - return false; - } - - public boolean equals(abort_args that) { - if (that == null) + @Override + protected boolean isOneway() { return false; - if (this == that) - return true; - - boolean this_present_creds = true && this.isSetCreds(); - boolean that_present_creds = true && that.isSetCreds(); - if (this_present_creds || that_present_creds) { - if (!(this_present_creds && that_present_creds)) - return false; - if (!this.creds.equals(that.creds)) - return false; } - boolean this_present_transaction = true && this.isSetTransaction(); - boolean that_present_transaction = true && that.isSetTransaction(); - if (this_present_transaction || that_present_transaction) { - if (!(this_present_transaction && that_present_transaction)) - return false; - if (!this.transaction.equals(that.transaction)) - return false; - } - - boolean this_present_environment = true && this.isSetEnvironment(); - boolean that_present_environment = true && that.isSetEnvironment(); - if (this_present_environment || that_present_environment) { - if (!(this_present_environment && that_present_environment)) - return false; - if (!this.environment.equals(that.environment)) - return false; + @Override + public void start(I iface, submitCcl_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.submitCcl(args.ccl, args.creds, args.transaction, args.environment,resultHandler); } - - return true; } - @Override - public int hashCode() { - int hashCode = 1; - - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); - if (isSetCreds()) - hashCode = hashCode * 8191 + creds.hashCode(); - - hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); - if (isSetTransaction()) - hashCode = hashCode * 8191 + transaction.hashCode(); - - hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); - if (isSetEnvironment()) - hashCode = hashCode * 8191 + environment.hashCode(); - - return hashCode; - } - - @Override - public int compareTo(abort_args other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); + public static class invokeManagement extends org.apache.thrift.AsyncProcessFunction { + public invokeManagement() { + super("invokeManagement"); } - int lastComparison = 0; - - lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetCreds()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.creds, other.creds); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTransaction()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetEnvironment(), other.isSetEnvironment()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEnvironment()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.environment, other.environment); - if (lastComparison != 0) { - return lastComparison; - } + @Override + public invokeManagement_args getEmptyArgsInstance() { + return new invokeManagement_args(); } - return 0; - } - - @org.apache.thrift.annotation.Nullable - @Override - public _Fields fieldForId(int fieldId) { - return _Fields.findByThriftId(fieldId); - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { - scheme(iprot).read(iprot, this); - } - @Override - public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { - scheme(oprot).write(oprot, this); - } - - @Override - public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("abort_args("); - boolean first = true; - - sb.append("creds:"); - if (this.creds == null) { - sb.append("null"); - } else { - sb.append(this.creds); - } - first = false; - if (!first) sb.append(", "); - sb.append("transaction:"); - if (this.transaction == null) { - sb.append("null"); - } else { - sb.append(this.transaction); - } - first = false; - if (!first) sb.append(", "); - sb.append("environment:"); - if (this.environment == null) { - sb.append("null"); - } else { - sb.append(this.environment); + @Override + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + @Override + public void onComplete(com.cinchapi.concourse.thrift.ComplexTObject o) { + invokeManagement_result result = new invokeManagement_result(); + result.success = o; + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + @Override + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + invokeManagement_result result = new invokeManagement_result(); + if (e instanceof com.cinchapi.concourse.thrift.SecurityException) { + result.ex = (com.cinchapi.concourse.thrift.SecurityException) e; + result.setExIsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.ManagementException) { + result.ex2 = (com.cinchapi.concourse.thrift.ManagementException) e; + result.setEx2IsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; } - 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 (creds != null) { - creds.validate(); - } - if (transaction != null) { - transaction.validate(); + @Override + protected boolean isOneway() { + return false; } - } - 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); + @Override + public void start(I iface, invokeManagement_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.invokeManagement(args.method, args.params, args.creds,resultHandler); } } - private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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); + public static class ping extends org.apache.thrift.AsyncProcessFunction { + public ping() { + super("ping"); } - } - private static class abort_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public abort_argsStandardScheme getScheme() { - return new abort_argsStandardScheme(); + public ping_args getEmptyArgsInstance() { + return new ping_args(); } - } - - private static class abort_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, abort_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; + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + @Override + public void onComplete(java.lang.Boolean o) { + ping_result result = new ping_result(); + result.success = o; + result.setSuccessIsSet(true); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } } - switch (schemeField.id) { - case 1: // CREDS - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); - struct.creds.read(iprot); - struct.setCredsIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // TRANSACTION - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.transaction.read(iprot); - struct.setTransactionIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // ENVIRONMENT - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.environment = iprot.readString(); - struct.setEnvironmentIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - default: - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + @Override + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + ping_result result = new ping_result(); + if (e instanceof com.cinchapi.concourse.thrift.SecurityException) { + result.ex = (com.cinchapi.concourse.thrift.SecurityException) e; + result.setExIsSet(true); + msg = result; + } else if (e instanceof com.cinchapi.concourse.thrift.PermissionException) { + result.ex2 = (com.cinchapi.concourse.thrift.PermissionException) e; + result.setEx2IsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } } - iprot.readFieldEnd(); - } - iprot.readStructEnd(); - - // check for required fields of primitive type, which can't be checked in the validate method - struct.validate(); - } - - @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, abort_args struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.creds != null) { - oprot.writeFieldBegin(CREDS_FIELD_DESC); - struct.creds.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.transaction != null) { - oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); - struct.transaction.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.environment != null) { - oprot.writeFieldBegin(ENVIRONMENT_FIELD_DESC); - oprot.writeString(struct.environment); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); + }; } - } - - private static class abort_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public abort_argsTupleScheme getScheme() { - return new abort_argsTupleScheme(); - } - } - - private static class abort_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, abort_args struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCreds()) { - optionals.set(0); - } - if (struct.isSetTransaction()) { - optionals.set(1); - } - if (struct.isSetEnvironment()) { - optionals.set(2); - } - oprot.writeBitSet(optionals, 3); - if (struct.isSetCreds()) { - struct.creds.write(oprot); - } - if (struct.isSetTransaction()) { - struct.transaction.write(oprot); - } - if (struct.isSetEnvironment()) { - oprot.writeString(struct.environment); - } + protected boolean isOneway() { + return false; } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, abort_args struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); - if (incoming.get(0)) { - struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); - struct.creds.read(iprot); - struct.setCredsIsSet(true); - } - if (incoming.get(1)) { - struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.transaction.read(iprot); - struct.setTransactionIsSet(true); - } - if (incoming.get(2)) { - struct.environment = iprot.readString(); - struct.setEnvironmentIsSet(true); - } + public void start(I iface, ping_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.ping(args.creds, args.transaction, args.environment,resultHandler); } } - private static S scheme(org.apache.thrift.protocol.TProtocol proto) { - return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); - } } - public static class abort_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("abort_result"); + public static class abort_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("abort_args"); - 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 org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new abort_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new abort_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new abort_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new abort_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required + public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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"); + CREDS((short)1, "creds"), + TRANSACTION((short)2, "transaction"), + ENVIRONMENT((short)3, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -77666,8 +77950,12 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // EX - return EX; + case 1: // CREDS + return CREDS; + case 2: // TRANSACTION + return TRANSACTION; + case 3: // ENVIRONMENT + return ENVIRONMENT; default: return null; } @@ -77714,409 +78002,6 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); - metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(abort_result.class, metaDataMap); - } - - public abort_result() { - } - - public abort_result( - com.cinchapi.concourse.thrift.SecurityException ex) - { - this(); - this.ex = ex; - } - - /** - * Performs a deep copy on other. - */ - public abort_result(abort_result other) { - if (other.isSetEx()) { - this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); - } - } - - @Override - public abort_result deepCopy() { - return new abort_result(this); - } - - @Override - public void clear() { - this.ex = null; - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.SecurityException getEx() { - return this.ex; - } - - public abort_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException 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; - } - } - - @Override - public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { - switch (field) { - case EX: - if (value == null) { - unsetEx(); - } else { - setEx((com.cinchapi.concourse.thrift.SecurityException)value); - } - break; - - } - } - - @org.apache.thrift.annotation.Nullable - @Override - public java.lang.Object getFieldValue(_Fields field) { - switch (field) { - case EX: - return getEx(); - - } - throw new java.lang.IllegalStateException(); - } - - /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ - @Override - public boolean isSet(_Fields field) { - if (field == null) { - throw new java.lang.IllegalArgumentException(); - } - - switch (field) { - case EX: - return isSetEx(); - } - throw new java.lang.IllegalStateException(); - } - - @Override - public boolean equals(java.lang.Object that) { - if (that instanceof abort_result) - return this.equals((abort_result)that); - return false; - } - - public boolean equals(abort_result that) { - if (that == null) - return false; - if (this == that) - return true; - - 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() { - int hashCode = 1; - - hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); - if (isSetEx()) - hashCode = hashCode * 8191 + ex.hashCode(); - - return hashCode; - } - - @Override - public int compareTo(abort_result other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - - lastComparison = java.lang.Boolean.compare(isSetEx(), 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; - } - - @org.apache.thrift.annotation.Nullable - @Override - public _Fields fieldForId(int fieldId) { - return _Fields.findByThriftId(fieldId); - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { - scheme(iprot).read(iprot, this); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { - scheme(oprot).write(oprot, this); - } - - @Override - public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("abort_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, java.lang.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 abort_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - @Override - public abort_resultStandardScheme getScheme() { - return new abort_resultStandardScheme(); - } - } - - private static class abort_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - - @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, abort_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 com.cinchapi.concourse.thrift.SecurityException(); - 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(); - } - - @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, abort_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 abort_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - @Override - public abort_resultTupleScheme getScheme() { - return new abort_resultTupleScheme(); - } - } - - private static class abort_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, abort_result struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet optionals = new java.util.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, abort_result struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); - if (incoming.get(0)) { - struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); - struct.ex.read(iprot); - struct.setExIsSet(true); - } - } - } - - private static S scheme(org.apache.thrift.protocol.TProtocol proto) { - return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); - } - } - - public static class addKeyValue_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValue_args"); - - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValue_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValue_argsTupleSchemeFactory(); - - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required - public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - VALUE((short)2, "value"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); - - private static final java.util.Map byName = new java.util.LinkedHashMap(); - - static { - for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { - byName.put(field.getFieldName(), field); - } - } - - /** - * Find the _Fields constant that matches fieldId, or null if its not found. - */ - @org.apache.thrift.annotation.Nullable - public static _Fields findByThriftId(int fieldId) { - switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // VALUE - return VALUE; - case 3: // CREDS - return CREDS; - case 4: // TRANSACTION - return TRANSACTION; - case 5: // ENVIRONMENT - return ENVIRONMENT; - 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); - return fields; - } - - /** - * Find the _Fields constant that matches name, or null if its not found. - */ - @org.apache.thrift.annotation.Nullable - public static _Fields findByName(java.lang.String name) { - return byName.get(name); - } - - private final short _thriftId; - private final java.lang.String _fieldName; - - _Fields(short thriftId, java.lang.String fieldName) { - _thriftId = thriftId; - _fieldName = fieldName; - } - - @Override - public short getThriftFieldId() { - return _thriftId; - } - - @Override - public java.lang.String getFieldName() { - return _fieldName; - } - } - - // isset id assignments - public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; - static { - java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -78124,22 +78009,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValue_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(abort_args.class, metaDataMap); } - public addKeyValue_args() { + public abort_args() { } - public addKeyValue_args( - java.lang.String key, - com.cinchapi.concourse.thrift.TObject value, + public abort_args( com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.value = value; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -78148,13 +78029,7 @@ public addKeyValue_args( /** * Performs a deep copy on other. */ - public addKeyValue_args(addKeyValue_args other) { - if (other.isSetKey()) { - this.key = other.key; - } - if (other.isSetValue()) { - this.value = new com.cinchapi.concourse.thrift.TObject(other.value); - } + public abort_args(abort_args other) { if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -78167,75 +78042,23 @@ public addKeyValue_args(addKeyValue_args other) { } @Override - public addKeyValue_args deepCopy() { - return new addKeyValue_args(this); + public abort_args deepCopy() { + return new abort_args(this); } @Override public void clear() { - this.key = null; - this.value = null; this.creds = null; this.transaction = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; - } - - public addKeyValue_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; - return this; - } - - public void unsetKey() { - this.key = null; - } - - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; - } - - public void setKeyIsSet(boolean value) { - if (!value) { - this.key = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TObject getValue() { - return this.value; - } - - public addKeyValue_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { - this.value = value; - return this; - } - - public void unsetValue() { - this.value = null; - } - - /** Returns true if field value is set (has been assigned a value) and false otherwise */ - public boolean isSetValue() { - return this.value != null; - } - - public void setValueIsSet(boolean value) { - if (!value) { - this.value = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public addKeyValue_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public abort_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -78260,7 +78083,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public addKeyValue_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public abort_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -78285,7 +78108,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public addKeyValue_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public abort_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -78308,22 +78131,6 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: - if (value == null) { - unsetKey(); - } else { - setKey((java.lang.String)value); - } - break; - - case VALUE: - if (value == null) { - unsetValue(); - } else { - setValue((com.cinchapi.concourse.thrift.TObject)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -78355,12 +78162,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); - - case VALUE: - return getValue(); - case CREDS: return getCreds(); @@ -78382,10 +78183,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case VALUE: - return isSetValue(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -78398,35 +78195,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof addKeyValue_args) - return this.equals((addKeyValue_args)that); + if (that instanceof abort_args) + return this.equals((abort_args)that); return false; } - public boolean equals(addKeyValue_args that) { + public boolean equals(abort_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) - return false; - if (!this.key.equals(that.key)) - return false; - } - - boolean this_present_value = true && this.isSetValue(); - boolean that_present_value = true && that.isSetValue(); - if (this_present_value || that_present_value) { - if (!(this_present_value && that_present_value)) - return false; - if (!this.value.equals(that.value)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -78461,14 +78240,6 @@ public boolean equals(addKeyValue_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); - - hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); - if (isSetValue()) - hashCode = hashCode * 8191 + value.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -78485,33 +78256,13 @@ public int hashCode() { } @Override - public int compareTo(addKeyValue_args other) { + public int compareTo(abort_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetValue()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, other.value); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -78563,25 +78314,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValue_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("abort_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { - sb.append("null"); - } else { - sb.append(this.key); - } - first = false; - if (!first) sb.append(", "); - sb.append("value:"); - if (this.value == null) { - sb.append("null"); - } else { - sb.append(this.value); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -78612,9 +78347,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (value != null) { - value.validate(); - } if (creds != null) { creds.validate(); } @@ -78639,17 +78371,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class addKeyValue_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class abort_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValue_argsStandardScheme getScheme() { - return new addKeyValue_argsStandardScheme(); + public abort_argsStandardScheme getScheme() { + return new abort_argsStandardScheme(); } } - private static class addKeyValue_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class abort_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, abort_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -78659,24 +78391,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_args st break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // VALUE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.value = new com.cinchapi.concourse.thrift.TObject(); - struct.value.read(iprot); - struct.setValueIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 1: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -78685,7 +78400,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 2: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -78694,7 +78409,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 3: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -78714,20 +78429,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValue_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, abort_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); - oprot.writeFieldEnd(); - } - if (struct.value != null) { - oprot.writeFieldBegin(VALUE_FIELD_DESC); - struct.value.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -78749,41 +78454,29 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValue_args s } - private static class addKeyValue_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class abort_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValue_argsTupleScheme getScheme() { - return new addKeyValue_argsTupleScheme(); + public abort_argsTupleScheme getScheme() { + return new abort_argsTupleScheme(); } } - private static class addKeyValue_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class abort_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValue_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, abort_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { - optionals.set(0); - } - if (struct.isSetValue()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(0); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(1); } if (struct.isSetEnvironment()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); - } - if (struct.isSetValue()) { - struct.value.write(oprot); + optionals.set(2); } + oprot.writeBitSet(optionals, 3); if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -78796,29 +78489,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValue_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValue_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, abort_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } - if (incoming.get(1)) { - struct.value = new com.cinchapi.concourse.thrift.TObject(); - struct.value.read(iprot); - struct.setValueIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(1)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(2)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -78830,31 +78514,19 @@ private static S scheme(org.apache. } } - public static class addKeyValue_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValue_result"); + public static class abort_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("abort_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValue_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValue_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new abort_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new abort_resultTupleSchemeFactory(); - public long success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), - EX((short)1, "ex"), - EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX((short)1, "ex"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -78870,16 +78542,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // EX return EX; - case 2: // EX2 - return EX2; - case 3: // EX3 - return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -78923,100 +78587,42 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - 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.I64))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); - tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); - tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValue_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(abort_result.class, metaDataMap); } - public addKeyValue_result() { + public abort_result() { } - public addKeyValue_result( - long success, - com.cinchapi.concourse.thrift.SecurityException ex, - com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.InvalidArgumentException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + public abort_result( + com.cinchapi.concourse.thrift.SecurityException ex) { this(); - this.success = success; - setSuccessIsSet(true); this.ex = ex; - this.ex2 = ex2; - this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public addKeyValue_result(addKeyValue_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public abort_result(abort_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } - if (other.isSetEx2()) { - this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); - } - if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); - } } @Override - public addKeyValue_result deepCopy() { - return new addKeyValue_result(this); + public abort_result deepCopy() { + return new abort_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = 0; this.ex = null; - this.ex2 = null; - this.ex3 = null; - this.ex4 = null; - } - - public long getSuccess() { - return this.success; - } - - public addKeyValue_result setSuccess(long success) { - this.success = success; - setSuccessIsSet(true); - return this; - } - - public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -79024,7 +78630,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public addKeyValue_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public abort_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -79044,92 +78650,9 @@ public void setExIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionException getEx2() { - return this.ex2; - } - - public addKeyValue_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { - this.ex2 = ex2; - return this; - } - - public void unsetEx2() { - this.ex2 = null; - } - - /** Returns true if field ex2 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx2() { - return this.ex2 != null; - } - - public void setEx2IsSet(boolean value) { - if (!value) { - this.ex2 = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { - return this.ex3; - } - - public addKeyValue_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { - this.ex3 = ex3; - return this; - } - - public void unsetEx3() { - this.ex3 = null; - } - - /** Returns true if field ex3 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx3() { - return this.ex3 != null; - } - - public void setEx3IsSet(boolean value) { - if (!value) { - this.ex3 = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public addKeyValue_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.lang.Long)value); - } - break; - case EX: if (value == null) { unsetEx(); @@ -79138,30 +78661,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case EX2: - if (value == null) { - unsetEx2(); - } else { - setEx2((com.cinchapi.concourse.thrift.TransactionException)value); - } - break; - - case EX3: - if (value == null) { - unsetEx3(); - } else { - setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); - } - break; - } } @@ -79169,21 +78668,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return getSuccess(); - case EX: return getEx(); - case EX2: - return getEx2(); - - case EX3: - return getEx3(); - - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -79196,42 +78683,25 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case EX: return isSetEx(); - case EX2: - return isSetEx2(); - case EX3: - return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof addKeyValue_result) - return this.equals((addKeyValue_result)that); + if (that instanceof abort_result) + return this.equals((abort_result)that); return false; } - public boolean equals(addKeyValue_result that) { + public boolean equals(abort_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (this.success != that.success) - return false; - } - boolean this_present_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -79241,33 +78711,6 @@ public boolean equals(addKeyValue_result that) { return false; } - boolean this_present_ex2 = true && this.isSetEx2(); - boolean that_present_ex2 = true && that.isSetEx2(); - if (this_present_ex2 || that_present_ex2) { - if (!(this_present_ex2 && that_present_ex2)) - return false; - if (!this.ex2.equals(that.ex2)) - return false; - } - - boolean this_present_ex3 = true && this.isSetEx3(); - boolean that_present_ex3 = true && that.isSetEx3(); - if (this_present_ex3 || that_present_ex3) { - if (!(this_present_ex3 && that_present_ex3)) - return false; - if (!this.ex3.equals(that.ex3)) - return false; - } - - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -79275,45 +78718,21 @@ public boolean equals(addKeyValue_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); - hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx2()) ? 131071 : 524287); - if (isSetEx2()) - hashCode = hashCode * 8191 + ex2.hashCode(); - - hashCode = hashCode * 8191 + ((isSetEx3()) ? 131071 : 524287); - if (isSetEx3()) - hashCode = hashCode * 8191 + ex3.hashCode(); - - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(addKeyValue_result other) { + public int compareTo(abort_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -79324,36 +78743,6 @@ public int compareTo(addKeyValue_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx2(), other.isSetEx2()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx2()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex2, other.ex2); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetEx3(), other.isSetEx3()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx3()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex3, other.ex3); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -79374,13 +78763,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValue_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("abort_result("); boolean first = true; - sb.append("success:"); - sb.append(this.success); - first = false; - if (!first) sb.append(", "); sb.append("ex:"); if (this.ex == null) { sb.append("null"); @@ -79388,30 +78773,6 @@ public java.lang.String toString() { sb.append(this.ex); } first = false; - if (!first) sb.append(", "); - sb.append("ex2:"); - if (this.ex2 == null) { - sb.append("null"); - } else { - sb.append(this.ex2); - } - first = false; - if (!first) sb.append(", "); - sb.append("ex3:"); - if (this.ex3 == null) { - sb.append("null"); - } else { - sb.append(this.ex3); - } - first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -79431,25 +78792,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 addKeyValue_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class abort_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValue_resultStandardScheme getScheme() { - return new addKeyValue_resultStandardScheme(); + public abort_resultStandardScheme getScheme() { + return new abort_resultStandardScheme(); } } - private static class addKeyValue_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class abort_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, abort_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -79459,14 +78818,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_result break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.success = iprot.readI64(); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -79476,33 +78827,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_result org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // EX2 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); - struct.ex2.read(iprot); - struct.setEx2IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // EX3 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); - struct.ex3.read(iprot); - struct.setEx3IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -79515,115 +78839,52 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValue_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, abort_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeI64(struct.success); - oprot.writeFieldEnd(); - } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex2 != null) { - oprot.writeFieldBegin(EX2_FIELD_DESC); - struct.ex2.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.ex3 != null) { - oprot.writeFieldBegin(EX3_FIELD_DESC); - struct.ex3.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class addKeyValue_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class abort_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValue_resultTupleScheme getScheme() { - return new addKeyValue_resultTupleScheme(); + public abort_resultTupleScheme getScheme() { + return new abort_resultTupleScheme(); } } - private static class addKeyValue_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class abort_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValue_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, abort_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } if (struct.isSetEx()) { - optionals.set(1); - } - if (struct.isSetEx2()) { - optionals.set(2); - } - if (struct.isSetEx3()) { - optionals.set(3); - } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetSuccess()) { - oprot.writeI64(struct.success); + optionals.set(0); } + oprot.writeBitSet(optionals, 1); if (struct.isSetEx()) { struct.ex.write(oprot); } - if (struct.isSetEx2()) { - struct.ex2.write(oprot); - } - if (struct.isSetEx3()) { - struct.ex3.write(oprot); - } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValue_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, abort_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { - struct.success = iprot.readI64(); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(2)) { - struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); - struct.ex2.read(iprot); - struct.setEx2IsSet(true); - } - if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); - struct.ex3.read(iprot); - struct.setEx3IsSet(true); - } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -79632,22 +78893,20 @@ private static S scheme(org.apache. } } - public static class addKeyValueRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValueRecord_args"); + public static class addKeyValue_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValue_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValueRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValueRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValue_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValue_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required - public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -79656,10 +78915,9 @@ public static class addKeyValueRecord_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -79679,13 +78937,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // VALUE return VALUE; - case 3: // RECORD - return RECORD; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -79730,8 +78986,6 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -79739,8 +78993,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -79748,16 +79000,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValueRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValue_args.class, metaDataMap); } - public addKeyValueRecord_args() { + public addKeyValue_args() { } - public addKeyValueRecord_args( + public addKeyValue_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, - long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -79765,8 +79016,6 @@ public addKeyValueRecord_args( this(); this.key = key; this.value = value; - this.record = record; - setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -79775,15 +79024,13 @@ public addKeyValueRecord_args( /** * Performs a deep copy on other. */ - public addKeyValueRecord_args(addKeyValueRecord_args other) { - __isset_bitfield = other.__isset_bitfield; + public addKeyValue_args(addKeyValue_args other) { if (other.isSetKey()) { this.key = other.key; } if (other.isSetValue()) { this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } - this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -79796,16 +79043,14 @@ public addKeyValueRecord_args(addKeyValueRecord_args other) { } @Override - public addKeyValueRecord_args deepCopy() { - return new addKeyValueRecord_args(this); + public addKeyValue_args deepCopy() { + return new addKeyValue_args(this); } @Override public void clear() { this.key = null; this.value = null; - setRecordIsSet(false); - this.record = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -79816,7 +79061,7 @@ public java.lang.String getKey() { return this.key; } - public addKeyValueRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public addKeyValue_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -79841,7 +79086,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public addKeyValueRecord_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public addKeyValue_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -79861,35 +79106,12 @@ public void setValueIsSet(boolean value) { } } - public long getRecord() { - return this.record; - } - - public addKeyValueRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); - return this; - } - - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); - } - - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); - } - - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public addKeyValueRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public addKeyValue_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -79914,7 +79136,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public addKeyValueRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public addKeyValue_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -79939,7 +79161,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public addKeyValueRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public addKeyValue_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -79978,14 +79200,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORD: - if (value == null) { - unsetRecord(); - } else { - setRecord((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -80023,9 +79237,6 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUE: return getValue(); - case RECORD: - return getRecord(); - case CREDS: return getCreds(); @@ -80051,8 +79262,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case VALUE: return isSetValue(); - case RECORD: - return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -80065,12 +79274,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof addKeyValueRecord_args) - return this.equals((addKeyValueRecord_args)that); + if (that instanceof addKeyValue_args) + return this.equals((addKeyValue_args)that); return false; } - public boolean equals(addKeyValueRecord_args that) { + public boolean equals(addKeyValue_args that) { if (that == null) return false; if (this == that) @@ -80094,15 +79303,6 @@ public boolean equals(addKeyValueRecord_args that) { return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) - return false; - if (this.record != that.record) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -80145,8 +79345,6 @@ public int hashCode() { if (isSetValue()) hashCode = hashCode * 8191 + value.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -80163,7 +79361,7 @@ public int hashCode() { } @Override - public int compareTo(addKeyValueRecord_args other) { + public int compareTo(addKeyValue_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -80190,16 +79388,6 @@ public int compareTo(addKeyValueRecord_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -80251,7 +79439,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValueRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValue_args("); boolean first = true; sb.append("key:"); @@ -80270,10 +79458,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -80325,25 +79509,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 addKeyValueRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValue_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValueRecord_argsStandardScheme getScheme() { - return new addKeyValueRecord_argsStandardScheme(); + public addKeyValue_argsStandardScheme getScheme() { + return new addKeyValue_argsStandardScheme(); } } - private static class addKeyValueRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class addKeyValue_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -80370,15 +79552,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -80387,7 +79561,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -80396,7 +79570,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -80416,7 +79590,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValue_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -80430,9 +79604,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecord_ struct.value.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -80454,17 +79625,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecord_ } - private static class addKeyValueRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValue_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValueRecord_argsTupleScheme getScheme() { - return new addKeyValueRecord_argsTupleScheme(); + public addKeyValue_argsTupleScheme getScheme() { + return new addKeyValue_argsTupleScheme(); } } - private static class addKeyValueRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class addKeyValue_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValue_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -80473,28 +79644,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_a if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetRecord()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetValue()) { struct.value.write(oprot); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -80507,9 +79672,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValue_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -80520,20 +79685,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_ar struct.setValueIsSet(true); } if (incoming.get(2)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -80545,19 +79706,19 @@ private static S scheme(org.apache. } } - public static class addKeyValueRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValueRecord_result"); + public static class addKeyValue_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValue_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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValueRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValueRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValue_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValue_resultTupleSchemeFactory(); - public boolean success; // required + public long success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required @@ -80644,7 +79805,7 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -80654,14 +79815,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValueRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValue_result.class, metaDataMap); } - public addKeyValueRecord_result() { + public addKeyValue_result() { } - public addKeyValueRecord_result( - boolean success, + public addKeyValue_result( + long success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.InvalidArgumentException ex3, @@ -80679,7 +79840,7 @@ public addKeyValueRecord_result( /** * Performs a deep copy on other. */ - public addKeyValueRecord_result(addKeyValueRecord_result other) { + public addKeyValue_result(addKeyValue_result other) { __isset_bitfield = other.__isset_bitfield; this.success = other.success; if (other.isSetEx()) { @@ -80697,25 +79858,25 @@ public addKeyValueRecord_result(addKeyValueRecord_result other) { } @Override - public addKeyValueRecord_result deepCopy() { - return new addKeyValueRecord_result(this); + public addKeyValue_result deepCopy() { + return new addKeyValue_result(this); } @Override public void clear() { setSuccessIsSet(false); - this.success = false; + this.success = 0; this.ex = null; this.ex2 = null; this.ex3 = null; this.ex4 = null; } - public boolean isSuccess() { + public long getSuccess() { return this.success; } - public addKeyValueRecord_result setSuccess(boolean success) { + public addKeyValue_result setSuccess(long success) { this.success = success; setSuccessIsSet(true); return this; @@ -80739,7 +79900,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public addKeyValueRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public addKeyValue_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -80764,7 +79925,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public addKeyValueRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public addKeyValue_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -80789,7 +79950,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public addKeyValueRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public addKeyValue_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -80814,7 +79975,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public addKeyValueRecord_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public addKeyValue_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -80841,7 +80002,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.Boolean)value); + setSuccess((java.lang.Long)value); } break; @@ -80885,7 +80046,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return isSuccess(); + return getSuccess(); case EX: return getEx(); @@ -80927,12 +80088,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof addKeyValueRecord_result) - return this.equals((addKeyValueRecord_result)that); + if (that instanceof addKeyValue_result) + return this.equals((addKeyValue_result)that); return false; } - public boolean equals(addKeyValueRecord_result that) { + public boolean equals(addKeyValue_result that) { if (that == null) return false; if (this == that) @@ -80990,7 +80151,7 @@ public boolean equals(addKeyValueRecord_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -81012,7 +80173,7 @@ public int hashCode() { } @Override - public int compareTo(addKeyValueRecord_result other) { + public int compareTo(addKeyValue_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -81089,7 +80250,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValueRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValue_result("); boolean first = true; sb.append("success:"); @@ -81154,17 +80315,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class addKeyValueRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValue_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValueRecord_resultStandardScheme getScheme() { - return new addKeyValueRecord_resultStandardScheme(); + public addKeyValue_resultStandardScheme getScheme() { + return new addKeyValue_resultStandardScheme(); } } - private static class addKeyValueRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class addKeyValue_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValue_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -81175,8 +80336,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_r } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.success = iprot.readI64(); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -81230,13 +80391,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValue_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.isSetSuccess()) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); + oprot.writeI64(struct.success); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -81265,17 +80426,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecord_ } - private static class addKeyValueRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValue_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValueRecord_resultTupleScheme getScheme() { - return new addKeyValueRecord_resultTupleScheme(); + public addKeyValue_resultTupleScheme getScheme() { + return new addKeyValue_resultTupleScheme(); } } - private static class addKeyValueRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class addKeyValue_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValue_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -81295,7 +80456,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_r } oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + oprot.writeI64(struct.success); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -81312,11 +80473,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValue_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.success = iprot.readBool(); + struct.success = iprot.readI64(); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -81347,22 +80508,22 @@ private static S scheme(org.apache. } } - public static class addKeyValueRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValueRecords_args"); + public static class addKeyValueRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValueRecord_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)3); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValueRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValueRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValueRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValueRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -81371,7 +80532,7 @@ public static class addKeyValueRecords_args implements org.apache.thrift.TBase metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -81452,9 +80615,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -81462,16 +80624,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValueRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValueRecord_args.class, metaDataMap); } - public addKeyValueRecords_args() { + public addKeyValueRecord_args() { } - public addKeyValueRecords_args( + public addKeyValueRecord_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, - java.util.List records, + long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -81479,7 +80641,8 @@ public addKeyValueRecords_args( this(); this.key = key; this.value = value; - this.records = records; + this.record = record; + setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -81488,17 +80651,15 @@ public addKeyValueRecords_args( /** * Performs a deep copy on other. */ - public addKeyValueRecords_args(addKeyValueRecords_args other) { + public addKeyValueRecord_args(addKeyValueRecord_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } if (other.isSetValue()) { this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; - } + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -81511,15 +80672,16 @@ public addKeyValueRecords_args(addKeyValueRecords_args other) { } @Override - public addKeyValueRecords_args deepCopy() { - return new addKeyValueRecords_args(this); + public addKeyValueRecord_args deepCopy() { + return new addKeyValueRecord_args(this); } @Override public void clear() { this.key = null; this.value = null; - this.records = null; + setRecordIsSet(false); + this.record = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -81530,7 +80692,7 @@ public java.lang.String getKey() { return this.key; } - public addKeyValueRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public addKeyValueRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -81555,7 +80717,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public addKeyValueRecords_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public addKeyValueRecord_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -81575,45 +80737,27 @@ public void setValueIsSet(boolean value) { } } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public long getRecord() { + return this.record; } - public addKeyValueRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public addKeyValueRecord_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetRecords() { - this.records = null; + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -81621,7 +80765,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public addKeyValueRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public addKeyValueRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -81646,7 +80790,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public addKeyValueRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public addKeyValueRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -81671,7 +80815,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public addKeyValueRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public addKeyValueRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -81710,11 +80854,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); } break; @@ -81755,8 +80899,8 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUE: return getValue(); - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); case CREDS: return getCreds(); @@ -81783,8 +80927,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case VALUE: return isSetValue(); - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -81797,12 +80941,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof addKeyValueRecords_args) - return this.equals((addKeyValueRecords_args)that); + if (that instanceof addKeyValueRecord_args) + return this.equals((addKeyValueRecord_args)that); return false; } - public boolean equals(addKeyValueRecords_args that) { + public boolean equals(addKeyValueRecord_args that) { if (that == null) return false; if (this == that) @@ -81826,12 +80970,12 @@ public boolean equals(addKeyValueRecords_args that) { return false; } - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) return false; } @@ -81877,9 +81021,7 @@ public int hashCode() { if (isSetValue()) hashCode = hashCode * 8191 + value.hashCode(); - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -81897,7 +81039,7 @@ public int hashCode() { } @Override - public int compareTo(addKeyValueRecords_args other) { + public int compareTo(addKeyValueRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -81924,12 +81066,12 @@ public int compareTo(addKeyValueRecords_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } @@ -81985,7 +81127,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValueRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValueRecord_args("); boolean first = true; sb.append("key:"); @@ -82004,12 +81146,8 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } + sb.append("record:"); + sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -82063,23 +81201,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 addKeyValueRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValueRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValueRecords_argsStandardScheme getScheme() { - return new addKeyValueRecords_argsStandardScheme(); + public addKeyValueRecord_argsStandardScheme getScheme() { + return new addKeyValueRecord_argsStandardScheme(); } } - private static class addKeyValueRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class addKeyValueRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -82106,20 +81246,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecords_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list0 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list0.size); - long _elem1; - for (int _i2 = 0; _i2 < _list0.size; ++_i2) - { - _elem1 = iprot.readI64(); - struct.records.add(_elem1); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 3: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -82162,7 +81292,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecords_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -82176,18 +81306,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecords struct.value.write(oprot); oprot.writeFieldEnd(); } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter3 : struct.records) - { - oprot.writeI64(_iter3); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -82209,17 +81330,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecords } - private static class addKeyValueRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValueRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValueRecords_argsTupleScheme getScheme() { - return new addKeyValueRecords_argsTupleScheme(); + public addKeyValueRecord_argsTupleScheme getScheme() { + return new addKeyValueRecord_argsTupleScheme(); } } - private static class addKeyValueRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class addKeyValueRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -82228,7 +81349,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_ if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -82247,14 +81368,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_ if (struct.isSetValue()) { struct.value.write(oprot); } - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter4 : struct.records) - { - oprot.writeI64(_iter4); - } - } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -82268,7 +81383,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -82281,17 +81396,8 @@ public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_a struct.setValueIsSet(true); } if (incoming.get(2)) { - { - org.apache.thrift.protocol.TList _list5 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list5.size); - long _elem6; - for (int _i7 = 0; _i7 < _list5.size; ++_i7) - { - _elem6 = iprot.readI64(); - struct.records.add(_elem6); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -82315,19 +81421,19 @@ private static S scheme(org.apache. } } - public static class addKeyValueRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValueRecords_result"); + public static class addKeyValueRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValueRecord_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValueRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValueRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValueRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValueRecord_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map success; // required + public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required @@ -82408,13 +81514,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -82424,14 +81530,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValueRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValueRecord_result.class, metaDataMap); } - public addKeyValueRecords_result() { + public addKeyValueRecord_result() { } - public addKeyValueRecords_result( - java.util.Map success, + public addKeyValueRecord_result( + boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.InvalidArgumentException ex3, @@ -82439,6 +81545,7 @@ public addKeyValueRecords_result( { this(); this.success = success; + setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -82448,11 +81555,9 @@ public addKeyValueRecords_result( /** * Performs a deep copy on other. */ - public addKeyValueRecords_result(addKeyValueRecords_result other) { - if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.LinkedHashMap(other.success); - this.success = __this__success; - } + public addKeyValueRecord_result(addKeyValueRecord_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -82468,53 +81573,41 @@ public addKeyValueRecords_result(addKeyValueRecords_result other) { } @Override - public addKeyValueRecords_result deepCopy() { - return new addKeyValueRecords_result(this); + public addKeyValueRecord_result deepCopy() { + return new addKeyValueRecord_result(this); } @Override public void clear() { - this.success = null; + setSuccessIsSet(false); + this.success = false; this.ex = null; this.ex2 = null; this.ex3 = null; this.ex4 = null; } - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - public void putToSuccess(long key, boolean val) { - if (this.success == null) { - this.success = new java.util.LinkedHashMap(); - } - this.success.put(key, val); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { + public boolean isSuccess() { return this.success; } - public addKeyValueRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public addKeyValueRecord_result setSuccess(boolean success) { this.success = success; + setSuccessIsSet(true); return this; } public void unsetSuccess() { - this.success = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return this.success != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); } public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -82522,7 +81615,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public addKeyValueRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public addKeyValueRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -82547,7 +81640,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public addKeyValueRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public addKeyValueRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -82572,7 +81665,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public addKeyValueRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public addKeyValueRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -82597,7 +81690,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public addKeyValueRecords_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public addKeyValueRecord_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -82624,7 +81717,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map)value); + setSuccess((java.lang.Boolean)value); } break; @@ -82668,7 +81761,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return getSuccess(); + return isSuccess(); case EX: return getEx(); @@ -82710,23 +81803,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof addKeyValueRecords_result) - return this.equals((addKeyValueRecords_result)that); + if (that instanceof addKeyValueRecord_result) + return this.equals((addKeyValueRecord_result)that); return false; } - public boolean equals(addKeyValueRecords_result that) { + public boolean equals(addKeyValueRecord_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true && this.isSetSuccess(); - boolean that_present_success = true && that.isSetSuccess(); + boolean this_present_success = true; + boolean that_present_success = true; if (this_present_success || that_present_success) { if (!(this_present_success && that_present_success)) return false; - if (!this.success.equals(that.success)) + if (this.success != that.success) return false; } @@ -82773,9 +81866,7 @@ public boolean equals(addKeyValueRecords_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -82797,7 +81888,7 @@ public int hashCode() { } @Override - public int compareTo(addKeyValueRecords_result other) { + public int compareTo(addKeyValueRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -82874,15 +81965,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValueRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValueRecord_result("); boolean first = true; sb.append("success:"); - if (this.success == null) { - sb.append("null"); - } else { - sb.append(this.success); - } + sb.append(this.success); first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -82935,23 +82022,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 addKeyValueRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValueRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValueRecords_resultStandardScheme getScheme() { - return new addKeyValueRecords_resultStandardScheme(); + public addKeyValueRecord_resultStandardScheme getScheme() { + return new addKeyValueRecord_resultStandardScheme(); } } - private static class addKeyValueRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class addKeyValueRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -82962,20 +82051,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecords_ } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { - { - org.apache.thrift.protocol.TMap _map8 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map8.size); - long _key9; - boolean _val10; - for (int _i11 = 0; _i11 < _map8.size; ++_i11) - { - _key9 = iprot.readI64(); - _val10 = iprot.readBool(); - struct.success.put(_key9, _val10); - } - iprot.readMapEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -83029,21 +82106,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecords_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { + if (struct.isSetSuccess()) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); - for (java.util.Map.Entry _iter12 : struct.success.entrySet()) - { - oprot.writeI64(_iter12.getKey()); - oprot.writeBool(_iter12.getValue()); - } - oprot.writeMapEnd(); - } + oprot.writeBool(struct.success); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -83072,17 +82141,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecords } - private static class addKeyValueRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValueRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public addKeyValueRecords_resultTupleScheme getScheme() { - return new addKeyValueRecords_resultTupleScheme(); + public addKeyValueRecord_resultTupleScheme getScheme() { + return new addKeyValueRecord_resultTupleScheme(); } } - private static class addKeyValueRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class addKeyValueRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -83102,14 +82171,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_ } oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter13 : struct.success.entrySet()) - { - oprot.writeI64(_iter13.getKey()); - oprot.writeBool(_iter13.getValue()); - } - } + oprot.writeBool(struct.success); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -83126,22 +82188,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TMap _map14 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL); - struct.success = new java.util.LinkedHashMap(2*_map14.size); - long _key15; - boolean _val16; - for (int _i17 = 0; _i17 < _map14.size; ++_i17) - { - _key15 = iprot.readI64(); - _val16 = iprot.readBool(); - struct.success.put(_key15, _val16); - } - } + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -83172,28 +82223,34 @@ private static S scheme(org.apache. } } - public static class auditRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecord_args"); + public static class addKeyValueRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValueRecords_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValueRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValueRecords_argsTupleSchemeFactory(); - public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + KEY((short)1, "key"), + VALUE((short)2, "value"), + RECORDS((short)3, "records"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -83209,13 +82266,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; - case 2: // CREDS + case 1: // KEY + return KEY; + case 2: // VALUE + return VALUE; + case 3: // RECORDS + return RECORDS; + case 4: // CREDS return CREDS; - case 3: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -83260,13 +82321,16 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -83274,21 +82338,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValueRecords_args.class, metaDataMap); } - public auditRecord_args() { + public addKeyValueRecords_args() { } - public auditRecord_args( - long record, + public addKeyValueRecords_args( + java.lang.String key, + com.cinchapi.concourse.thrift.TObject value, + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); + this.key = key; + this.value = value; + this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -83297,9 +82364,17 @@ public auditRecord_args( /** * Performs a deep copy on other. */ - public auditRecord_args(auditRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - this.record = other.record; + public addKeyValueRecords_args(addKeyValueRecords_args other) { + if (other.isSetKey()) { + this.key = other.key; + } + if (other.isSetValue()) { + this.value = new com.cinchapi.concourse.thrift.TObject(other.value); + } + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -83312,40 +82387,109 @@ public auditRecord_args(auditRecord_args other) { } @Override - public auditRecord_args deepCopy() { - return new auditRecord_args(this); + public addKeyValueRecords_args deepCopy() { + return new addKeyValueRecords_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; + this.key = null; + this.value = null; + this.records = null; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.lang.String getKey() { + return this.key; } - public auditRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public addKeyValueRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetKey() { + this.key = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setKeyIsSet(boolean value) { + if (!value) { + this.key = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TObject getValue() { + return this.value; + } + + public addKeyValueRecords_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + this.value = value; + return this; + } + + public void unsetValue() { + this.value = null; + } + + /** Returns true if field value is set (has been assigned a value) and false otherwise */ + public boolean isSetValue() { + return this.value != null; + } + + public void setValueIsSet(boolean value) { + if (!value) { + this.value = null; + } + } + + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public addKeyValueRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; + return this; + } + + public void unsetRecords() { + this.records = null; + } + + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; + } + + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } @org.apache.thrift.annotation.Nullable @@ -83353,7 +82497,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public addKeyValueRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -83378,7 +82522,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public addKeyValueRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -83403,7 +82547,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public addKeyValueRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -83426,11 +82570,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: + case KEY: if (value == null) { - unsetRecord(); + unsetKey(); } else { - setRecord((java.lang.Long)value); + setKey((java.lang.String)value); + } + break; + + case VALUE: + if (value == null) { + unsetValue(); + } else { + setValue((com.cinchapi.concourse.thrift.TObject)value); + } + break; + + case RECORDS: + if (value == null) { + unsetRecords(); + } else { + setRecords((java.util.List)value); } break; @@ -83465,8 +82625,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); + case KEY: + return getKey(); + + case VALUE: + return getValue(); + + case RECORDS: + return getRecords(); case CREDS: return getCreds(); @@ -83489,8 +82655,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); + case KEY: + return isSetKey(); + case VALUE: + return isSetValue(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -83503,23 +82673,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecord_args) - return this.equals((auditRecord_args)that); + if (that instanceof addKeyValueRecords_args) + return this.equals((addKeyValueRecords_args)that); return false; } - public boolean equals(auditRecord_args that) { + public boolean equals(addKeyValueRecords_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (this.record != that.record) + if (!this.key.equals(that.key)) + return false; + } + + boolean this_present_value = true && this.isSetValue(); + boolean that_present_value = true && that.isSetValue(); + if (this_present_value || that_present_value) { + if (!(this_present_value && that_present_value)) + return false; + if (!this.value.equals(that.value)) + return false; + } + + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) + return false; + if (!this.records.equals(that.records)) return false; } @@ -83557,7 +82745,17 @@ public boolean equals(auditRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); + + hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); + if (isSetValue()) + hashCode = hashCode * 8191 + value.hashCode(); + + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -83575,19 +82773,39 @@ public int hashCode() { } @Override - public int compareTo(auditRecord_args other) { + public int compareTo(addKeyValueRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetValue()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, other.value); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -83643,11 +82861,31 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValueRecords_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); + sb.append("key:"); + if (this.key == null) { + sb.append("null"); + } else { + sb.append(this.key); + } + first = false; + if (!first) sb.append(", "); + sb.append("value:"); + if (this.value == null) { + sb.append("null"); + } else { + sb.append(this.value); + } + first = false; + if (!first) sb.append(", "); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -83680,6 +82918,9 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (value != null) { + value.validate(); + } if (creds != null) { creds.validate(); } @@ -83698,25 +82939,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 auditRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValueRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecord_argsStandardScheme getScheme() { - return new auditRecord_argsStandardScheme(); + public addKeyValueRecords_argsStandardScheme getScheme() { + return new addKeyValueRecords_argsStandardScheme(); } } - private static class auditRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class addKeyValueRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -83726,15 +82965,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_args st break; } switch (schemeField.id) { - case 1: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 2: // VALUE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.value = new com.cinchapi.concourse.thrift.TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list0 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list0.size); + long _elem1; + for (int _i2 = 0; _i2 < _list0.size; ++_i2) + { + _elem1 = iprot.readI64(); + struct.records.add(_elem1); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -83743,7 +83009,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -83752,7 +83018,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -83772,13 +83038,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); + oprot.writeFieldEnd(); + } + if (struct.value != null) { + oprot.writeFieldBegin(VALUE_FIELD_DESC); + struct.value.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter3 : struct.records) + { + oprot.writeI64(_iter3); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -83800,34 +83085,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecord_args s } - private static class auditRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValueRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecord_argsTupleScheme getScheme() { - return new auditRecord_argsTupleScheme(); + public addKeyValueRecords_argsTupleScheme getScheme() { + return new addKeyValueRecords_argsTupleScheme(); } } - private static class auditRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class addKeyValueRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetRecords()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetTransaction()) { + optionals.set(4); + } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetKey()) { + oprot.writeString(struct.key); + } + if (struct.isSetValue()) { + struct.value.write(oprot); + } + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter4 : struct.records) + { + oprot.writeI64(_iter4); + } + } } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -83841,24 +83144,42 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecord_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { + struct.value = new com.cinchapi.concourse.thrift.TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); + } + if (incoming.get(2)) { + { + org.apache.thrift.protocol.TList _list5 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list5.size); + long _elem6; + for (int _i7 = 0; _i7 < _list5.size; ++_i7) + { + _elem6 = iprot.readI64(); + struct.records.add(_elem6); + } + } + struct.setRecordsIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -83870,28 +83191,31 @@ private static S scheme(org.apache. } } - public static class auditRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecord_result"); + public static class addKeyValueRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addKeyValueRecords_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new addKeyValueRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new addKeyValueRecords_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -83915,6 +83239,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -83964,51 +83290,43 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addKeyValueRecords_result.class, metaDataMap); } - public auditRecord_result() { + public addKeyValueRecords_result() { } - public auditRecord_result( - java.util.Map> success, + public addKeyValueRecords_result( + java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public auditRecord_result(auditRecord_result other) { + public addKeyValueRecords_result(addKeyValueRecords_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.List other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.List __this__success_copy_value = new java.util.ArrayList(other_element_value); - - __this__success.put(__this__success_copy_key, __this__success_copy_value); - } + java.util.Map __this__success = new java.util.LinkedHashMap(other.success); this.success = __this__success; } if (other.isSetEx()) { @@ -84018,13 +83336,16 @@ public auditRecord_result(auditRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public auditRecord_result deepCopy() { - return new auditRecord_result(this); + public addKeyValueRecords_result deepCopy() { + return new addKeyValueRecords_result(this); } @Override @@ -84033,25 +83354,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.List val) { + public void putToSuccess(long key, boolean val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map getSuccess() { return this.success; } - public auditRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public addKeyValueRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -84076,7 +83398,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public addKeyValueRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -84101,7 +83423,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public addKeyValueRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -84122,11 +83444,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public auditRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public addKeyValueRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -84146,6 +83468,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public addKeyValueRecords_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -84153,7 +83500,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map)value); } break; @@ -84177,7 +83524,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -84200,6 +83555,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -84220,18 +83578,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecord_result) - return this.equals((auditRecord_result)that); + if (that instanceof addKeyValueRecords_result) + return this.equals((addKeyValueRecords_result)that); return false; } - public boolean equals(auditRecord_result that) { + public boolean equals(addKeyValueRecords_result that) { if (that == null) return false; if (this == that) @@ -84273,6 +83633,15 @@ public boolean equals(auditRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -84296,11 +83665,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(auditRecord_result other) { + public int compareTo(addKeyValueRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -84347,6 +83720,16 @@ public int compareTo(auditRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -84367,7 +83750,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("addKeyValueRecords_result("); boolean first = true; sb.append("success:"); @@ -84401,6 +83784,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -84426,17 +83817,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValueRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecord_resultStandardScheme getScheme() { - return new auditRecord_resultStandardScheme(); + public addKeyValueRecords_resultStandardScheme getScheme() { + return new addKeyValueRecords_resultStandardScheme(); } } - private static class auditRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class addKeyValueRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, addKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -84449,25 +83840,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map18 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map18.size); - long _key19; - @org.apache.thrift.annotation.Nullable java.util.List _val20; - for (int _i21 = 0; _i21 < _map18.size; ++_i21) + org.apache.thrift.protocol.TMap _map8 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map8.size); + long _key9; + boolean _val10; + for (int _i11 = 0; _i11 < _map8.size; ++_i11) { - _key19 = iprot.readI64(); - { - org.apache.thrift.protocol.TList _list22 = iprot.readListBegin(); - _val20 = new java.util.ArrayList(_list22.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem23; - for (int _i24 = 0; _i24 < _list22.size; ++_i24) - { - _elem23 = iprot.readString(); - _val20.add(_elem23); - } - iprot.readListEnd(); - } - struct.success.put(_key19, _val20); + _key9 = iprot.readI64(); + _val10 = iprot.readBool(); + struct.success.put(_key9, _val10); } iprot.readMapEnd(); } @@ -84496,13 +83877,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -84515,25 +83905,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, addKeyValueRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter25 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); + for (java.util.Map.Entry _iter12 : struct.success.entrySet()) { - oprot.writeI64(_iter25.getKey()); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter25.getValue().size())); - for (java.lang.String _iter26 : _iter25.getValue()) - { - oprot.writeString(_iter26); - } - oprot.writeListEnd(); - } + oprot.writeI64(_iter12.getKey()); + oprot.writeBool(_iter12.getValue()); } oprot.writeMapEnd(); } @@ -84554,23 +83937,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecord_result struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class auditRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class addKeyValueRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecord_resultTupleScheme getScheme() { - return new auditRecord_resultTupleScheme(); + public addKeyValueRecords_resultTupleScheme getScheme() { + return new addKeyValueRecords_resultTupleScheme(); } } - private static class auditRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class addKeyValueRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -84585,20 +83973,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecord_result if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter27 : struct.success.entrySet()) + for (java.util.Map.Entry _iter13 : struct.success.entrySet()) { - oprot.writeI64(_iter27.getKey()); - { - oprot.writeI32(_iter27.getValue().size()); - for (java.lang.String _iter28 : _iter27.getValue()) - { - oprot.writeString(_iter28); - } - } + oprot.writeI64(_iter13.getKey()); + oprot.writeBool(_iter13.getValue()); } } } @@ -84611,32 +83996,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecord_result if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, addKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map29 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map29.size); - long _key30; - @org.apache.thrift.annotation.Nullable java.util.List _val31; - for (int _i32 = 0; _i32 < _map29.size; ++_i32) + org.apache.thrift.protocol.TMap _map14 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL); + struct.success = new java.util.LinkedHashMap(2*_map14.size); + long _key15; + boolean _val16; + for (int _i17 = 0; _i17 < _map14.size; ++_i17) { - _key30 = iprot.readI64(); - { - org.apache.thrift.protocol.TList _list33 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val31 = new java.util.ArrayList(_list33.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem34; - for (int _i35 = 0; _i35 < _list33.size; ++_i35) - { - _elem34 = iprot.readString(); - _val31.add(_elem34); - } - } - struct.success.put(_key30, _val31); + _key15 = iprot.readI64(); + _val16 = iprot.readBool(); + struct.success.put(_key15, _val16); } } struct.setSuccessIsSet(true); @@ -84652,10 +84031,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditRecord_result s struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -84664,20 +84048,18 @@ private static S scheme(org.apache. } } - public static class auditRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStart_args"); + public static class auditRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecord_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStart_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStart_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecord_argsTupleSchemeFactory(); public long record; // required - public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -84685,10 +84067,9 @@ public static class auditRecordStart_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -84706,13 +84087,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // RECORD return RECORD; - case 2: // START - return START; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -84758,15 +84137,12 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -84774,15 +84150,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStart_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecord_args.class, metaDataMap); } - public auditRecordStart_args() { + public auditRecord_args() { } - public auditRecordStart_args( + public auditRecord_args( long record, - long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -84790,8 +84165,6 @@ public auditRecordStart_args( this(); this.record = record; setRecordIsSet(true); - this.start = start; - setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -84800,10 +84173,9 @@ public auditRecordStart_args( /** * Performs a deep copy on other. */ - public auditRecordStart_args(auditRecordStart_args other) { + public auditRecord_args(auditRecord_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -84816,16 +84188,14 @@ public auditRecordStart_args(auditRecordStart_args other) { } @Override - public auditRecordStart_args deepCopy() { - return new auditRecordStart_args(this); + public auditRecord_args deepCopy() { + return new auditRecord_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -84835,7 +84205,7 @@ public long getRecord() { return this.record; } - public auditRecordStart_args setRecord(long record) { + public auditRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -84854,35 +84224,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { - return this.start; - } - - public auditRecordStart_args setStart(long start) { - this.start = start; - setStartIsSet(true); - return this; - } - - public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); - } - - /** Returns true if field start is set (has been assigned a value) and false otherwise */ - public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); - } - - public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -84907,7 +84254,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -84932,7 +84279,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -84963,14 +84310,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case START: - if (value == null) { - unsetStart(); - } else { - setStart((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -85005,9 +84344,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case START: - return getStart(); - case CREDS: return getCreds(); @@ -85031,8 +84367,6 @@ public boolean isSet(_Fields field) { switch (field) { case RECORD: return isSetRecord(); - case START: - return isSetStart(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -85045,12 +84379,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecordStart_args) - return this.equals((auditRecordStart_args)that); + if (that instanceof auditRecord_args) + return this.equals((auditRecord_args)that); return false; } - public boolean equals(auditRecordStart_args that) { + public boolean equals(auditRecord_args that) { if (that == null) return false; if (this == that) @@ -85065,15 +84399,6 @@ public boolean equals(auditRecordStart_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; - if (this_present_start || that_present_start) { - if (!(this_present_start && that_present_start)) - return false; - if (this.start != that.start) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -85110,8 +84435,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -85128,7 +84451,7 @@ public int hashCode() { } @Override - public int compareTo(auditRecordStart_args other) { + public int compareTo(auditRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -85145,16 +84468,6 @@ public int compareTo(auditRecordStart_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetStart()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -85206,17 +84519,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStart_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecord_args("); boolean first = true; sb.append("record:"); sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -85273,17 +84582,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStart_argsStandardScheme getScheme() { - return new auditRecordStart_argsStandardScheme(); + public auditRecord_argsStandardScheme getScheme() { + return new auditRecord_argsStandardScheme(); } } - private static class auditRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -85301,15 +84610,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -85318,7 +84619,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -85327,7 +84628,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -85347,16 +84648,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -85378,41 +84676,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStart_a } - private static class auditRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStart_argsTupleScheme getScheme() { - return new auditRecordStart_argsTupleScheme(); + public auditRecord_argsTupleScheme getScheme() { + return new auditRecord_argsTupleScheme(); } } - private static class auditRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { optionals.set(0); } - if (struct.isSetStart()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -85425,28 +84717,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -85458,16 +84746,16 @@ private static S scheme(org.apache. } } - public static class auditRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStart_result"); + public static class auditRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecord_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStart_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStart_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -85561,13 +84849,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStart_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecord_result.class, metaDataMap); } - public auditRecordStart_result() { + public auditRecord_result() { } - public auditRecordStart_result( + public auditRecord_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -85583,7 +84871,7 @@ public auditRecordStart_result( /** * Performs a deep copy on other. */ - public auditRecordStart_result(auditRecordStart_result other) { + public auditRecord_result(auditRecord_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -85611,8 +84899,8 @@ public auditRecordStart_result(auditRecordStart_result other) { } @Override - public auditRecordStart_result deepCopy() { - return new auditRecordStart_result(this); + public auditRecord_result deepCopy() { + return new auditRecord_result(this); } @Override @@ -85639,7 +84927,7 @@ public java.util.Map> getSuccess return this.success; } - public auditRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -85664,7 +84952,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -85689,7 +84977,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -85714,7 +85002,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public auditRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public auditRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -85814,12 +85102,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecordStart_result) - return this.equals((auditRecordStart_result)that); + if (that instanceof auditRecord_result) + return this.equals((auditRecord_result)that); return false; } - public boolean equals(auditRecordStart_result that) { + public boolean equals(auditRecord_result that) { if (that == null) return false; if (this == that) @@ -85888,7 +85176,7 @@ public int hashCode() { } @Override - public int compareTo(auditRecordStart_result other) { + public int compareTo(auditRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -85955,7 +85243,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStart_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecord_result("); boolean first = true; sb.append("success:"); @@ -86014,17 +85302,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStart_resultStandardScheme getScheme() { - return new auditRecordStart_resultStandardScheme(); + public auditRecord_resultStandardScheme getScheme() { + return new auditRecord_resultStandardScheme(); } } - private static class auditRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -86037,25 +85325,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_re case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map36 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map36.size); - long _key37; - @org.apache.thrift.annotation.Nullable java.util.List _val38; - for (int _i39 = 0; _i39 < _map36.size; ++_i39) + org.apache.thrift.protocol.TMap _map18 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map18.size); + long _key19; + @org.apache.thrift.annotation.Nullable java.util.List _val20; + for (int _i21 = 0; _i21 < _map18.size; ++_i21) { - _key37 = iprot.readI64(); + _key19 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list40 = iprot.readListBegin(); - _val38 = new java.util.ArrayList(_list40.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem41; - for (int _i42 = 0; _i42 < _list40.size; ++_i42) + org.apache.thrift.protocol.TList _list22 = iprot.readListBegin(); + _val20 = new java.util.ArrayList(_list22.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem23; + for (int _i24 = 0; _i24 < _list22.size; ++_i24) { - _elem41 = iprot.readString(); - _val38.add(_elem41); + _elem23 = iprot.readString(); + _val20.add(_elem23); } iprot.readListEnd(); } - struct.success.put(_key37, _val38); + struct.success.put(_key19, _val20); } iprot.readMapEnd(); } @@ -86103,7 +85391,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -86111,14 +85399,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStart_r oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter43 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter25 : struct.success.entrySet()) { - oprot.writeI64(_iter43.getKey()); + oprot.writeI64(_iter25.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter43.getValue().size())); - for (java.lang.String _iter44 : _iter43.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter25.getValue().size())); + for (java.lang.String _iter26 : _iter25.getValue()) { - oprot.writeString(_iter44); + oprot.writeString(_iter26); } oprot.writeListEnd(); } @@ -86148,17 +85436,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStart_r } - private static class auditRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStart_resultTupleScheme getScheme() { - return new auditRecordStart_resultTupleScheme(); + public auditRecord_resultTupleScheme getScheme() { + return new auditRecord_resultTupleScheme(); } } - private static class auditRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -86177,14 +85465,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_re if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter45 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter27 : struct.success.entrySet()) { - oprot.writeI64(_iter45.getKey()); + oprot.writeI64(_iter27.getKey()); { - oprot.writeI32(_iter45.getValue().size()); - for (java.lang.String _iter46 : _iter45.getValue()) + oprot.writeI32(_iter27.getValue().size()); + for (java.lang.String _iter28 : _iter27.getValue()) { - oprot.writeString(_iter46); + oprot.writeString(_iter28); } } } @@ -86202,29 +85490,29 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map47 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map47.size); - long _key48; - @org.apache.thrift.annotation.Nullable java.util.List _val49; - for (int _i50 = 0; _i50 < _map47.size; ++_i50) + org.apache.thrift.protocol.TMap _map29 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map29.size); + long _key30; + @org.apache.thrift.annotation.Nullable java.util.List _val31; + for (int _i32 = 0; _i32 < _map29.size; ++_i32) { - _key48 = iprot.readI64(); + _key30 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list51 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val49 = new java.util.ArrayList(_list51.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem52; - for (int _i53 = 0; _i53 < _list51.size; ++_i53) + org.apache.thrift.protocol.TList _list33 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val31 = new java.util.ArrayList(_list33.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem34; + for (int _i35 = 0; _i35 < _list33.size; ++_i35) { - _elem52 = iprot.readString(); - _val49.add(_elem52); + _elem34 = iprot.readString(); + _val31.add(_elem34); } } - struct.success.put(_key48, _val49); + struct.success.put(_key30, _val31); } } struct.setSuccessIsSet(true); @@ -86252,20 +85540,20 @@ private static S scheme(org.apache. } } - public static class auditRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartstr_args"); + public static class auditRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStart_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStart_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStart_argsTupleSchemeFactory(); public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -86346,6 +85634,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -86353,7 +85642,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -86361,15 +85650,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStart_args.class, metaDataMap); } - public auditRecordStartstr_args() { + public auditRecordStart_args() { } - public auditRecordStartstr_args( + public auditRecordStart_args( long record, - java.lang.String start, + long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -86378,6 +85667,7 @@ public auditRecordStartstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -86386,12 +85676,10 @@ public auditRecordStartstr_args( /** * Performs a deep copy on other. */ - public auditRecordStartstr_args(auditRecordStartstr_args other) { + public auditRecordStart_args(auditRecordStart_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } + this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -86404,15 +85692,16 @@ public auditRecordStartstr_args(auditRecordStartstr_args other) { } @Override - public auditRecordStartstr_args deepCopy() { - return new auditRecordStartstr_args(this); + public auditRecordStart_args deepCopy() { + return new auditRecordStart_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - this.start = null; + setStartIsSet(false); + this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -86422,7 +85711,7 @@ public long getRecord() { return this.record; } - public auditRecordStartstr_args setRecord(long record) { + public auditRecordStart_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -86441,29 +85730,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public auditRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public auditRecordStart_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -86471,7 +85758,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -86496,7 +85783,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -86521,7 +85808,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -86556,7 +85843,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -86634,12 +85921,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecordStartstr_args) - return this.equals((auditRecordStartstr_args)that); + if (that instanceof auditRecordStart_args) + return this.equals((auditRecordStart_args)that); return false; } - public boolean equals(auditRecordStartstr_args that) { + public boolean equals(auditRecordStart_args that) { if (that == null) return false; if (this == that) @@ -86654,12 +85941,12 @@ public boolean equals(auditRecordStartstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } @@ -86699,9 +85986,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -86719,7 +86004,7 @@ public int hashCode() { } @Override - public int compareTo(auditRecordStartstr_args other) { + public int compareTo(auditRecordStart_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -86797,7 +86082,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStart_args("); boolean first = true; sb.append("record:"); @@ -86805,11 +86090,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -86868,17 +86149,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartstr_argsStandardScheme getScheme() { - return new auditRecordStartstr_argsStandardScheme(); + public auditRecordStart_argsStandardScheme getScheme() { + return new auditRecordStart_argsStandardScheme(); } } - private static class auditRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -86897,8 +86178,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -86942,18 +86223,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStart_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -86975,17 +86254,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartst } - private static class auditRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartstr_argsTupleScheme getScheme() { - return new auditRecordStartstr_argsTupleScheme(); + public auditRecordStart_argsTupleScheme getScheme() { + return new auditRecordStart_argsTupleScheme(); } } - private static class auditRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { @@ -87008,7 +86287,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -87022,7 +86301,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -87030,7 +86309,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_ struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(2)) { @@ -87055,31 +86334,28 @@ private static S scheme(org.apache. } } - public static class auditRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartstr_result"); + public static class auditRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStart_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStart_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStart_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -87103,8 +86379,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -87161,35 +86435,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStart_result.class, metaDataMap); } - public auditRecordStartstr_result() { + public auditRecordStart_result() { } - public auditRecordStartstr_result( + public auditRecordStart_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public auditRecordStartstr_result(auditRecordStartstr_result other) { + public auditRecordStart_result(auditRecordStart_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -87212,16 +86482,13 @@ public auditRecordStartstr_result(auditRecordStartstr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public auditRecordStartstr_result deepCopy() { - return new auditRecordStartstr_result(this); + public auditRecordStart_result deepCopy() { + return new auditRecordStart_result(this); } @Override @@ -87230,7 +86497,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -87249,7 +86515,7 @@ public java.util.Map> getSuccess return this.success; } - public auditRecordStartstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -87274,7 +86540,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -87299,7 +86565,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -87320,11 +86586,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public auditRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public auditRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -87344,31 +86610,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public auditRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -87400,15 +86641,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -87431,9 +86664,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -87454,20 +86684,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecordStartstr_result) - return this.equals((auditRecordStartstr_result)that); + if (that instanceof auditRecordStart_result) + return this.equals((auditRecordStart_result)that); return false; } - public boolean equals(auditRecordStartstr_result that) { + public boolean equals(auditRecordStart_result that) { if (that == null) return false; if (this == that) @@ -87509,15 +86737,6 @@ public boolean equals(auditRecordStartstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -87541,15 +86760,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(auditRecordStartstr_result other) { + public int compareTo(auditRecordStart_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -87596,16 +86811,6 @@ public int compareTo(auditRecordStartstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -87626,7 +86831,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStart_result("); boolean first = true; sb.append("success:"); @@ -87660,14 +86865,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -87693,17 +86890,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartstr_resultStandardScheme getScheme() { - return new auditRecordStartstr_resultStandardScheme(); + public auditRecordStart_resultStandardScheme getScheme() { + return new auditRecordStart_resultStandardScheme(); } } - private static class auditRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -87716,25 +86913,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map54 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map54.size); - long _key55; - @org.apache.thrift.annotation.Nullable java.util.List _val56; - for (int _i57 = 0; _i57 < _map54.size; ++_i57) + org.apache.thrift.protocol.TMap _map36 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map36.size); + long _key37; + @org.apache.thrift.annotation.Nullable java.util.List _val38; + for (int _i39 = 0; _i39 < _map36.size; ++_i39) { - _key55 = iprot.readI64(); + _key37 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list58 = iprot.readListBegin(); - _val56 = new java.util.ArrayList(_list58.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem59; - for (int _i60 = 0; _i60 < _list58.size; ++_i60) + org.apache.thrift.protocol.TList _list40 = iprot.readListBegin(); + _val38 = new java.util.ArrayList(_list40.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem41; + for (int _i42 = 0; _i42 < _list40.size; ++_i42) { - _elem59 = iprot.readString(); - _val56.add(_elem59); + _elem41 = iprot.readString(); + _val38.add(_elem41); } iprot.readListEnd(); } - struct.success.put(_key55, _val56); + struct.success.put(_key37, _val38); } iprot.readMapEnd(); } @@ -87763,22 +86960,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -87791,7 +86979,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStart_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -87799,14 +86987,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartst oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter61 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter43 : struct.success.entrySet()) { - oprot.writeI64(_iter61.getKey()); + oprot.writeI64(_iter43.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter61.getValue().size())); - for (java.lang.String _iter62 : _iter61.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter43.getValue().size())); + for (java.lang.String _iter44 : _iter43.getValue()) { - oprot.writeString(_iter62); + oprot.writeString(_iter44); } oprot.writeListEnd(); } @@ -87830,28 +87018,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartst struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class auditRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartstr_resultTupleScheme getScheme() { - return new auditRecordStartstr_resultTupleScheme(); + public auditRecordStart_resultTupleScheme getScheme() { + return new auditRecordStart_resultTupleScheme(); } } - private static class auditRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -87866,21 +87049,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter63 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter45 : struct.success.entrySet()) { - oprot.writeI64(_iter63.getKey()); + oprot.writeI64(_iter45.getKey()); { - oprot.writeI32(_iter63.getValue().size()); - for (java.lang.String _iter64 : _iter63.getValue()) + oprot.writeI32(_iter45.getValue().size()); + for (java.lang.String _iter46 : _iter45.getValue()) { - oprot.writeString(_iter64); + oprot.writeString(_iter46); } } } @@ -87895,35 +87075,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map65 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map65.size); - long _key66; - @org.apache.thrift.annotation.Nullable java.util.List _val67; - for (int _i68 = 0; _i68 < _map65.size; ++_i68) + org.apache.thrift.protocol.TMap _map47 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map47.size); + long _key48; + @org.apache.thrift.annotation.Nullable java.util.List _val49; + for (int _i50 = 0; _i50 < _map47.size; ++_i50) { - _key66 = iprot.readI64(); + _key48 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list69 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val67 = new java.util.ArrayList(_list69.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem70; - for (int _i71 = 0; _i71 < _list69.size; ++_i71) + org.apache.thrift.protocol.TList _list51 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val49 = new java.util.ArrayList(_list51.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem52; + for (int _i53 = 0; _i53 < _list51.size; ++_i53) { - _elem70 = iprot.readString(); - _val67.add(_elem70); + _elem52 = iprot.readString(); + _val49.add(_elem52); } } - struct.success.put(_key66, _val67); + struct.success.put(_key48, _val49); } } struct.setSuccessIsSet(true); @@ -87939,15 +87116,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_ struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -87956,22 +87128,20 @@ private static S scheme(org.apache. } } - public static class auditRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartEnd_args"); + public static class auditRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartstr_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartEnd_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartEnd_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartstr_argsTupleSchemeFactory(); public long record; // required - public long start; // required - public long tend; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -87980,10 +87150,9 @@ public static class auditRecordStartEnd_args implements org.apache.thrift.TBase< public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORD((short)1, "record"), START((short)2, "start"), - TEND((short)3, "tend"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -88003,13 +87172,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORD; case 2: // START return START; - case 3: // TEND - return TEND; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -88055,8 +87222,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; - private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -88064,9 +87229,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -88074,16 +87237,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartEnd_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartstr_args.class, metaDataMap); } - public auditRecordStartEnd_args() { + public auditRecordStartstr_args() { } - public auditRecordStartEnd_args( + public auditRecordStartstr_args( long record, - long start, - long tend, + java.lang.String start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -88092,9 +87254,6 @@ public auditRecordStartEnd_args( this.record = record; setRecordIsSet(true); this.start = start; - setStartIsSet(true); - this.tend = tend; - setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -88103,11 +87262,12 @@ public auditRecordStartEnd_args( /** * Performs a deep copy on other. */ - public auditRecordStartEnd_args(auditRecordStartEnd_args other) { + public auditRecordStartstr_args(auditRecordStartstr_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - this.start = other.start; - this.tend = other.tend; + if (other.isSetStart()) { + this.start = other.start; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -88120,18 +87280,15 @@ public auditRecordStartEnd_args(auditRecordStartEnd_args other) { } @Override - public auditRecordStartEnd_args deepCopy() { - return new auditRecordStartEnd_args(this); + public auditRecordStartstr_args deepCopy() { + return new auditRecordStartstr_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; - setTendIsSet(false); - this.tend = 0; + this.start = null; this.creds = null; this.transaction = null; this.environment = null; @@ -88141,7 +87298,7 @@ public long getRecord() { return this.record; } - public auditRecordStartEnd_args setRecord(long record) { + public auditRecordStartstr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -88160,50 +87317,29 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { return this.start; } - public auditRecordStartEnd_args setStart(long start) { + public auditRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { this.start = start; - setStartIsSet(true); return this; } public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + this.start = null; } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + return this.start != null; } public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - - public long getTend() { - return this.tend; - } - - public auditRecordStartEnd_args setTend(long tend) { - this.tend = tend; - setTendIsSet(true); - return this; - } - - public void unsetTend() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); - } - - /** Returns true if field tend is set (has been assigned a value) and false otherwise */ - public boolean isSetTend() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); - } - - public void setTendIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); + if (!value) { + this.start = null; + } } @org.apache.thrift.annotation.Nullable @@ -88211,7 +87347,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -88236,7 +87372,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -88261,7 +87397,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -88296,15 +87432,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.Long)value); - } - break; - - case TEND: - if (value == null) { - unsetTend(); - } else { - setTend((java.lang.Long)value); + setStart((java.lang.String)value); } break; @@ -88345,9 +87473,6 @@ public java.lang.Object getFieldValue(_Fields field) { case START: return getStart(); - case TEND: - return getTend(); - case CREDS: return getCreds(); @@ -88373,8 +87498,6 @@ public boolean isSet(_Fields field) { return isSetRecord(); case START: return isSetStart(); - case TEND: - return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -88387,12 +87510,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecordStartEnd_args) - return this.equals((auditRecordStartEnd_args)that); + if (that instanceof auditRecordStartstr_args) + return this.equals((auditRecordStartstr_args)that); return false; } - public boolean equals(auditRecordStartEnd_args that) { + public boolean equals(auditRecordStartstr_args that) { if (that == null) return false; if (this == that) @@ -88407,21 +87530,12 @@ public boolean equals(auditRecordStartEnd_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (this.start != that.start) - return false; - } - - boolean this_present_tend = true; - boolean that_present_tend = true; - if (this_present_tend || that_present_tend) { - if (!(this_present_tend && that_present_tend)) - return false; - if (this.tend != that.tend) + if (!this.start.equals(that.start)) return false; } @@ -88461,9 +87575,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -88481,7 +87595,7 @@ public int hashCode() { } @Override - public int compareTo(auditRecordStartEnd_args other) { + public int compareTo(auditRecordStartstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -88508,16 +87622,6 @@ public int compareTo(auditRecordStartEnd_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTend()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -88569,7 +87673,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartEnd_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartstr_args("); boolean first = true; sb.append("record:"); @@ -88577,11 +87681,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); - sb.append("tend:"); - sb.append(this.tend); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -88640,17 +87744,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartEnd_argsStandardScheme getScheme() { - return new auditRecordStartEnd_argsStandardScheme(); + public auditRecordStartstr_argsStandardScheme getScheme() { + return new auditRecordStartstr_argsStandardScheme(); } } - private static class auditRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -88669,22 +87773,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -88693,7 +87789,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -88702,7 +87798,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -88722,19 +87818,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeI64(struct.tend); - oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -88756,17 +87851,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartEn } - private static class auditRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartEnd_argsTupleScheme getScheme() { - return new auditRecordStartEnd_argsTupleScheme(); + public auditRecordStartstr_argsTupleScheme getScheme() { + return new auditRecordStartstr_argsTupleScheme(); } } - private static class auditRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { @@ -88775,27 +87870,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd if (struct.isSetStart()) { optionals.set(1); } - if (struct.isSetTend()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetRecord()) { oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } - if (struct.isSetTend()) { - oprot.writeI64(struct.tend); + oprot.writeString(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -88809,32 +87898,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readI64(); + struct.start = iprot.readString(); struct.setStartIsSet(true); } if (incoming.get(2)) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -88846,28 +87931,31 @@ private static S scheme(org.apache. } } - public static class auditRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartEnd_result"); + public static class auditRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartEnd_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartEnd_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartstr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -88891,6 +87979,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -88947,31 +88037,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartEnd_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartstr_result.class, metaDataMap); } - public auditRecordStartEnd_result() { + public auditRecordStartstr_result() { } - public auditRecordStartEnd_result( + public auditRecordStartstr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public auditRecordStartEnd_result(auditRecordStartEnd_result other) { + public auditRecordStartstr_result(auditRecordStartstr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -88994,13 +88088,16 @@ public auditRecordStartEnd_result(auditRecordStartEnd_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public auditRecordStartEnd_result deepCopy() { - return new auditRecordStartEnd_result(this); + public auditRecordStartstr_result deepCopy() { + return new auditRecordStartstr_result(this); } @Override @@ -89009,6 +88106,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -89027,7 +88125,7 @@ public java.util.Map> getSuccess return this.success; } - public auditRecordStartEnd_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditRecordStartstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -89052,7 +88150,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -89077,7 +88175,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -89098,11 +88196,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public auditRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public auditRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -89122,6 +88220,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public auditRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -89153,7 +88276,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -89176,6 +88307,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -89196,18 +88330,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecordStartEnd_result) - return this.equals((auditRecordStartEnd_result)that); + if (that instanceof auditRecordStartstr_result) + return this.equals((auditRecordStartstr_result)that); return false; } - public boolean equals(auditRecordStartEnd_result that) { + public boolean equals(auditRecordStartstr_result that) { if (that == null) return false; if (this == that) @@ -89249,6 +88385,15 @@ public boolean equals(auditRecordStartEnd_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -89272,11 +88417,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(auditRecordStartEnd_result other) { + public int compareTo(auditRecordStartstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -89323,6 +88472,16 @@ public int compareTo(auditRecordStartEnd_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -89343,7 +88502,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartEnd_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartstr_result("); boolean first = true; sb.append("success:"); @@ -89377,6 +88536,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -89402,17 +88569,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartEnd_resultStandardScheme getScheme() { - return new auditRecordStartEnd_resultStandardScheme(); + public auditRecordStartstr_resultStandardScheme getScheme() { + return new auditRecordStartstr_resultStandardScheme(); } } - private static class auditRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -89425,25 +88592,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map72 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map72.size); - long _key73; - @org.apache.thrift.annotation.Nullable java.util.List _val74; - for (int _i75 = 0; _i75 < _map72.size; ++_i75) + org.apache.thrift.protocol.TMap _map54 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map54.size); + long _key55; + @org.apache.thrift.annotation.Nullable java.util.List _val56; + for (int _i57 = 0; _i57 < _map54.size; ++_i57) { - _key73 = iprot.readI64(); + _key55 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list76 = iprot.readListBegin(); - _val74 = new java.util.ArrayList(_list76.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem77; - for (int _i78 = 0; _i78 < _list76.size; ++_i78) + org.apache.thrift.protocol.TList _list58 = iprot.readListBegin(); + _val56 = new java.util.ArrayList(_list58.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem59; + for (int _i60 = 0; _i60 < _list58.size; ++_i60) { - _elem77 = iprot.readString(); - _val74.add(_elem77); + _elem59 = iprot.readString(); + _val56.add(_elem59); } iprot.readListEnd(); } - struct.success.put(_key73, _val74); + struct.success.put(_key55, _val56); } iprot.readMapEnd(); } @@ -89472,13 +88639,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -89491,7 +88667,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -89499,14 +88675,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartEn oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter79 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter61 : struct.success.entrySet()) { - oprot.writeI64(_iter79.getKey()); + oprot.writeI64(_iter61.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter79.getValue().size())); - for (java.lang.String _iter80 : _iter79.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter61.getValue().size())); + for (java.lang.String _iter62 : _iter61.getValue()) { - oprot.writeString(_iter80); + oprot.writeString(_iter62); } oprot.writeListEnd(); } @@ -89530,23 +88706,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartEn struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class auditRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartEnd_resultTupleScheme getScheme() { - return new auditRecordStartEnd_resultTupleScheme(); + public auditRecordStartstr_resultTupleScheme getScheme() { + return new auditRecordStartstr_resultTupleScheme(); } } - private static class auditRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -89561,18 +88742,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter81 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter63 : struct.success.entrySet()) { - oprot.writeI64(_iter81.getKey()); + oprot.writeI64(_iter63.getKey()); { - oprot.writeI32(_iter81.getValue().size()); - for (java.lang.String _iter82 : _iter81.getValue()) + oprot.writeI32(_iter63.getValue().size()); + for (java.lang.String _iter64 : _iter63.getValue()) { - oprot.writeString(_iter82); + oprot.writeString(_iter64); } } } @@ -89587,32 +88771,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map83 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map83.size); - long _key84; - @org.apache.thrift.annotation.Nullable java.util.List _val85; - for (int _i86 = 0; _i86 < _map83.size; ++_i86) + org.apache.thrift.protocol.TMap _map65 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map65.size); + long _key66; + @org.apache.thrift.annotation.Nullable java.util.List _val67; + for (int _i68 = 0; _i68 < _map65.size; ++_i68) { - _key84 = iprot.readI64(); + _key66 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list87 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val85 = new java.util.ArrayList(_list87.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem88; - for (int _i89 = 0; _i89 < _list87.size; ++_i89) + org.apache.thrift.protocol.TList _list69 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val67 = new java.util.ArrayList(_list69.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem70; + for (int _i71 = 0; _i71 < _list69.size; ++_i71) { - _elem88 = iprot.readString(); - _val85.add(_elem88); + _elem70 = iprot.readString(); + _val67.add(_elem70); } } - struct.success.put(_key84, _val85); + struct.success.put(_key66, _val67); } } struct.setSuccessIsSet(true); @@ -89628,10 +88815,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_ struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -89640,22 +88832,22 @@ private static S scheme(org.apache. } } - public static class auditRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartstrEndstr_args"); + public static class auditRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartEnd_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartstrEndstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartstrEndstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartEnd_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartEnd_argsTupleSchemeFactory(); public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required - public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required + public long start; // required + public long tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -89739,6 +88931,8 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; + private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -89746,9 +88940,9 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -89756,16 +88950,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartstrEndstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartEnd_args.class, metaDataMap); } - public auditRecordStartstrEndstr_args() { + public auditRecordStartEnd_args() { } - public auditRecordStartstrEndstr_args( + public auditRecordStartEnd_args( long record, - java.lang.String start, - java.lang.String tend, + long start, + long tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -89774,7 +88968,9 @@ public auditRecordStartstrEndstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.tend = tend; + setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -89783,15 +88979,11 @@ public auditRecordStartstrEndstr_args( /** * Performs a deep copy on other. */ - public auditRecordStartstrEndstr_args(auditRecordStartstrEndstr_args other) { + public auditRecordStartEnd_args(auditRecordStartEnd_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } - if (other.isSetTend()) { - this.tend = other.tend; - } + this.start = other.start; + this.tend = other.tend; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -89804,16 +88996,18 @@ public auditRecordStartstrEndstr_args(auditRecordStartstrEndstr_args other) { } @Override - public auditRecordStartstrEndstr_args deepCopy() { - return new auditRecordStartstrEndstr_args(this); + public auditRecordStartEnd_args deepCopy() { + return new auditRecordStartEnd_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - this.start = null; - this.tend = null; + setStartIsSet(false); + this.start = 0; + setTendIsSet(false); + this.tend = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -89823,7 +89017,7 @@ public long getRecord() { return this.record; } - public auditRecordStartstrEndstr_args setRecord(long record) { + public auditRecordStartEnd_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -89842,54 +89036,50 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public auditRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public auditRecordStartEnd_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTend() { + public long getTend() { return this.tend; } - public auditRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + public auditRecordStartEnd_args setTend(long tend) { this.tend = tend; + setTendIsSet(true); return this; } public void unsetTend() { - this.tend = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); } /** Returns true if field tend is set (has been assigned a value) and false otherwise */ public boolean isSetTend() { - return this.tend != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); } public void setTendIsSet(boolean value) { - if (!value) { - this.tend = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -89897,7 +89087,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -89922,7 +89112,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -89947,7 +89137,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -89982,7 +89172,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -89990,7 +89180,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTend(); } else { - setTend((java.lang.String)value); + setTend((java.lang.Long)value); } break; @@ -90073,12 +89263,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecordStartstrEndstr_args) - return this.equals((auditRecordStartstrEndstr_args)that); + if (that instanceof auditRecordStartEnd_args) + return this.equals((auditRecordStartEnd_args)that); return false; } - public boolean equals(auditRecordStartstrEndstr_args that) { + public boolean equals(auditRecordStartEnd_args that) { if (that == null) return false; if (this == that) @@ -90093,21 +89283,21 @@ public boolean equals(auditRecordStartstrEndstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } - boolean this_present_tend = true && this.isSetTend(); - boolean that_present_tend = true && that.isSetTend(); + boolean this_present_tend = true; + boolean that_present_tend = true; if (this_present_tend || that_present_tend) { if (!(this_present_tend && that_present_tend)) return false; - if (!this.tend.equals(that.tend)) + if (this.tend != that.tend) return false; } @@ -90147,13 +89337,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); - if (isSetTend()) - hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -90171,7 +89357,7 @@ public int hashCode() { } @Override - public int compareTo(auditRecordStartstrEndstr_args other) { + public int compareTo(auditRecordStartEnd_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -90259,7 +89445,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartstrEndstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartEnd_args("); boolean first = true; sb.append("record:"); @@ -90267,19 +89453,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("tend:"); - if (this.tend == null) { - sb.append("null"); - } else { - sb.append(this.tend); - } + sb.append(this.tend); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -90338,17 +89516,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartstrEndstr_argsStandardScheme getScheme() { - return new auditRecordStartstrEndstr_argsStandardScheme(); + public auditRecordStartEnd_argsStandardScheme getScheme() { + return new auditRecordStartEnd_argsStandardScheme(); } } - private static class auditRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -90367,16 +89545,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tend = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -90420,23 +89598,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartEnd_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } - if (struct.tend != null) { - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeString(struct.tend); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeI64(struct.tend); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -90458,17 +89632,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartst } - private static class auditRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartstrEndstr_argsTupleScheme getScheme() { - return new auditRecordStartstrEndstr_argsTupleScheme(); + public auditRecordStartEnd_argsTupleScheme getScheme() { + return new auditRecordStartEnd_argsTupleScheme(); } } - private static class auditRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { @@ -90494,10 +89668,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetTend()) { - oprot.writeString(struct.tend); + oprot.writeI64(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -90511,7 +89685,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -90519,11 +89693,11 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrE struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(2)) { - struct.tend = iprot.readString(); + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } if (incoming.get(3)) { @@ -90548,31 +89722,28 @@ private static S scheme(org.apache. } } - public static class auditRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartstrEndstr_result"); + public static class auditRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartEnd_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartstrEndstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartstrEndstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartEnd_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartEnd_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -90596,8 +89767,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -90654,35 +89823,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartstrEndstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartEnd_result.class, metaDataMap); } - public auditRecordStartstrEndstr_result() { + public auditRecordStartEnd_result() { } - public auditRecordStartstrEndstr_result( + public auditRecordStartEnd_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public auditRecordStartstrEndstr_result(auditRecordStartstrEndstr_result other) { + public auditRecordStartEnd_result(auditRecordStartEnd_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -90705,16 +89870,13 @@ public auditRecordStartstrEndstr_result(auditRecordStartstrEndstr_result other) this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public auditRecordStartstrEndstr_result deepCopy() { - return new auditRecordStartstrEndstr_result(this); + public auditRecordStartEnd_result deepCopy() { + return new auditRecordStartEnd_result(this); } @Override @@ -90723,7 +89885,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -90742,7 +89903,7 @@ public java.util.Map> getSuccess return this.success; } - public auditRecordStartstrEndstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditRecordStartEnd_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -90767,7 +89928,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -90792,7 +89953,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -90813,11 +89974,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public auditRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public auditRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -90837,31 +89998,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public auditRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -90893,15 +90029,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -90924,9 +90052,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -90947,20 +90072,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditRecordStartstrEndstr_result) - return this.equals((auditRecordStartstrEndstr_result)that); + if (that instanceof auditRecordStartEnd_result) + return this.equals((auditRecordStartEnd_result)that); return false; } - public boolean equals(auditRecordStartstrEndstr_result that) { + public boolean equals(auditRecordStartEnd_result that) { if (that == null) return false; if (this == that) @@ -91002,15 +90125,6 @@ public boolean equals(auditRecordStartstrEndstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -91034,15 +90148,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(auditRecordStartstrEndstr_result other) { + public int compareTo(auditRecordStartEnd_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -91089,16 +90199,6 @@ public int compareTo(auditRecordStartstrEndstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -91119,7 +90219,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartstrEndstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartEnd_result("); boolean first = true; sb.append("success:"); @@ -91153,14 +90253,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -91186,17 +90278,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartstrEndstr_resultStandardScheme getScheme() { - return new auditRecordStartstrEndstr_resultStandardScheme(); + public auditRecordStartEnd_resultStandardScheme getScheme() { + return new auditRecordStartEnd_resultStandardScheme(); } } - private static class auditRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -91209,25 +90301,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map90 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map90.size); - long _key91; - @org.apache.thrift.annotation.Nullable java.util.List _val92; - for (int _i93 = 0; _i93 < _map90.size; ++_i93) + org.apache.thrift.protocol.TMap _map72 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map72.size); + long _key73; + @org.apache.thrift.annotation.Nullable java.util.List _val74; + for (int _i75 = 0; _i75 < _map72.size; ++_i75) { - _key91 = iprot.readI64(); + _key73 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list94 = iprot.readListBegin(); - _val92 = new java.util.ArrayList(_list94.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem95; - for (int _i96 = 0; _i96 < _list94.size; ++_i96) + org.apache.thrift.protocol.TList _list76 = iprot.readListBegin(); + _val74 = new java.util.ArrayList(_list76.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem77; + for (int _i78 = 0; _i78 < _list76.size; ++_i78) { - _elem95 = iprot.readString(); - _val92.add(_elem95); + _elem77 = iprot.readString(); + _val74.add(_elem77); } iprot.readListEnd(); } - struct.success.put(_key91, _val92); + struct.success.put(_key73, _val74); } iprot.readMapEnd(); } @@ -91256,22 +90348,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -91284,7 +90367,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartEnd_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -91292,14 +90375,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartst oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter97 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter79 : struct.success.entrySet()) { - oprot.writeI64(_iter97.getKey()); + oprot.writeI64(_iter79.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter97.getValue().size())); - for (java.lang.String _iter98 : _iter97.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter79.getValue().size())); + for (java.lang.String _iter80 : _iter79.getValue()) { - oprot.writeString(_iter98); + oprot.writeString(_iter80); } oprot.writeListEnd(); } @@ -91323,28 +90406,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartst struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class auditRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditRecordStartstrEndstr_resultTupleScheme getScheme() { - return new auditRecordStartstrEndstr_resultTupleScheme(); + public auditRecordStartEnd_resultTupleScheme getScheme() { + return new auditRecordStartEnd_resultTupleScheme(); } } - private static class auditRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -91359,21 +90437,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter99 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter81 : struct.success.entrySet()) { - oprot.writeI64(_iter99.getKey()); + oprot.writeI64(_iter81.getKey()); { - oprot.writeI32(_iter99.getValue().size()); - for (java.lang.String _iter100 : _iter99.getValue()) + oprot.writeI32(_iter81.getValue().size()); + for (java.lang.String _iter82 : _iter81.getValue()) { - oprot.writeString(_iter100); + oprot.writeString(_iter82); } } } @@ -91388,35 +90463,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstr if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map101 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map101.size); - long _key102; - @org.apache.thrift.annotation.Nullable java.util.List _val103; - for (int _i104 = 0; _i104 < _map101.size; ++_i104) + org.apache.thrift.protocol.TMap _map83 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map83.size); + long _key84; + @org.apache.thrift.annotation.Nullable java.util.List _val85; + for (int _i86 = 0; _i86 < _map83.size; ++_i86) { - _key102 = iprot.readI64(); + _key84 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list105 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val103 = new java.util.ArrayList(_list105.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem106; - for (int _i107 = 0; _i107 < _list105.size; ++_i107) + org.apache.thrift.protocol.TList _list87 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val85 = new java.util.ArrayList(_list87.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem88; + for (int _i89 = 0; _i89 < _list87.size; ++_i89) { - _elem106 = iprot.readString(); - _val103.add(_elem106); + _elem88 = iprot.readString(); + _val85.add(_elem88); } } - struct.success.put(_key102, _val103); + struct.success.put(_key84, _val85); } } struct.setSuccessIsSet(true); @@ -91432,15 +90504,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrE struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -91449,31 +90516,34 @@ private static S scheme(org.apache. } } - public static class auditKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecord_args"); + public static class auditRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartstrEndstr_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartstrEndstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartstrEndstr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - RECORD((short)2, "record"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + RECORD((short)1, "record"), + START((short)2, "start"), + TEND((short)3, "tend"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -91489,15 +90559,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // RECORD + case 1: // RECORD return RECORD; - case 3: // CREDS + case 2: // START + return START; + case 3: // TEND + return TEND; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -91547,10 +90619,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -91558,23 +90632,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartstrEndstr_args.class, metaDataMap); } - public auditKeyRecord_args() { + public auditRecordStartstrEndstr_args() { } - public auditKeyRecord_args( - java.lang.String key, + public auditRecordStartstrEndstr_args( long record, + java.lang.String start, + java.lang.String tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; this.record = record; setRecordIsSet(true); + this.start = start; + this.tend = tend; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -91583,12 +90659,15 @@ public auditKeyRecord_args( /** * Performs a deep copy on other. */ - public auditKeyRecord_args(auditKeyRecord_args other) { + public auditRecordStartstrEndstr_args(auditRecordStartstrEndstr_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; - } this.record = other.record; + if (other.isSetStart()) { + this.start = other.start; + } + if (other.isSetTend()) { + this.tend = other.tend; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -91601,66 +90680,92 @@ public auditKeyRecord_args(auditKeyRecord_args other) { } @Override - public auditKeyRecord_args deepCopy() { - return new auditKeyRecord_args(this); + public auditRecordStartstrEndstr_args deepCopy() { + return new auditRecordStartstrEndstr_args(this); } @Override public void clear() { - this.key = null; setRecordIsSet(false); this.record = 0; + this.start = null; + this.tend = null; this.creds = null; this.transaction = null; this.environment = null; } + public long getRecord() { + return this.record; + } + + public auditRecordStartstrEndstr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.lang.String getStart() { + return this.start; } - public auditKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public auditRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + this.start = start; return this; } - public void unsetKey() { - this.key = null; + public void unsetStart() { + this.start = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field start is set (has been assigned a value) and false otherwise */ + public boolean isSetStart() { + return this.start != null; } - public void setKeyIsSet(boolean value) { + public void setStartIsSet(boolean value) { if (!value) { - this.key = null; + this.start = null; } } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.lang.String getTend() { + return this.tend; } - public auditKeyRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public auditRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + this.tend = tend; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetTend() { + this.tend = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field tend is set (has been assigned a value) and false otherwise */ + public boolean isSetTend() { + return this.tend != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setTendIsSet(boolean value) { + if (!value) { + this.tend = null; + } } @org.apache.thrift.annotation.Nullable @@ -91668,7 +90773,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -91693,7 +90798,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -91718,7 +90823,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -91741,19 +90846,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case RECORD: if (value == null) { - unsetKey(); + unsetRecord(); } else { - setKey((java.lang.String)value); + setRecord((java.lang.Long)value); } break; - case RECORD: + case START: if (value == null) { - unsetRecord(); + unsetStart(); } else { - setRecord((java.lang.Long)value); + setStart((java.lang.String)value); + } + break; + + case TEND: + if (value == null) { + unsetTend(); + } else { + setTend((java.lang.String)value); } break; @@ -91788,12 +90901,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); - case RECORD: return getRecord(); + case START: + return getStart(); + + case TEND: + return getTend(); + case CREDS: return getCreds(); @@ -91815,10 +90931,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); case RECORD: return isSetRecord(); + case START: + return isSetStart(); + case TEND: + return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -91831,26 +90949,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecord_args) - return this.equals((auditKeyRecord_args)that); + if (that instanceof auditRecordStartstrEndstr_args) + return this.equals((auditRecordStartstrEndstr_args)that); return false; } - public boolean equals(auditKeyRecord_args that) { + public boolean equals(auditRecordStartstrEndstr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) - return false; - if (!this.key.equals(that.key)) - return false; - } - boolean this_present_record = true; boolean that_present_record = true; if (this_present_record || that_present_record) { @@ -91860,6 +90969,24 @@ public boolean equals(auditKeyRecord_args that) { return false; } + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); + if (this_present_start || that_present_start) { + if (!(this_present_start && that_present_start)) + return false; + if (!this.start.equals(that.start)) + return false; + } + + boolean this_present_tend = true && this.isSetTend(); + boolean that_present_tend = true && that.isSetTend(); + if (this_present_tend || that_present_tend) { + if (!(this_present_tend && that_present_tend)) + return false; + if (!this.tend.equals(that.tend)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -91894,12 +91021,16 @@ public boolean equals(auditKeyRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); + if (isSetTend()) + hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -91916,29 +91047,39 @@ public int hashCode() { } @Override - public int compareTo(auditKeyRecord_args other) { + public int compareTo(auditRecordStartstrEndstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetStart()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTend()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); if (lastComparison != 0) { return lastComparison; } @@ -91994,19 +91135,27 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartstrEndstr_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("start:"); + if (this.start == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.start); } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("tend:"); + if (this.tend == null) { + sb.append("null"); + } else { + sb.append(this.tend); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -92065,17 +91214,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecord_argsStandardScheme getScheme() { - return new auditKeyRecord_argsStandardScheme(); + public auditRecordStartstrEndstr_argsStandardScheme getScheme() { + return new auditRecordStartstrEndstr_argsStandardScheme(); } } - private static class auditKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -92085,23 +91234,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_args break; } switch (schemeField.id) { - case 1: // KEY + case 1: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // START if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.start = iprot.readString(); + struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 3: // TEND + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -92110,7 +91267,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -92119,7 +91276,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -92139,18 +91296,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); - oprot.writeFieldEnd(); - } oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } + if (struct.tend != null) { + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeString(struct.tend); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -92172,41 +91334,47 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecord_arg } - private static class auditKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecord_argsTupleScheme getScheme() { - return new auditKeyRecord_argsTupleScheme(); + public auditRecordStartstrEndstr_argsTupleScheme getScheme() { + return new auditRecordStartstrEndstr_argsTupleScheme(); } } - private static class auditKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetRecord()) { optionals.set(0); } - if (struct.isSetRecord()) { + if (struct.isSetStart()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetTend()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetEnvironment()) { + optionals.set(5); } + oprot.writeBitSet(optionals, 6); if (struct.isSetRecord()) { oprot.writeI64(struct.record); } + if (struct.isSetStart()) { + oprot.writeString(struct.start); + } + if (struct.isSetTend()) { + oprot.writeString(struct.tend); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -92219,28 +91387,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } - if (incoming.get(1)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } + if (incoming.get(1)) { + struct.start = iprot.readString(); + struct.setStartIsSet(true); + } if (incoming.get(2)) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -92252,28 +91424,31 @@ private static S scheme(org.apache. } } - public static class auditKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecord_result"); + public static class auditRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditRecordStartstrEndstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditRecordStartstrEndstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditRecordStartstrEndstr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -92297,6 +91472,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -92353,31 +91530,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditRecordStartstrEndstr_result.class, metaDataMap); } - public auditKeyRecord_result() { + public auditRecordStartstrEndstr_result() { } - public auditKeyRecord_result( + public auditRecordStartstrEndstr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public auditKeyRecord_result(auditKeyRecord_result other) { + public auditRecordStartstrEndstr_result(auditRecordStartstrEndstr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -92400,13 +91581,16 @@ public auditKeyRecord_result(auditKeyRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public auditKeyRecord_result deepCopy() { - return new auditKeyRecord_result(this); + public auditRecordStartstrEndstr_result deepCopy() { + return new auditRecordStartstrEndstr_result(this); } @Override @@ -92415,6 +91599,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -92433,7 +91618,7 @@ public java.util.Map> getSuccess return this.success; } - public auditKeyRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditRecordStartstrEndstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -92458,7 +91643,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -92483,7 +91668,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -92504,11 +91689,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public auditKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public auditRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -92528,6 +91713,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public auditRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -92559,7 +91769,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -92582,6 +91800,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -92602,18 +91823,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecord_result) - return this.equals((auditKeyRecord_result)that); + if (that instanceof auditRecordStartstrEndstr_result) + return this.equals((auditRecordStartstrEndstr_result)that); return false; } - public boolean equals(auditKeyRecord_result that) { + public boolean equals(auditRecordStartstrEndstr_result that) { if (that == null) return false; if (this == that) @@ -92655,6 +91878,15 @@ public boolean equals(auditKeyRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -92678,11 +91910,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(auditKeyRecord_result other) { + public int compareTo(auditRecordStartstrEndstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -92729,6 +91965,16 @@ public int compareTo(auditKeyRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -92749,7 +91995,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditRecordStartstrEndstr_result("); boolean first = true; sb.append("success:"); @@ -92783,6 +92029,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -92808,17 +92062,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecord_resultStandardScheme getScheme() { - return new auditKeyRecord_resultStandardScheme(); + public auditRecordStartstrEndstr_resultStandardScheme getScheme() { + return new auditRecordStartstrEndstr_resultStandardScheme(); } } - private static class auditKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -92831,25 +92085,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map108 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map108.size); - long _key109; - @org.apache.thrift.annotation.Nullable java.util.List _val110; - for (int _i111 = 0; _i111 < _map108.size; ++_i111) + org.apache.thrift.protocol.TMap _map90 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map90.size); + long _key91; + @org.apache.thrift.annotation.Nullable java.util.List _val92; + for (int _i93 = 0; _i93 < _map90.size; ++_i93) { - _key109 = iprot.readI64(); + _key91 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list112 = iprot.readListBegin(); - _val110 = new java.util.ArrayList(_list112.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem113; - for (int _i114 = 0; _i114 < _list112.size; ++_i114) + org.apache.thrift.protocol.TList _list94 = iprot.readListBegin(); + _val92 = new java.util.ArrayList(_list94.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem95; + for (int _i96 = 0; _i96 < _list94.size; ++_i96) { - _elem113 = iprot.readString(); - _val110.add(_elem113); + _elem95 = iprot.readString(); + _val92.add(_elem95); } iprot.readListEnd(); } - struct.success.put(_key109, _val110); + struct.success.put(_key91, _val92); } iprot.readMapEnd(); } @@ -92878,13 +92132,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_resu break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -92897,7 +92160,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -92905,14 +92168,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecord_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter115 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter97 : struct.success.entrySet()) { - oprot.writeI64(_iter115.getKey()); + oprot.writeI64(_iter97.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter115.getValue().size())); - for (java.lang.String _iter116 : _iter115.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter97.getValue().size())); + for (java.lang.String _iter98 : _iter97.getValue()) { - oprot.writeString(_iter116); + oprot.writeString(_iter98); } oprot.writeListEnd(); } @@ -92936,23 +92199,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecord_res struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class auditKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecord_resultTupleScheme getScheme() { - return new auditKeyRecord_resultTupleScheme(); + public auditRecordStartstrEndstr_resultTupleScheme getScheme() { + return new auditRecordStartstrEndstr_resultTupleScheme(); } } - private static class auditKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -92967,18 +92235,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_resu if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter117 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter99 : struct.success.entrySet()) { - oprot.writeI64(_iter117.getKey()); + oprot.writeI64(_iter99.getKey()); { - oprot.writeI32(_iter117.getValue().size()); - for (java.lang.String _iter118 : _iter117.getValue()) + oprot.writeI32(_iter99.getValue().size()); + for (java.lang.String _iter100 : _iter99.getValue()) { - oprot.writeString(_iter118); + oprot.writeString(_iter100); } } } @@ -92993,32 +92264,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_resu if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map119 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map119.size); - long _key120; - @org.apache.thrift.annotation.Nullable java.util.List _val121; - for (int _i122 = 0; _i122 < _map119.size; ++_i122) + org.apache.thrift.protocol.TMap _map101 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map101.size); + long _key102; + @org.apache.thrift.annotation.Nullable java.util.List _val103; + for (int _i104 = 0; _i104 < _map101.size; ++_i104) { - _key120 = iprot.readI64(); + _key102 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list123 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val121 = new java.util.ArrayList(_list123.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem124; - for (int _i125 = 0; _i125 < _list123.size; ++_i125) + org.apache.thrift.protocol.TList _list105 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val103 = new java.util.ArrayList(_list105.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem106; + for (int _i107 = 0; _i107 < _list105.size; ++_i107) { - _elem124 = iprot.readString(); - _val121.add(_elem124); + _elem106 = iprot.readString(); + _val103.add(_elem106); } } - struct.success.put(_key120, _val121); + struct.success.put(_key102, _val103); } } struct.setSuccessIsSet(true); @@ -93034,10 +92308,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_resul struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -93046,22 +92325,20 @@ private static S scheme(org.apache. } } - public static class auditKeyRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStart_args"); + public static class auditKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecord_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStart_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStart_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -93070,10 +92347,9 @@ public static class auditKeyRecordStart_args implements org.apache.thrift.TBase< public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORD((short)2, "record"), - START((short)3, "start"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -93093,13 +92369,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORD return RECORD; - case 3: // START - return START; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -93145,7 +92419,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -93154,8 +92427,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -93163,16 +92434,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStart_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecord_args.class, metaDataMap); } - public auditKeyRecordStart_args() { + public auditKeyRecord_args() { } - public auditKeyRecordStart_args( + public auditKeyRecord_args( java.lang.String key, long record, - long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -93181,8 +92451,6 @@ public auditKeyRecordStart_args( this.key = key; this.record = record; setRecordIsSet(true); - this.start = start; - setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -93191,13 +92459,12 @@ public auditKeyRecordStart_args( /** * Performs a deep copy on other. */ - public auditKeyRecordStart_args(auditKeyRecordStart_args other) { + public auditKeyRecord_args(auditKeyRecord_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -93210,8 +92477,8 @@ public auditKeyRecordStart_args(auditKeyRecordStart_args other) { } @Override - public auditKeyRecordStart_args deepCopy() { - return new auditKeyRecordStart_args(this); + public auditKeyRecord_args deepCopy() { + return new auditKeyRecord_args(this); } @Override @@ -93219,8 +92486,6 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -93231,7 +92496,7 @@ public java.lang.String getKey() { return this.key; } - public auditKeyRecordStart_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public auditKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -93255,7 +92520,7 @@ public long getRecord() { return this.record; } - public auditKeyRecordStart_args setRecord(long record) { + public auditKeyRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -93274,35 +92539,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { - return this.start; - } - - public auditKeyRecordStart_args setStart(long start) { - this.start = start; - setStartIsSet(true); - return this; - } - - public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); - } - - /** Returns true if field start is set (has been assigned a value) and false otherwise */ - public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); - } - - public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditKeyRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -93327,7 +92569,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditKeyRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -93352,7 +92594,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditKeyRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -93391,14 +92633,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case START: - if (value == null) { - unsetStart(); - } else { - setStart((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -93436,9 +92670,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case START: - return getStart(); - case CREDS: return getCreds(); @@ -93464,8 +92695,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORD: return isSetRecord(); - case START: - return isSetStart(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -93478,12 +92707,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecordStart_args) - return this.equals((auditKeyRecordStart_args)that); + if (that instanceof auditKeyRecord_args) + return this.equals((auditKeyRecord_args)that); return false; } - public boolean equals(auditKeyRecordStart_args that) { + public boolean equals(auditKeyRecord_args that) { if (that == null) return false; if (this == that) @@ -93507,15 +92736,6 @@ public boolean equals(auditKeyRecordStart_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; - if (this_present_start || that_present_start) { - if (!(this_present_start && that_present_start)) - return false; - if (this.start != that.start) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -93556,8 +92776,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -93574,7 +92792,7 @@ public int hashCode() { } @Override - public int compareTo(auditKeyRecordStart_args other) { + public int compareTo(auditKeyRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -93601,16 +92819,6 @@ public int compareTo(auditKeyRecordStart_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetStart()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -93662,7 +92870,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStart_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecord_args("); boolean first = true; sb.append("key:"); @@ -93677,10 +92885,6 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -93737,17 +92941,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStart_argsStandardScheme getScheme() { - return new auditKeyRecordStart_argsStandardScheme(); + public auditKeyRecord_argsStandardScheme getScheme() { + return new auditKeyRecord_argsStandardScheme(); } } - private static class auditKeyRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -93773,15 +92977,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -93790,7 +92986,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -93799,7 +92995,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -93819,7 +93015,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -93831,9 +93027,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -93855,17 +93048,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar } - private static class auditKeyRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStart_argsTupleScheme getScheme() { - return new auditKeyRecordStart_argsTupleScheme(); + public auditKeyRecord_argsTupleScheme getScheme() { + return new auditKeyRecord_argsTupleScheme(); } } - private static class auditKeyRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -93874,28 +93067,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetStart()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -93908,9 +93095,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -93920,20 +93107,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_ struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -93945,16 +93128,16 @@ private static S scheme(org.apache. } } - public static class auditKeyRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStart_result"); + public static class auditKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecord_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStart_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStart_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -94048,13 +93231,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStart_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecord_result.class, metaDataMap); } - public auditKeyRecordStart_result() { + public auditKeyRecord_result() { } - public auditKeyRecordStart_result( + public auditKeyRecord_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -94070,7 +93253,7 @@ public auditKeyRecordStart_result( /** * Performs a deep copy on other. */ - public auditKeyRecordStart_result(auditKeyRecordStart_result other) { + public auditKeyRecord_result(auditKeyRecord_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -94098,8 +93281,8 @@ public auditKeyRecordStart_result(auditKeyRecordStart_result other) { } @Override - public auditKeyRecordStart_result deepCopy() { - return new auditKeyRecordStart_result(this); + public auditKeyRecord_result deepCopy() { + return new auditKeyRecord_result(this); } @Override @@ -94126,7 +93309,7 @@ public java.util.Map> getSuccess return this.success; } - public auditKeyRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditKeyRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -94151,7 +93334,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditKeyRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -94176,7 +93359,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditKeyRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -94201,7 +93384,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public auditKeyRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public auditKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -94301,12 +93484,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecordStart_result) - return this.equals((auditKeyRecordStart_result)that); + if (that instanceof auditKeyRecord_result) + return this.equals((auditKeyRecord_result)that); return false; } - public boolean equals(auditKeyRecordStart_result that) { + public boolean equals(auditKeyRecord_result that) { if (that == null) return false; if (this == that) @@ -94375,7 +93558,7 @@ public int hashCode() { } @Override - public int compareTo(auditKeyRecordStart_result other) { + public int compareTo(auditKeyRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -94442,7 +93625,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStart_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecord_result("); boolean first = true; sb.append("success:"); @@ -94501,17 +93684,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStart_resultStandardScheme getScheme() { - return new auditKeyRecordStart_resultStandardScheme(); + public auditKeyRecord_resultStandardScheme getScheme() { + return new auditKeyRecord_resultStandardScheme(); } } - private static class auditKeyRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -94524,25 +93707,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map126 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map126.size); - long _key127; - @org.apache.thrift.annotation.Nullable java.util.List _val128; - for (int _i129 = 0; _i129 < _map126.size; ++_i129) + org.apache.thrift.protocol.TMap _map108 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map108.size); + long _key109; + @org.apache.thrift.annotation.Nullable java.util.List _val110; + for (int _i111 = 0; _i111 < _map108.size; ++_i111) { - _key127 = iprot.readI64(); + _key109 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list130 = iprot.readListBegin(); - _val128 = new java.util.ArrayList(_list130.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem131; - for (int _i132 = 0; _i132 < _list130.size; ++_i132) + org.apache.thrift.protocol.TList _list112 = iprot.readListBegin(); + _val110 = new java.util.ArrayList(_list112.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem113; + for (int _i114 = 0; _i114 < _list112.size; ++_i114) { - _elem131 = iprot.readString(); - _val128.add(_elem131); + _elem113 = iprot.readString(); + _val110.add(_elem113); } iprot.readListEnd(); } - struct.success.put(_key127, _val128); + struct.success.put(_key109, _val110); } iprot.readMapEnd(); } @@ -94590,7 +93773,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -94598,14 +93781,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter133 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter115 : struct.success.entrySet()) { - oprot.writeI64(_iter133.getKey()); + oprot.writeI64(_iter115.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter133.getValue().size())); - for (java.lang.String _iter134 : _iter133.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter115.getValue().size())); + for (java.lang.String _iter116 : _iter115.getValue()) { - oprot.writeString(_iter134); + oprot.writeString(_iter116); } oprot.writeListEnd(); } @@ -94635,17 +93818,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar } - private static class auditKeyRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStart_resultTupleScheme getScheme() { - return new auditKeyRecordStart_resultTupleScheme(); + public auditKeyRecord_resultTupleScheme getScheme() { + return new auditKeyRecord_resultTupleScheme(); } } - private static class auditKeyRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -94664,14 +93847,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter135 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter117 : struct.success.entrySet()) { - oprot.writeI64(_iter135.getKey()); + oprot.writeI64(_iter117.getKey()); { - oprot.writeI32(_iter135.getValue().size()); - for (java.lang.String _iter136 : _iter135.getValue()) + oprot.writeI32(_iter117.getValue().size()); + for (java.lang.String _iter118 : _iter117.getValue()) { - oprot.writeString(_iter136); + oprot.writeString(_iter118); } } } @@ -94689,29 +93872,29 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map137 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map137.size); - long _key138; - @org.apache.thrift.annotation.Nullable java.util.List _val139; - for (int _i140 = 0; _i140 < _map137.size; ++_i140) + org.apache.thrift.protocol.TMap _map119 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map119.size); + long _key120; + @org.apache.thrift.annotation.Nullable java.util.List _val121; + for (int _i122 = 0; _i122 < _map119.size; ++_i122) { - _key138 = iprot.readI64(); + _key120 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list141 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val139 = new java.util.ArrayList(_list141.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem142; - for (int _i143 = 0; _i143 < _list141.size; ++_i143) + org.apache.thrift.protocol.TList _list123 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val121 = new java.util.ArrayList(_list123.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem124; + for (int _i125 = 0; _i125 < _list123.size; ++_i125) { - _elem142 = iprot.readString(); - _val139.add(_elem142); + _elem124 = iprot.readString(); + _val121.add(_elem124); } } - struct.success.put(_key138, _val139); + struct.success.put(_key120, _val121); } } struct.setSuccessIsSet(true); @@ -94739,22 +93922,22 @@ private static S scheme(org.apache. } } - public static class auditKeyRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartstr_args"); + public static class auditKeyRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStart_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStart_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStart_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -94838,6 +94021,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -94847,7 +94031,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -94855,16 +94039,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStart_args.class, metaDataMap); } - public auditKeyRecordStartstr_args() { + public auditKeyRecordStart_args() { } - public auditKeyRecordStartstr_args( + public auditKeyRecordStart_args( java.lang.String key, long record, - java.lang.String start, + long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -94874,6 +94058,7 @@ public auditKeyRecordStartstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -94882,15 +94067,13 @@ public auditKeyRecordStartstr_args( /** * Performs a deep copy on other. */ - public auditKeyRecordStartstr_args(auditKeyRecordStartstr_args other) { + public auditKeyRecordStart_args(auditKeyRecordStart_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } + this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -94903,8 +94086,8 @@ public auditKeyRecordStartstr_args(auditKeyRecordStartstr_args other) { } @Override - public auditKeyRecordStartstr_args deepCopy() { - return new auditKeyRecordStartstr_args(this); + public auditKeyRecordStart_args deepCopy() { + return new auditKeyRecordStart_args(this); } @Override @@ -94912,7 +94095,8 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.start = null; + setStartIsSet(false); + this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -94923,7 +94107,7 @@ public java.lang.String getKey() { return this.key; } - public auditKeyRecordStartstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public auditKeyRecordStart_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -94947,7 +94131,7 @@ public long getRecord() { return this.record; } - public auditKeyRecordStartstr_args setRecord(long record) { + public auditKeyRecordStart_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -94966,29 +94150,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public auditKeyRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public auditKeyRecordStart_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -94996,7 +94178,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditKeyRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditKeyRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -95021,7 +94203,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditKeyRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditKeyRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -95046,7 +94228,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditKeyRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditKeyRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -95089,7 +94271,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -95172,12 +94354,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecordStartstr_args) - return this.equals((auditKeyRecordStartstr_args)that); + if (that instanceof auditKeyRecordStart_args) + return this.equals((auditKeyRecordStart_args)that); return false; } - public boolean equals(auditKeyRecordStartstr_args that) { + public boolean equals(auditKeyRecordStart_args that) { if (that == null) return false; if (this == that) @@ -95201,12 +94383,12 @@ public boolean equals(auditKeyRecordStartstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } @@ -95250,9 +94432,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -95270,7 +94450,7 @@ public int hashCode() { } @Override - public int compareTo(auditKeyRecordStartstr_args other) { + public int compareTo(auditKeyRecordStart_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -95358,7 +94538,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStart_args("); boolean first = true; sb.append("key:"); @@ -95374,11 +94554,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -95437,17 +94613,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartstr_argsStandardScheme getScheme() { - return new auditKeyRecordStartstr_argsStandardScheme(); + public auditKeyRecordStart_argsStandardScheme getScheme() { + return new auditKeyRecordStart_argsStandardScheme(); } } - private static class auditKeyRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -95474,8 +94650,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -95519,7 +94695,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStart_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -95531,11 +94707,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -95557,17 +94731,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar } - private static class auditKeyRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartstr_argsTupleScheme getScheme() { - return new auditKeyRecordStartstr_argsTupleScheme(); + public auditKeyRecordStart_argsTupleScheme getScheme() { + return new auditKeyRecordStart_argsTupleScheme(); } } - private static class auditKeyRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -95596,7 +94770,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -95610,7 +94784,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -95622,7 +94796,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStarts struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(3)) { @@ -95647,31 +94821,28 @@ private static S scheme(org.apache. } } - public static class auditKeyRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartstr_result"); + public static class auditKeyRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStart_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStart_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStart_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -95695,8 +94866,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -95753,35 +94922,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStart_result.class, metaDataMap); } - public auditKeyRecordStartstr_result() { + public auditKeyRecordStart_result() { } - public auditKeyRecordStartstr_result( + public auditKeyRecordStart_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public auditKeyRecordStartstr_result(auditKeyRecordStartstr_result other) { + public auditKeyRecordStart_result(auditKeyRecordStart_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -95804,16 +94969,13 @@ public auditKeyRecordStartstr_result(auditKeyRecordStartstr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public auditKeyRecordStartstr_result deepCopy() { - return new auditKeyRecordStartstr_result(this); + public auditKeyRecordStart_result deepCopy() { + return new auditKeyRecordStart_result(this); } @Override @@ -95822,7 +94984,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -95841,7 +95002,7 @@ public java.util.Map> getSuccess return this.success; } - public auditKeyRecordStartstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditKeyRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -95866,7 +95027,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditKeyRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditKeyRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -95891,7 +95052,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditKeyRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditKeyRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -95912,11 +95073,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public auditKeyRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public auditKeyRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -95936,31 +95097,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public auditKeyRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -95992,15 +95128,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -96023,9 +95151,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -96046,20 +95171,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecordStartstr_result) - return this.equals((auditKeyRecordStartstr_result)that); + if (that instanceof auditKeyRecordStart_result) + return this.equals((auditKeyRecordStart_result)that); return false; } - public boolean equals(auditKeyRecordStartstr_result that) { + public boolean equals(auditKeyRecordStart_result that) { if (that == null) return false; if (this == that) @@ -96101,15 +95224,6 @@ public boolean equals(auditKeyRecordStartstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -96133,15 +95247,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(auditKeyRecordStartstr_result other) { + public int compareTo(auditKeyRecordStart_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -96188,16 +95298,6 @@ public int compareTo(auditKeyRecordStartstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -96218,7 +95318,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStart_result("); boolean first = true; sb.append("success:"); @@ -96252,14 +95352,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -96285,17 +95377,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartstr_resultStandardScheme getScheme() { - return new auditKeyRecordStartstr_resultStandardScheme(); + public auditKeyRecordStart_resultStandardScheme getScheme() { + return new auditKeyRecordStart_resultStandardScheme(); } } - private static class auditKeyRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -96308,25 +95400,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map144 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map144.size); - long _key145; - @org.apache.thrift.annotation.Nullable java.util.List _val146; - for (int _i147 = 0; _i147 < _map144.size; ++_i147) + org.apache.thrift.protocol.TMap _map126 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map126.size); + long _key127; + @org.apache.thrift.annotation.Nullable java.util.List _val128; + for (int _i129 = 0; _i129 < _map126.size; ++_i129) { - _key145 = iprot.readI64(); + _key127 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list148 = iprot.readListBegin(); - _val146 = new java.util.ArrayList(_list148.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem149; - for (int _i150 = 0; _i150 < _list148.size; ++_i150) + org.apache.thrift.protocol.TList _list130 = iprot.readListBegin(); + _val128 = new java.util.ArrayList(_list130.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem131; + for (int _i132 = 0; _i132 < _list130.size; ++_i132) { - _elem149 = iprot.readString(); - _val146.add(_elem149); + _elem131 = iprot.readString(); + _val128.add(_elem131); } iprot.readListEnd(); } - struct.success.put(_key145, _val146); + struct.success.put(_key127, _val128); } iprot.readMapEnd(); } @@ -96355,22 +95447,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -96383,7 +95466,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStart_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -96391,14 +95474,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter151 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter133 : struct.success.entrySet()) { - oprot.writeI64(_iter151.getKey()); + oprot.writeI64(_iter133.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter151.getValue().size())); - for (java.lang.String _iter152 : _iter151.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter133.getValue().size())); + for (java.lang.String _iter134 : _iter133.getValue()) { - oprot.writeString(_iter152); + oprot.writeString(_iter134); } oprot.writeListEnd(); } @@ -96422,28 +95505,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class auditKeyRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartstr_resultTupleScheme getScheme() { - return new auditKeyRecordStartstr_resultTupleScheme(); + public auditKeyRecordStart_resultTupleScheme getScheme() { + return new auditKeyRecordStart_resultTupleScheme(); } } - private static class auditKeyRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -96458,21 +95536,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter153 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter135 : struct.success.entrySet()) { - oprot.writeI64(_iter153.getKey()); + oprot.writeI64(_iter135.getKey()); { - oprot.writeI32(_iter153.getValue().size()); - for (java.lang.String _iter154 : _iter153.getValue()) + oprot.writeI32(_iter135.getValue().size()); + for (java.lang.String _iter136 : _iter135.getValue()) { - oprot.writeString(_iter154); + oprot.writeString(_iter136); } } } @@ -96487,35 +95562,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map155 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map155.size); - long _key156; - @org.apache.thrift.annotation.Nullable java.util.List _val157; - for (int _i158 = 0; _i158 < _map155.size; ++_i158) + org.apache.thrift.protocol.TMap _map137 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map137.size); + long _key138; + @org.apache.thrift.annotation.Nullable java.util.List _val139; + for (int _i140 = 0; _i140 < _map137.size; ++_i140) { - _key156 = iprot.readI64(); + _key138 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list159 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val157 = new java.util.ArrayList(_list159.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem160; - for (int _i161 = 0; _i161 < _list159.size; ++_i161) + org.apache.thrift.protocol.TList _list141 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val139 = new java.util.ArrayList(_list141.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem142; + for (int _i143 = 0; _i143 < _list141.size; ++_i143) { - _elem160 = iprot.readString(); - _val157.add(_elem160); + _elem142 = iprot.readString(); + _val139.add(_elem142); } } - struct.success.put(_key156, _val157); + struct.success.put(_key138, _val139); } } struct.setSuccessIsSet(true); @@ -96531,15 +95603,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStarts struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -96548,24 +95615,22 @@ private static S scheme(org.apache. } } - public static class auditKeyRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartEnd_args"); + public static class auditKeyRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartstr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartEnd_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartEnd_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartstr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public long start; // required - public long tend; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -96575,10 +95640,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORD((short)2, "record"), START((short)3, "start"), - TEND((short)4, "tend"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -96600,13 +95664,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORD; case 3: // START return START; - case 4: // TEND - return TEND; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -96652,8 +95714,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; - private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -96663,9 +95723,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -96673,17 +95731,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartEnd_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartstr_args.class, metaDataMap); } - public auditKeyRecordStartEnd_args() { + public auditKeyRecordStartstr_args() { } - public auditKeyRecordStartEnd_args( + public auditKeyRecordStartstr_args( java.lang.String key, long record, - long start, - long tend, + java.lang.String start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -96693,9 +95750,6 @@ public auditKeyRecordStartEnd_args( this.record = record; setRecordIsSet(true); this.start = start; - setStartIsSet(true); - this.tend = tend; - setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -96704,14 +95758,15 @@ public auditKeyRecordStartEnd_args( /** * Performs a deep copy on other. */ - public auditKeyRecordStartEnd_args(auditKeyRecordStartEnd_args other) { + public auditKeyRecordStartstr_args(auditKeyRecordStartstr_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - this.start = other.start; - this.tend = other.tend; + if (other.isSetStart()) { + this.start = other.start; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -96724,8 +95779,8 @@ public auditKeyRecordStartEnd_args(auditKeyRecordStartEnd_args other) { } @Override - public auditKeyRecordStartEnd_args deepCopy() { - return new auditKeyRecordStartEnd_args(this); + public auditKeyRecordStartstr_args deepCopy() { + return new auditKeyRecordStartstr_args(this); } @Override @@ -96733,10 +95788,7 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; - setTendIsSet(false); - this.tend = 0; + this.start = null; this.creds = null; this.transaction = null; this.environment = null; @@ -96747,7 +95799,7 @@ public java.lang.String getKey() { return this.key; } - public auditKeyRecordStartEnd_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public auditKeyRecordStartstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -96771,7 +95823,7 @@ public long getRecord() { return this.record; } - public auditKeyRecordStartEnd_args setRecord(long record) { + public auditKeyRecordStartstr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -96790,50 +95842,29 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { return this.start; } - public auditKeyRecordStartEnd_args setStart(long start) { + public auditKeyRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { this.start = start; - setStartIsSet(true); return this; } public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + this.start = null; } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + return this.start != null; } public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - - public long getTend() { - return this.tend; - } - - public auditKeyRecordStartEnd_args setTend(long tend) { - this.tend = tend; - setTendIsSet(true); - return this; - } - - public void unsetTend() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); - } - - /** Returns true if field tend is set (has been assigned a value) and false otherwise */ - public boolean isSetTend() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); - } - - public void setTendIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); + if (!value) { + this.start = null; + } } @org.apache.thrift.annotation.Nullable @@ -96841,7 +95872,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditKeyRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditKeyRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -96866,7 +95897,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditKeyRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditKeyRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -96891,7 +95922,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditKeyRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditKeyRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -96934,15 +95965,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.Long)value); - } - break; - - case TEND: - if (value == null) { - unsetTend(); - } else { - setTend((java.lang.Long)value); + setStart((java.lang.String)value); } break; @@ -96986,9 +96009,6 @@ public java.lang.Object getFieldValue(_Fields field) { case START: return getStart(); - case TEND: - return getTend(); - case CREDS: return getCreds(); @@ -97016,8 +96036,6 @@ public boolean isSet(_Fields field) { return isSetRecord(); case START: return isSetStart(); - case TEND: - return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -97030,12 +96048,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecordStartEnd_args) - return this.equals((auditKeyRecordStartEnd_args)that); + if (that instanceof auditKeyRecordStartstr_args) + return this.equals((auditKeyRecordStartstr_args)that); return false; } - public boolean equals(auditKeyRecordStartEnd_args that) { + public boolean equals(auditKeyRecordStartstr_args that) { if (that == null) return false; if (this == that) @@ -97059,21 +96077,12 @@ public boolean equals(auditKeyRecordStartEnd_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (this.start != that.start) - return false; - } - - boolean this_present_tend = true; - boolean that_present_tend = true; - if (this_present_tend || that_present_tend) { - if (!(this_present_tend && that_present_tend)) - return false; - if (this.tend != that.tend) + if (!this.start.equals(that.start)) return false; } @@ -97117,9 +96126,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -97137,7 +96146,7 @@ public int hashCode() { } @Override - public int compareTo(auditKeyRecordStartEnd_args other) { + public int compareTo(auditKeyRecordStartstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -97174,16 +96183,6 @@ public int compareTo(auditKeyRecordStartEnd_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTend()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -97235,7 +96234,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartEnd_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartstr_args("); boolean first = true; sb.append("key:"); @@ -97251,11 +96250,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); - sb.append("tend:"); - sb.append(this.tend); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -97314,17 +96313,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartEnd_argsStandardScheme getScheme() { - return new auditKeyRecordStartEnd_argsStandardScheme(); + public auditKeyRecordStartstr_argsStandardScheme getScheme() { + return new auditKeyRecordStartstr_argsStandardScheme(); } } - private static class auditKeyRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -97351,22 +96350,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -97375,7 +96366,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -97384,7 +96375,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -97404,7 +96395,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -97416,12 +96407,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeI64(struct.tend); - oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -97443,17 +96433,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar } - private static class auditKeyRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartEnd_argsTupleScheme getScheme() { - return new auditKeyRecordStartEnd_argsTupleScheme(); + public auditKeyRecordStartstr_argsTupleScheme getScheme() { + return new auditKeyRecordStartstr_argsTupleScheme(); } } - private static class auditKeyRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -97465,19 +96455,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetStart()) { optionals.set(2); } - if (struct.isSetTend()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -97485,10 +96472,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } - if (struct.isSetTend()) { - oprot.writeI64(struct.tend); + oprot.writeString(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -97502,9 +96486,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -97514,24 +96498,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartE struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readI64(); + struct.start = iprot.readString(); struct.setStartIsSet(true); } if (incoming.get(3)) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -97543,28 +96523,31 @@ private static S scheme(org.apache. } } - public static class auditKeyRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartEnd_result"); + public static class auditKeyRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartEnd_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartEnd_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartstr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -97588,6 +96571,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -97644,31 +96629,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartEnd_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartstr_result.class, metaDataMap); } - public auditKeyRecordStartEnd_result() { + public auditKeyRecordStartstr_result() { } - public auditKeyRecordStartEnd_result( + public auditKeyRecordStartstr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public auditKeyRecordStartEnd_result(auditKeyRecordStartEnd_result other) { + public auditKeyRecordStartstr_result(auditKeyRecordStartstr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -97691,13 +96680,16 @@ public auditKeyRecordStartEnd_result(auditKeyRecordStartEnd_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public auditKeyRecordStartEnd_result deepCopy() { - return new auditKeyRecordStartEnd_result(this); + public auditKeyRecordStartstr_result deepCopy() { + return new auditKeyRecordStartstr_result(this); } @Override @@ -97706,6 +96698,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -97724,7 +96717,7 @@ public java.util.Map> getSuccess return this.success; } - public auditKeyRecordStartEnd_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditKeyRecordStartstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -97749,7 +96742,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditKeyRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditKeyRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -97774,7 +96767,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditKeyRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditKeyRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -97795,11 +96788,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public auditKeyRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public auditKeyRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -97819,6 +96812,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public auditKeyRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -97850,7 +96868,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -97873,6 +96899,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -97893,18 +96922,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecordStartEnd_result) - return this.equals((auditKeyRecordStartEnd_result)that); + if (that instanceof auditKeyRecordStartstr_result) + return this.equals((auditKeyRecordStartstr_result)that); return false; } - public boolean equals(auditKeyRecordStartEnd_result that) { + public boolean equals(auditKeyRecordStartstr_result that) { if (that == null) return false; if (this == that) @@ -97946,6 +96977,15 @@ public boolean equals(auditKeyRecordStartEnd_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -97969,11 +97009,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(auditKeyRecordStartEnd_result other) { + public int compareTo(auditKeyRecordStartstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -98020,6 +97064,16 @@ public int compareTo(auditKeyRecordStartEnd_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -98040,7 +97094,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartEnd_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartstr_result("); boolean first = true; sb.append("success:"); @@ -98074,6 +97128,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -98099,17 +97161,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartEnd_resultStandardScheme getScheme() { - return new auditKeyRecordStartEnd_resultStandardScheme(); + public auditKeyRecordStartstr_resultStandardScheme getScheme() { + return new auditKeyRecordStartstr_resultStandardScheme(); } } - private static class auditKeyRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -98122,25 +97184,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map162 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map162.size); - long _key163; - @org.apache.thrift.annotation.Nullable java.util.List _val164; - for (int _i165 = 0; _i165 < _map162.size; ++_i165) + org.apache.thrift.protocol.TMap _map144 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map144.size); + long _key145; + @org.apache.thrift.annotation.Nullable java.util.List _val146; + for (int _i147 = 0; _i147 < _map144.size; ++_i147) { - _key163 = iprot.readI64(); + _key145 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list166 = iprot.readListBegin(); - _val164 = new java.util.ArrayList(_list166.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem167; - for (int _i168 = 0; _i168 < _list166.size; ++_i168) + org.apache.thrift.protocol.TList _list148 = iprot.readListBegin(); + _val146 = new java.util.ArrayList(_list148.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem149; + for (int _i150 = 0; _i150 < _list148.size; ++_i150) { - _elem167 = iprot.readString(); - _val164.add(_elem167); + _elem149 = iprot.readString(); + _val146.add(_elem149); } iprot.readListEnd(); } - struct.success.put(_key163, _val164); + struct.success.put(_key145, _val146); } iprot.readMapEnd(); } @@ -98169,13 +97231,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -98188,7 +97259,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -98196,14 +97267,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter169 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter151 : struct.success.entrySet()) { - oprot.writeI64(_iter169.getKey()); + oprot.writeI64(_iter151.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter169.getValue().size())); - for (java.lang.String _iter170 : _iter169.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter151.getValue().size())); + for (java.lang.String _iter152 : _iter151.getValue()) { - oprot.writeString(_iter170); + oprot.writeString(_iter152); } oprot.writeListEnd(); } @@ -98227,23 +97298,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class auditKeyRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartEnd_resultTupleScheme getScheme() { - return new auditKeyRecordStartEnd_resultTupleScheme(); + public auditKeyRecordStartstr_resultTupleScheme getScheme() { + return new auditKeyRecordStartstr_resultTupleScheme(); } } - private static class auditKeyRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -98258,18 +97334,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter171 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter153 : struct.success.entrySet()) { - oprot.writeI64(_iter171.getKey()); + oprot.writeI64(_iter153.getKey()); { - oprot.writeI32(_iter171.getValue().size()); - for (java.lang.String _iter172 : _iter171.getValue()) + oprot.writeI32(_iter153.getValue().size()); + for (java.lang.String _iter154 : _iter153.getValue()) { - oprot.writeString(_iter172); + oprot.writeString(_iter154); } } } @@ -98284,32 +97363,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map173 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map173.size); - long _key174; - @org.apache.thrift.annotation.Nullable java.util.List _val175; - for (int _i176 = 0; _i176 < _map173.size; ++_i176) + org.apache.thrift.protocol.TMap _map155 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map155.size); + long _key156; + @org.apache.thrift.annotation.Nullable java.util.List _val157; + for (int _i158 = 0; _i158 < _map155.size; ++_i158) { - _key174 = iprot.readI64(); + _key156 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list177 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val175 = new java.util.ArrayList(_list177.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem178; - for (int _i179 = 0; _i179 < _list177.size; ++_i179) + org.apache.thrift.protocol.TList _list159 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val157 = new java.util.ArrayList(_list159.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem160; + for (int _i161 = 0; _i161 < _list159.size; ++_i161) { - _elem178 = iprot.readString(); - _val175.add(_elem178); + _elem160 = iprot.readString(); + _val157.add(_elem160); } } - struct.success.put(_key174, _val175); + struct.success.put(_key156, _val157); } } struct.setSuccessIsSet(true); @@ -98325,10 +97407,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartE struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -98337,24 +97424,24 @@ private static S scheme(org.apache. } } - public static class auditKeyRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartstrEndstr_args"); + public static class auditKeyRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartEnd_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartstrEndstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartstrEndstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartEnd_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartEnd_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required - public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required + public long start; // required + public long tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -98441,6 +97528,8 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; + private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -98450,9 +97539,9 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -98460,17 +97549,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartstrEndstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartEnd_args.class, metaDataMap); } - public auditKeyRecordStartstrEndstr_args() { + public auditKeyRecordStartEnd_args() { } - public auditKeyRecordStartstrEndstr_args( + public auditKeyRecordStartEnd_args( java.lang.String key, long record, - java.lang.String start, - java.lang.String tend, + long start, + long tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -98480,7 +97569,9 @@ public auditKeyRecordStartstrEndstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.tend = tend; + setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -98489,18 +97580,14 @@ public auditKeyRecordStartstrEndstr_args( /** * Performs a deep copy on other. */ - public auditKeyRecordStartstrEndstr_args(auditKeyRecordStartstrEndstr_args other) { + public auditKeyRecordStartEnd_args(auditKeyRecordStartEnd_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } - if (other.isSetTend()) { - this.tend = other.tend; - } + this.start = other.start; + this.tend = other.tend; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -98513,8 +97600,8 @@ public auditKeyRecordStartstrEndstr_args(auditKeyRecordStartstrEndstr_args other } @Override - public auditKeyRecordStartstrEndstr_args deepCopy() { - return new auditKeyRecordStartstrEndstr_args(this); + public auditKeyRecordStartEnd_args deepCopy() { + return new auditKeyRecordStartEnd_args(this); } @Override @@ -98522,8 +97609,10 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.start = null; - this.tend = null; + setStartIsSet(false); + this.start = 0; + setTendIsSet(false); + this.tend = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -98534,7 +97623,7 @@ public java.lang.String getKey() { return this.key; } - public auditKeyRecordStartstrEndstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public auditKeyRecordStartEnd_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -98558,7 +97647,7 @@ public long getRecord() { return this.record; } - public auditKeyRecordStartstrEndstr_args setRecord(long record) { + public auditKeyRecordStartEnd_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -98577,54 +97666,50 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public auditKeyRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public auditKeyRecordStartEnd_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTend() { + public long getTend() { return this.tend; } - public auditKeyRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + public auditKeyRecordStartEnd_args setTend(long tend) { this.tend = tend; + setTendIsSet(true); return this; } public void unsetTend() { - this.tend = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); } /** Returns true if field tend is set (has been assigned a value) and false otherwise */ public boolean isSetTend() { - return this.tend != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); } public void setTendIsSet(boolean value) { - if (!value) { - this.tend = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -98632,7 +97717,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public auditKeyRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditKeyRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -98657,7 +97742,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public auditKeyRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditKeyRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -98682,7 +97767,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public auditKeyRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditKeyRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -98725,7 +97810,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -98733,7 +97818,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTend(); } else { - setTend((java.lang.String)value); + setTend((java.lang.Long)value); } break; @@ -98821,12 +97906,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecordStartstrEndstr_args) - return this.equals((auditKeyRecordStartstrEndstr_args)that); + if (that instanceof auditKeyRecordStartEnd_args) + return this.equals((auditKeyRecordStartEnd_args)that); return false; } - public boolean equals(auditKeyRecordStartstrEndstr_args that) { + public boolean equals(auditKeyRecordStartEnd_args that) { if (that == null) return false; if (this == that) @@ -98850,21 +97935,21 @@ public boolean equals(auditKeyRecordStartstrEndstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } - boolean this_present_tend = true && this.isSetTend(); - boolean that_present_tend = true && that.isSetTend(); + boolean this_present_tend = true; + boolean that_present_tend = true; if (this_present_tend || that_present_tend) { if (!(this_present_tend && that_present_tend)) return false; - if (!this.tend.equals(that.tend)) + if (this.tend != that.tend) return false; } @@ -98908,13 +97993,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); - if (isSetTend()) - hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -98932,7 +98013,7 @@ public int hashCode() { } @Override - public int compareTo(auditKeyRecordStartstrEndstr_args other) { + public int compareTo(auditKeyRecordStartEnd_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -99030,7 +98111,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartstrEndstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartEnd_args("); boolean first = true; sb.append("key:"); @@ -99046,19 +98127,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("tend:"); - if (this.tend == null) { - sb.append("null"); - } else { - sb.append(this.tend); - } + sb.append(this.tend); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -99117,17 +98190,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartstrEndstr_argsStandardScheme getScheme() { - return new auditKeyRecordStartstrEndstr_argsStandardScheme(); + public auditKeyRecordStartEnd_argsStandardScheme getScheme() { + return new auditKeyRecordStartEnd_argsStandardScheme(); } } - private static class auditKeyRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -99154,16 +98227,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 4: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tend = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -99207,7 +98280,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -99219,16 +98292,12 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } - if (struct.tend != null) { - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeString(struct.tend); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeI64(struct.tend); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -99250,17 +98319,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar } - private static class auditKeyRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartstrEndstr_argsTupleScheme getScheme() { - return new auditKeyRecordStartstrEndstr_argsTupleScheme(); + public auditKeyRecordStartEnd_argsTupleScheme getScheme() { + return new auditKeyRecordStartEnd_argsTupleScheme(); } } - private static class auditKeyRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -99292,10 +98361,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetTend()) { - oprot.writeString(struct.tend); + oprot.writeI64(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -99309,7 +98378,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -99321,11 +98390,11 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStarts struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(3)) { - struct.tend = iprot.readString(); + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } if (incoming.get(4)) { @@ -99350,31 +98419,28 @@ private static S scheme(org.apache. } } - public static class auditKeyRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartstrEndstr_result"); + public static class auditKeyRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartEnd_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartstrEndstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartstrEndstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartEnd_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartEnd_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -99398,8 +98464,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -99456,35 +98520,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartstrEndstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartEnd_result.class, metaDataMap); } - public auditKeyRecordStartstrEndstr_result() { + public auditKeyRecordStartEnd_result() { } - public auditKeyRecordStartstrEndstr_result( + public auditKeyRecordStartEnd_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public auditKeyRecordStartstrEndstr_result(auditKeyRecordStartstrEndstr_result other) { + public auditKeyRecordStartEnd_result(auditKeyRecordStartEnd_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -99507,16 +98567,13 @@ public auditKeyRecordStartstrEndstr_result(auditKeyRecordStartstrEndstr_result o this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public auditKeyRecordStartstrEndstr_result deepCopy() { - return new auditKeyRecordStartstrEndstr_result(this); + public auditKeyRecordStartEnd_result deepCopy() { + return new auditKeyRecordStartEnd_result(this); } @Override @@ -99525,7 +98582,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -99544,7 +98600,7 @@ public java.util.Map> getSuccess return this.success; } - public auditKeyRecordStartstrEndstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditKeyRecordStartEnd_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -99569,7 +98625,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public auditKeyRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditKeyRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -99594,7 +98650,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public auditKeyRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditKeyRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -99615,11 +98671,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public auditKeyRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public auditKeyRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -99639,31 +98695,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public auditKeyRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -99695,15 +98726,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -99726,9 +98749,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -99749,20 +98769,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof auditKeyRecordStartstrEndstr_result) - return this.equals((auditKeyRecordStartstrEndstr_result)that); + if (that instanceof auditKeyRecordStartEnd_result) + return this.equals((auditKeyRecordStartEnd_result)that); return false; } - public boolean equals(auditKeyRecordStartstrEndstr_result that) { + public boolean equals(auditKeyRecordStartEnd_result that) { if (that == null) return false; if (this == that) @@ -99804,15 +98822,6 @@ public boolean equals(auditKeyRecordStartstrEndstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -99836,15 +98845,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(auditKeyRecordStartstrEndstr_result other) { + public int compareTo(auditKeyRecordStartEnd_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -99891,16 +98896,6 @@ public int compareTo(auditKeyRecordStartstrEndstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -99921,7 +98916,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartstrEndstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartEnd_result("); boolean first = true; sb.append("success:"); @@ -99955,14 +98950,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -99988,17 +98975,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class auditKeyRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartstrEndstr_resultStandardScheme getScheme() { - return new auditKeyRecordStartstrEndstr_resultStandardScheme(); + public auditKeyRecordStartEnd_resultStandardScheme getScheme() { + return new auditKeyRecordStartEnd_resultStandardScheme(); } } - private static class auditKeyRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -100011,25 +98998,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map180 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map180.size); - long _key181; - @org.apache.thrift.annotation.Nullable java.util.List _val182; - for (int _i183 = 0; _i183 < _map180.size; ++_i183) + org.apache.thrift.protocol.TMap _map162 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map162.size); + long _key163; + @org.apache.thrift.annotation.Nullable java.util.List _val164; + for (int _i165 = 0; _i165 < _map162.size; ++_i165) { - _key181 = iprot.readI64(); + _key163 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list184 = iprot.readListBegin(); - _val182 = new java.util.ArrayList(_list184.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem185; - for (int _i186 = 0; _i186 < _list184.size; ++_i186) + org.apache.thrift.protocol.TList _list166 = iprot.readListBegin(); + _val164 = new java.util.ArrayList(_list166.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem167; + for (int _i168 = 0; _i168 < _list166.size; ++_i168) { - _elem185 = iprot.readString(); - _val182.add(_elem185); + _elem167 = iprot.readString(); + _val164.add(_elem167); } iprot.readListEnd(); } - struct.success.put(_key181, _val182); + struct.success.put(_key163, _val164); } iprot.readMapEnd(); } @@ -100058,22 +99045,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -100086,7 +99064,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStart } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -100094,14 +99072,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); - for (java.util.Map.Entry> _iter187 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter169 : struct.success.entrySet()) { - oprot.writeI64(_iter187.getKey()); + oprot.writeI64(_iter169.getKey()); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter187.getValue().size())); - for (java.lang.String _iter188 : _iter187.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter169.getValue().size())); + for (java.lang.String _iter170 : _iter169.getValue()) { - oprot.writeString(_iter188); + oprot.writeString(_iter170); } oprot.writeListEnd(); } @@ -100125,28 +99103,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStar struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class auditKeyRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public auditKeyRecordStartstrEndstr_resultTupleScheme getScheme() { - return new auditKeyRecordStartstrEndstr_resultTupleScheme(); + public auditKeyRecordStartEnd_resultTupleScheme getScheme() { + return new auditKeyRecordStartEnd_resultTupleScheme(); } } - private static class auditKeyRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -100161,21 +99134,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter189 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter171 : struct.success.entrySet()) { - oprot.writeI64(_iter189.getKey()); + oprot.writeI64(_iter171.getKey()); { - oprot.writeI32(_iter189.getValue().size()); - for (java.lang.String _iter190 : _iter189.getValue()) + oprot.writeI32(_iter171.getValue().size()); + for (java.lang.String _iter172 : _iter171.getValue()) { - oprot.writeString(_iter190); + oprot.writeString(_iter172); } } } @@ -100190,35 +99160,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStart if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map191 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); - struct.success = new java.util.LinkedHashMap>(2*_map191.size); - long _key192; - @org.apache.thrift.annotation.Nullable java.util.List _val193; - for (int _i194 = 0; _i194 < _map191.size; ++_i194) + org.apache.thrift.protocol.TMap _map173 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map173.size); + long _key174; + @org.apache.thrift.annotation.Nullable java.util.List _val175; + for (int _i176 = 0; _i176 < _map173.size; ++_i176) { - _key192 = iprot.readI64(); + _key174 = iprot.readI64(); { - org.apache.thrift.protocol.TList _list195 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - _val193 = new java.util.ArrayList(_list195.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem196; - for (int _i197 = 0; _i197 < _list195.size; ++_i197) + org.apache.thrift.protocol.TList _list177 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val175 = new java.util.ArrayList(_list177.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem178; + for (int _i179 = 0; _i179 < _list177.size; ++_i179) { - _elem196 = iprot.readString(); - _val193.add(_elem196); + _elem178 = iprot.readString(); + _val175.add(_elem178); } } - struct.success.put(_key192, _val193); + struct.success.put(_key174, _val175); } } struct.setSuccessIsSet(true); @@ -100234,15 +99201,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStarts struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -100251,18 +99213,24 @@ private static S scheme(org.apache. } } - public static class browseKey_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKey_args"); + public static class auditKeyRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartstrEndstr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKey_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKey_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartstrEndstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartstrEndstr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -100270,9 +99238,12 @@ public static class browseKey_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -100290,11 +99261,17 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEY return KEY; - case 2: // CREDS + case 2: // RECORD + return RECORD; + case 3: // START + return START; + case 4: // TEND + return TEND; + case 5: // CREDS return CREDS; - case 3: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -100339,11 +99316,19 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -100351,20 +99336,27 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKey_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartstrEndstr_args.class, metaDataMap); } - public browseKey_args() { + public auditKeyRecordStartstrEndstr_args() { } - public browseKey_args( + public auditKeyRecordStartstrEndstr_args( java.lang.String key, + long record, + java.lang.String start, + java.lang.String tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.key = key; + this.record = record; + setRecordIsSet(true); + this.start = start; + this.tend = tend; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -100373,10 +99365,18 @@ public browseKey_args( /** * Performs a deep copy on other. */ - public browseKey_args(browseKey_args other) { + public auditKeyRecordStartstrEndstr_args(auditKeyRecordStartstrEndstr_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } + this.record = other.record; + if (other.isSetStart()) { + this.start = other.start; + } + if (other.isSetTend()) { + this.tend = other.tend; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -100389,13 +99389,17 @@ public browseKey_args(browseKey_args other) { } @Override - public browseKey_args deepCopy() { - return new browseKey_args(this); + public auditKeyRecordStartstrEndstr_args deepCopy() { + return new auditKeyRecordStartstrEndstr_args(this); } @Override public void clear() { this.key = null; + setRecordIsSet(false); + this.record = 0; + this.start = null; + this.tend = null; this.creds = null; this.transaction = null; this.environment = null; @@ -100406,7 +99410,7 @@ public java.lang.String getKey() { return this.key; } - public browseKey_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public auditKeyRecordStartstrEndstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -100426,12 +99430,85 @@ public void setKeyIsSet(boolean value) { } } + public long getRecord() { + return this.record; + } + + public auditKeyRecordStartstrEndstr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { + return this.start; + } + + public auditKeyRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + this.start = start; + return this; + } + + public void unsetStart() { + this.start = null; + } + + /** Returns true if field start is set (has been assigned a value) and false otherwise */ + public boolean isSetStart() { + return this.start != null; + } + + public void setStartIsSet(boolean value) { + if (!value) { + this.start = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTend() { + return this.tend; + } + + public auditKeyRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + this.tend = tend; + return this; + } + + public void unsetTend() { + this.tend = null; + } + + /** Returns true if field tend is set (has been assigned a value) and false otherwise */ + public boolean isSetTend() { + return this.tend != null; + } + + public void setTendIsSet(boolean value) { + if (!value) { + this.tend = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public browseKey_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public auditKeyRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -100456,7 +99533,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public browseKey_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public auditKeyRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -100481,7 +99558,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public browseKey_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public auditKeyRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -100512,6 +99589,30 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + + case START: + if (value == null) { + unsetStart(); + } else { + setStart((java.lang.String)value); + } + break; + + case TEND: + if (value == null) { + unsetTend(); + } else { + setTend((java.lang.String)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -100546,6 +99647,15 @@ public java.lang.Object getFieldValue(_Fields field) { case KEY: return getKey(); + case RECORD: + return getRecord(); + + case START: + return getStart(); + + case TEND: + return getTend(); + case CREDS: return getCreds(); @@ -100569,6 +99679,12 @@ public boolean isSet(_Fields field) { switch (field) { case KEY: return isSetKey(); + case RECORD: + return isSetRecord(); + case START: + return isSetStart(); + case TEND: + return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -100581,12 +99697,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKey_args) - return this.equals((browseKey_args)that); + if (that instanceof auditKeyRecordStartstrEndstr_args) + return this.equals((auditKeyRecordStartstrEndstr_args)that); return false; } - public boolean equals(browseKey_args that) { + public boolean equals(auditKeyRecordStartstrEndstr_args that) { if (that == null) return false; if (this == that) @@ -100601,6 +99717,33 @@ public boolean equals(browseKey_args that) { return false; } + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); + if (this_present_start || that_present_start) { + if (!(this_present_start && that_present_start)) + return false; + if (!this.start.equals(that.start)) + return false; + } + + boolean this_present_tend = true && this.isSetTend(); + boolean that_present_tend = true && that.isSetTend(); + if (this_present_tend || that_present_tend) { + if (!(this_present_tend && that_present_tend)) + return false; + if (!this.tend.equals(that.tend)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -100639,6 +99782,16 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); + if (isSetTend()) + hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -100655,7 +99808,7 @@ public int hashCode() { } @Override - public int compareTo(browseKey_args other) { + public int compareTo(auditKeyRecordStartstrEndstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -100672,6 +99825,36 @@ public int compareTo(browseKey_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetStart()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTend()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -100723,7 +99906,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKey_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartstrEndstr_args("); boolean first = true; sb.append("key:"); @@ -100734,6 +99917,26 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("start:"); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } + first = false; + if (!first) sb.append(", "); + sb.append("tend:"); + if (this.tend == null) { + sb.append("null"); + } else { + sb.append(this.tend); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -100782,23 +99985,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 browseKey_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKey_argsStandardScheme getScheme() { - return new browseKey_argsStandardScheme(); + public auditKeyRecordStartstrEndstr_argsStandardScheme getScheme() { + return new auditKeyRecordStartstrEndstr_argsStandardScheme(); } } - private static class browseKey_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -100816,7 +100021,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 2: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // START + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); + struct.setStartIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // TEND + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -100825,7 +100054,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -100834,7 +100063,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -100854,7 +100083,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_args stru } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKey_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -100863,6 +100092,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKey_args str oprot.writeString(struct.key); oprot.writeFieldEnd(); } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } + if (struct.tend != null) { + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeString(struct.tend); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -100884,35 +100126,53 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKey_args str } - private static class browseKey_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKey_argsTupleScheme getScheme() { - return new browseKey_argsTupleScheme(); + public auditKeyRecordStartstrEndstr_argsTupleScheme getScheme() { + return new auditKeyRecordStartstrEndstr_argsTupleScheme(); } } - private static class browseKey_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKey_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetStart()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetTend()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetCreds()) { + optionals.set(4); + } + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetStart()) { + oprot.writeString(struct.start); + } + if (struct.isSetTend()) { + oprot.writeString(struct.tend); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -100925,24 +100185,36 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKey_args stru } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKey_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(2)) { + struct.start = iprot.readString(); + struct.setStartIsSet(true); + } + if (incoming.get(3)) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -100954,28 +100226,31 @@ private static S scheme(org.apache. } } - public static class browseKey_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKey_result"); + public static class auditKeyRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("auditKeyRecordStartstrEndstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKey_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKey_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new auditKeyRecordStartstrEndstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new auditKeyRecordStartstrEndstr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -100999,6 +100274,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -101047,49 +100324,53 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKey_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(auditKeyRecordStartstrEndstr_result.class, metaDataMap); } - public browseKey_result() { + public auditKeyRecordStartstrEndstr_result() { } - public browseKey_result( - java.util.Map> success, + public auditKeyRecordStartstrEndstr_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public browseKey_result(browseKey_result other) { + public auditKeyRecordStartstrEndstr_result(auditKeyRecordStartstrEndstr_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { - com.cinchapi.concourse.thrift.TObject other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); + java.lang.Long other_element_key = other_element.getKey(); + java.util.List other_element_value = other_element.getValue(); - com.cinchapi.concourse.thrift.TObject __this__success_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_key); + java.lang.Long __this__success_copy_key = other_element_key; - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); + java.util.List __this__success_copy_value = new java.util.ArrayList(other_element_value); __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -101102,13 +100383,16 @@ public browseKey_result(browseKey_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public browseKey_result deepCopy() { - return new browseKey_result(this); + public auditKeyRecordStartstrEndstr_result deepCopy() { + return new auditKeyRecordStartstrEndstr_result(this); } @Override @@ -101117,25 +100401,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(com.cinchapi.concourse.thrift.TObject key, java.util.Set val) { + public void putToSuccess(long key, java.util.List val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public browseKey_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public auditKeyRecordStartstrEndstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -101160,7 +100445,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public browseKey_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public auditKeyRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -101185,7 +100470,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public browseKey_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public auditKeyRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -101206,11 +100491,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public browseKey_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public auditKeyRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -101230,6 +100515,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public auditKeyRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -101237,7 +100547,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map>)value); } break; @@ -101261,7 +100571,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -101284,6 +100602,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -101304,18 +100625,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKey_result) - return this.equals((browseKey_result)that); + if (that instanceof auditKeyRecordStartstrEndstr_result) + return this.equals((auditKeyRecordStartstrEndstr_result)that); return false; } - public boolean equals(browseKey_result that) { + public boolean equals(auditKeyRecordStartstrEndstr_result that) { if (that == null) return false; if (this == that) @@ -101357,6 +100680,15 @@ public boolean equals(browseKey_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -101380,11 +100712,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(browseKey_result other) { + public int compareTo(auditKeyRecordStartstrEndstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -101431,6 +100767,16 @@ public int compareTo(browseKey_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -101451,7 +100797,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKey_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("auditKeyRecordStartstrEndstr_result("); boolean first = true; sb.append("success:"); @@ -101485,6 +100831,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -101510,17 +100864,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class browseKey_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKey_resultStandardScheme getScheme() { - return new browseKey_resultStandardScheme(); + public auditKeyRecordStartstrEndstr_resultStandardScheme getScheme() { + return new auditKeyRecordStartstrEndstr_resultStandardScheme(); } } - private static class browseKey_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class auditKeyRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, auditKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -101533,26 +100887,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_result st case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map198 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map198.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key199; - @org.apache.thrift.annotation.Nullable java.util.Set _val200; - for (int _i201 = 0; _i201 < _map198.size; ++_i201) + org.apache.thrift.protocol.TMap _map180 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map180.size); + long _key181; + @org.apache.thrift.annotation.Nullable java.util.List _val182; + for (int _i183 = 0; _i183 < _map180.size; ++_i183) { - _key199 = new com.cinchapi.concourse.thrift.TObject(); - _key199.read(iprot); + _key181 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set202 = iprot.readSetBegin(); - _val200 = new java.util.LinkedHashSet(2*_set202.size); - long _elem203; - for (int _i204 = 0; _i204 < _set202.size; ++_i204) + org.apache.thrift.protocol.TList _list184 = iprot.readListBegin(); + _val182 = new java.util.ArrayList(_list184.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem185; + for (int _i186 = 0; _i186 < _list184.size; ++_i186) { - _elem203 = iprot.readI64(); - _val200.add(_elem203); + _elem185 = iprot.readString(); + _val182.add(_elem185); } - iprot.readSetEnd(); + iprot.readListEnd(); } - struct.success.put(_key199, _val200); + struct.success.put(_key181, _val182); } iprot.readMapEnd(); } @@ -101581,13 +100934,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_result st break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -101600,24 +100962,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_result st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKey_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, auditKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter205 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST, struct.success.size())); + for (java.util.Map.Entry> _iter187 : struct.success.entrySet()) { - _iter205.getKey().write(oprot); + oprot.writeI64(_iter187.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter205.getValue().size())); - for (long _iter206 : _iter205.getValue()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, _iter187.getValue().size())); + for (java.lang.String _iter188 : _iter187.getValue()) { - oprot.writeI64(_iter206); + oprot.writeString(_iter188); } - oprot.writeSetEnd(); + oprot.writeListEnd(); } } oprot.writeMapEnd(); @@ -101639,23 +101001,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKey_result s struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class browseKey_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class auditKeyRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKey_resultTupleScheme getScheme() { - return new browseKey_resultTupleScheme(); + public auditKeyRecordStartstrEndstr_resultTupleScheme getScheme() { + return new auditKeyRecordStartstrEndstr_resultTupleScheme(); } } - private static class browseKey_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class auditKeyRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKey_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -101670,18 +101037,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKey_result st if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter207 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter189 : struct.success.entrySet()) { - _iter207.getKey().write(oprot); + oprot.writeI64(_iter189.getKey()); { - oprot.writeI32(_iter207.getValue().size()); - for (long _iter208 : _iter207.getValue()) + oprot.writeI32(_iter189.getValue().size()); + for (java.lang.String _iter190 : _iter189.getValue()) { - oprot.writeI64(_iter208); + oprot.writeString(_iter190); } } } @@ -101696,33 +101066,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKey_result st if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKey_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, auditKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map209 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map209.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key210; - @org.apache.thrift.annotation.Nullable java.util.Set _val211; - for (int _i212 = 0; _i212 < _map209.size; ++_i212) + org.apache.thrift.protocol.TMap _map191 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.LIST); + struct.success = new java.util.LinkedHashMap>(2*_map191.size); + long _key192; + @org.apache.thrift.annotation.Nullable java.util.List _val193; + for (int _i194 = 0; _i194 < _map191.size; ++_i194) { - _key210 = new com.cinchapi.concourse.thrift.TObject(); - _key210.read(iprot); + _key192 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set213 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val211 = new java.util.LinkedHashSet(2*_set213.size); - long _elem214; - for (int _i215 = 0; _i215 < _set213.size; ++_i215) + org.apache.thrift.protocol.TList _list195 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + _val193 = new java.util.ArrayList(_list195.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem196; + for (int _i197 = 0; _i197 < _list195.size; ++_i197) { - _elem214 = iprot.readI64(); - _val211.add(_elem214); + _elem196 = iprot.readString(); + _val193.add(_elem196); } } - struct.success.put(_key210, _val211); + struct.success.put(_key192, _val193); } } struct.setSuccessIsSet(true); @@ -101738,10 +101110,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, browseKey_result str struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -101750,25 +101127,25 @@ private static S scheme(org.apache. } } - public static class browseKeys_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeys_args"); + public static class browseKey_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKey_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeys_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeys_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKey_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKey_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEYS((short)1, "keys"), + KEY((short)1, "key"), CREDS((short)2, "creds"), TRANSACTION((short)3, "transaction"), ENVIRONMENT((short)4, "environment"); @@ -101787,8 +101164,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEYS - return KEYS; + case 1: // KEY + return KEY; case 2: // CREDS return CREDS; case 3: // TRANSACTION @@ -101841,9 +101218,8 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -101851,20 +101227,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeys_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKey_args.class, metaDataMap); } - public browseKeys_args() { + public browseKey_args() { } - public browseKeys_args( - java.util.List keys, + public browseKey_args( + java.lang.String key, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; + this.key = key; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -101873,10 +101249,9 @@ public browseKeys_args( /** * Performs a deep copy on other. */ - public browseKeys_args(browseKeys_args other) { - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + public browseKey_args(browseKey_args other) { + if (other.isSetKey()) { + this.key = other.key; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -101890,56 +101265,40 @@ public browseKeys_args(browseKeys_args other) { } @Override - public browseKeys_args deepCopy() { - return new browseKeys_args(this); + public browseKey_args deepCopy() { + return new browseKey_args(this); } @Override public void clear() { - this.keys = null; + this.key = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public browseKeys_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public browseKey_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; + this.key = null; } } @@ -101948,7 +101307,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public browseKeys_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public browseKey_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -101973,7 +101332,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public browseKeys_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public browseKey_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -101998,7 +101357,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public browseKeys_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public browseKey_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -102021,11 +101380,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; @@ -102060,8 +101419,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); case CREDS: return getCreds(); @@ -102084,8 +101443,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); + case KEY: + return isSetKey(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -102098,23 +101457,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeys_args) - return this.equals((browseKeys_args)that); + if (that instanceof browseKey_args) + return this.equals((browseKey_args)that); return false; } - public boolean equals(browseKeys_args that) { + public boolean equals(browseKey_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } @@ -102152,9 +101511,9 @@ public boolean equals(browseKeys_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -102172,19 +101531,19 @@ public int hashCode() { } @Override - public int compareTo(browseKeys_args other) { + public int compareTo(browseKey_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } @@ -102240,14 +101599,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeys_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKey_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); @@ -102305,17 +101664,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class browseKeys_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKey_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeys_argsStandardScheme getScheme() { - return new browseKeys_argsStandardScheme(); + public browseKey_argsStandardScheme getScheme() { + return new browseKey_argsStandardScheme(); } } - private static class browseKeys_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKey_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeys_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -102325,20 +101684,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeys_args str break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list216 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list216.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem217; - for (int _i218 = 0; _i218 < _list216.size; ++_i218) - { - _elem217 = iprot.readString(); - struct.keys.add(_elem217); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -102381,20 +101730,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeys_args str } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeys_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKey_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter219 : struct.keys) - { - oprot.writeString(_iter219); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -102418,20 +101760,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeys_args st } - private static class browseKeys_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKey_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeys_argsTupleScheme getScheme() { - return new browseKeys_argsTupleScheme(); + public browseKey_argsTupleScheme getScheme() { + return new browseKey_argsTupleScheme(); } } - private static class browseKeys_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKey_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeys_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKey_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } if (struct.isSetCreds()) { @@ -102444,14 +101786,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeys_args str optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter220 : struct.keys) - { - oprot.writeString(_iter220); - } - } + if (struct.isSetKey()) { + oprot.writeString(struct.key); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -102465,21 +101801,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeys_args str } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeys_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKey_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list221 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list221.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem222; - for (int _i223 = 0; _i223 < _list221.size; ++_i223) - { - _elem222 = iprot.readString(); - struct.keys.add(_elem222); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -102503,18 +101830,18 @@ private static S scheme(org.apache. } } - public static class browseKeys_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeys_result"); + public static class browseKey_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKey_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeys_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeys_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKey_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKey_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -102596,11 +101923,9 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -102608,14 +101933,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeys_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKey_result.class, metaDataMap); } - public browseKeys_result() { + public browseKey_result() { } - public browseKeys_result( - java.util.Map>> success, + public browseKey_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -102630,28 +101955,17 @@ public browseKeys_result( /** * Performs a deep copy on other. */ - public browseKeys_result(browseKeys_result other) { + public browseKey_result(browseKey_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.String other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.String __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - com.cinchapi.concourse.thrift.TObject other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { - com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_key); + com.cinchapi.concourse.thrift.TObject other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + com.cinchapi.concourse.thrift.TObject __this__success_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_key); - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -102669,8 +101983,8 @@ public browseKeys_result(browseKeys_result other) { } @Override - public browseKeys_result deepCopy() { - return new browseKeys_result(this); + public browseKey_result deepCopy() { + return new browseKey_result(this); } @Override @@ -102685,19 +101999,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.lang.String key, java.util.Map> val) { + public void putToSuccess(com.cinchapi.concourse.thrift.TObject key, java.util.Set val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public browseKeys_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public browseKey_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -102722,7 +102036,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public browseKeys_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public browseKey_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -102747,7 +102061,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public browseKeys_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public browseKey_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -102772,7 +102086,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public browseKeys_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public browseKey_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -102799,7 +102113,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.Map>)value); } break; @@ -102872,12 +102186,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeys_result) - return this.equals((browseKeys_result)that); + if (that instanceof browseKey_result) + return this.equals((browseKey_result)that); return false; } - public boolean equals(browseKeys_result that) { + public boolean equals(browseKey_result that) { if (that == null) return false; if (this == that) @@ -102946,7 +102260,7 @@ public int hashCode() { } @Override - public int compareTo(browseKeys_result other) { + public int compareTo(browseKey_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -103013,7 +102327,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeys_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKey_result("); boolean first = true; sb.append("success:"); @@ -103072,17 +102386,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class browseKeys_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKey_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeys_resultStandardScheme getScheme() { - return new browseKeys_resultStandardScheme(); + public browseKey_resultStandardScheme getScheme() { + return new browseKey_resultStandardScheme(); } } - private static class browseKeys_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKey_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeys_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKey_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -103095,38 +102409,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeys_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map224 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map224.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key225; - @org.apache.thrift.annotation.Nullable java.util.Map> _val226; - for (int _i227 = 0; _i227 < _map224.size; ++_i227) + org.apache.thrift.protocol.TMap _map198 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map198.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key199; + @org.apache.thrift.annotation.Nullable java.util.Set _val200; + for (int _i201 = 0; _i201 < _map198.size; ++_i201) { - _key225 = iprot.readString(); + _key199 = new com.cinchapi.concourse.thrift.TObject(); + _key199.read(iprot); { - org.apache.thrift.protocol.TMap _map228 = iprot.readMapBegin(); - _val226 = new java.util.LinkedHashMap>(2*_map228.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key229; - @org.apache.thrift.annotation.Nullable java.util.Set _val230; - for (int _i231 = 0; _i231 < _map228.size; ++_i231) + org.apache.thrift.protocol.TSet _set202 = iprot.readSetBegin(); + _val200 = new java.util.LinkedHashSet(2*_set202.size); + long _elem203; + for (int _i204 = 0; _i204 < _set202.size; ++_i204) { - _key229 = new com.cinchapi.concourse.thrift.TObject(); - _key229.read(iprot); - { - org.apache.thrift.protocol.TSet _set232 = iprot.readSetBegin(); - _val230 = new java.util.LinkedHashSet(2*_set232.size); - long _elem233; - for (int _i234 = 0; _i234 < _set232.size; ++_i234) - { - _elem233 = iprot.readI64(); - _val230.add(_elem233); - } - iprot.readSetEnd(); - } - _val226.put(_key229, _val230); + _elem203 = iprot.readI64(); + _val200.add(_elem203); } - iprot.readMapEnd(); + iprot.readSetEnd(); } - struct.success.put(_key225, _val226); + struct.success.put(_key199, _val200); } iprot.readMapEnd(); } @@ -103174,32 +102476,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeys_result s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeys_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKey_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter235 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter205 : struct.success.entrySet()) { - oprot.writeString(_iter235.getKey()); + _iter205.getKey().write(oprot); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, _iter235.getValue().size())); - for (java.util.Map.Entry> _iter236 : _iter235.getValue().entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter205.getValue().size())); + for (long _iter206 : _iter205.getValue()) { - _iter236.getKey().write(oprot); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter236.getValue().size())); - for (long _iter237 : _iter236.getValue()) - { - oprot.writeI64(_iter237); - } - oprot.writeSetEnd(); - } + oprot.writeI64(_iter206); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } } oprot.writeMapEnd(); @@ -103227,17 +102521,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeys_result } - private static class browseKeys_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKey_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeys_resultTupleScheme getScheme() { - return new browseKeys_resultTupleScheme(); + public browseKey_resultTupleScheme getScheme() { + return new browseKey_resultTupleScheme(); } } - private static class browseKeys_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKey_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeys_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKey_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -103256,21 +102550,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeys_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter238 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter207 : struct.success.entrySet()) { - oprot.writeString(_iter238.getKey()); + _iter207.getKey().write(oprot); { - oprot.writeI32(_iter238.getValue().size()); - for (java.util.Map.Entry> _iter239 : _iter238.getValue().entrySet()) + oprot.writeI32(_iter207.getValue().size()); + for (long _iter208 : _iter207.getValue()) { - _iter239.getKey().write(oprot); - { - oprot.writeI32(_iter239.getValue().size()); - for (long _iter240 : _iter239.getValue()) - { - oprot.writeI64(_iter240); - } - } + oprot.writeI64(_iter208); } } } @@ -103288,41 +102575,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeys_result s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeys_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKey_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map241 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map241.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key242; - @org.apache.thrift.annotation.Nullable java.util.Map> _val243; - for (int _i244 = 0; _i244 < _map241.size; ++_i244) + org.apache.thrift.protocol.TMap _map209 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map209.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key210; + @org.apache.thrift.annotation.Nullable java.util.Set _val211; + for (int _i212 = 0; _i212 < _map209.size; ++_i212) { - _key242 = iprot.readString(); + _key210 = new com.cinchapi.concourse.thrift.TObject(); + _key210.read(iprot); { - org.apache.thrift.protocol.TMap _map245 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); - _val243 = new java.util.LinkedHashMap>(2*_map245.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key246; - @org.apache.thrift.annotation.Nullable java.util.Set _val247; - for (int _i248 = 0; _i248 < _map245.size; ++_i248) + org.apache.thrift.protocol.TSet _set213 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val211 = new java.util.LinkedHashSet(2*_set213.size); + long _elem214; + for (int _i215 = 0; _i215 < _set213.size; ++_i215) { - _key246 = new com.cinchapi.concourse.thrift.TObject(); - _key246.read(iprot); - { - org.apache.thrift.protocol.TSet _set249 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val247 = new java.util.LinkedHashSet(2*_set249.size); - long _elem250; - for (int _i251 = 0; _i251 < _set249.size; ++_i251) - { - _elem250 = iprot.readI64(); - _val247.add(_elem250); - } - } - _val243.put(_key246, _val247); + _elem214 = iprot.readI64(); + _val211.add(_elem214); } } - struct.success.put(_key242, _val243); + struct.success.put(_key210, _val211); } } struct.setSuccessIsSet(true); @@ -103350,31 +102626,28 @@ private static S scheme(org.apache. } } - public static class browseKeyTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeyTime_args"); + public static class browseKeys_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeys_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeyTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeyTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeys_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeys_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + KEYS((short)1, "keys"), + CREDS((short)2, "creds"), + TRANSACTION((short)3, "transaction"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -103390,15 +102663,13 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // CREDS + case 1: // KEYS + return KEYS; + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -103443,15 +102714,12 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -103459,23 +102727,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeyTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeys_args.class, metaDataMap); } - public browseKeyTime_args() { + public browseKeys_args() { } - public browseKeyTime_args( - java.lang.String key, - long timestamp, + public browseKeys_args( + java.util.List keys, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.keys = keys; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -103484,12 +102749,11 @@ public browseKeyTime_args( /** * Performs a deep copy on other. */ - public browseKeyTime_args(browseKeyTime_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; + public browseKeys_args(browseKeys_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -103502,66 +102766,57 @@ public browseKeyTime_args(browseKeyTime_args other) { } @Override - public browseKeyTime_args deepCopy() { - return new browseKeyTime_args(this); + public browseKeys_args deepCopy() { + return new browseKeys_args(this); } @Override public void clear() { - this.key = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.keys = null; this.creds = null; this.transaction = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; - } - - public browseKeyTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; - return this; - } - - public void unsetKey() { - this.key = null; + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public void setKeyIsSet(boolean value) { - if (!value) { - this.key = null; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); } + this.keys.add(elem); } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; } - public browseKeyTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public browseKeys_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetKeys() { + this.keys = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setKeysIsSet(boolean value) { + if (!value) { + this.keys = null; + } } @org.apache.thrift.annotation.Nullable @@ -103569,7 +102824,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public browseKeyTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public browseKeys_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -103594,7 +102849,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public browseKeyTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public browseKeys_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -103619,7 +102874,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public browseKeyTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public browseKeys_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -103642,19 +102897,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: - if (value == null) { - unsetKey(); - } else { - setKey((java.lang.String)value); - } - break; - - case TIMESTAMP: + case KEYS: if (value == null) { - unsetTimestamp(); + unsetKeys(); } else { - setTimestamp((java.lang.Long)value); + setKeys((java.util.List)value); } break; @@ -103689,11 +102936,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); - - case TIMESTAMP: - return getTimestamp(); + case KEYS: + return getKeys(); case CREDS: return getCreds(); @@ -103716,10 +102960,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case TIMESTAMP: - return isSetTimestamp(); + case KEYS: + return isSetKeys(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -103732,32 +102974,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeyTime_args) - return this.equals((browseKeyTime_args)that); + if (that instanceof browseKeys_args) + return this.equals((browseKeys_args)that); return false; } - public boolean equals(browseKeyTime_args that) { + public boolean equals(browseKeys_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) - return false; - if (!this.key.equals(that.key)) - return false; - } - - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (this.timestamp != that.timestamp) + if (!this.keys.equals(that.keys)) return false; } @@ -103795,11 +103028,9 @@ public boolean equals(browseKeyTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -103817,29 +103048,19 @@ public int hashCode() { } @Override - public int compareTo(browseKeyTime_args other) { + public int compareTo(browseKeys_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } @@ -103895,21 +103116,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeyTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeys_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -103958,25 +103175,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 browseKeyTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeys_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeyTime_argsStandardScheme getScheme() { - return new browseKeyTime_argsStandardScheme(); + public browseKeys_argsStandardScheme getScheme() { + return new browseKeys_argsStandardScheme(); } } - private static class browseKeyTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeys_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeys_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -103986,23 +103201,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_args break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list216 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list216.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem217; + for (int _i218 = 0; _i218 < _list216.size; ++_i218) + { + _elem217 = iprot.readString(); + struct.keys.add(_elem217); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -104011,7 +103228,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -104020,7 +103237,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -104040,18 +103257,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeys_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter219 : struct.keys) + { + oprot.writeString(_iter219); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -104073,40 +103294,40 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTime_args } - private static class browseKeyTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeys_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeyTime_argsTupleScheme getScheme() { - return new browseKeyTime_argsTupleScheme(); + public browseKeys_argsTupleScheme getScheme() { + return new browseKeys_argsTupleScheme(); } } - private static class browseKeyTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeys_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeys_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetTimestamp()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + optionals.set(3); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeBitSet(optionals, 4); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter220 : struct.keys) + { + oprot.writeString(_iter220); + } + } } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -104120,28 +103341,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeys_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list221 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list221.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem222; + for (int _i223 = 0; _i223 < _list221.size; ++_i223) + { + _elem222 = iprot.readString(); + struct.keys.add(_elem222); + } + } + struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -104153,18 +103379,18 @@ private static S scheme(org.apache. } } - public static class browseKeyTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeyTime_result"); + public static class browseKeys_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeys_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeyTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeyTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeys_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeys_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -104246,9 +103472,11 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -104256,14 +103484,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeyTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeys_result.class, metaDataMap); } - public browseKeyTime_result() { + public browseKeys_result() { } - public browseKeyTime_result( - java.util.Map> success, + public browseKeys_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -104278,17 +103506,28 @@ public browseKeyTime_result( /** * Performs a deep copy on other. */ - public browseKeyTime_result(browseKeyTime_result other) { + public browseKeys_result(browseKeys_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - com.cinchapi.concourse.thrift.TObject other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); + java.lang.String other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); - com.cinchapi.concourse.thrift.TObject __this__success_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_key); + java.lang.String __this__success_copy_key = other_element_key; - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + com.cinchapi.concourse.thrift.TObject other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_key); + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -104306,8 +103545,8 @@ public browseKeyTime_result(browseKeyTime_result other) { } @Override - public browseKeyTime_result deepCopy() { - return new browseKeyTime_result(this); + public browseKeys_result deepCopy() { + return new browseKeys_result(this); } @Override @@ -104322,19 +103561,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(com.cinchapi.concourse.thrift.TObject key, java.util.Set val) { + public void putToSuccess(java.lang.String key, java.util.Map> val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap>>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public browseKeyTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public browseKeys_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -104359,7 +103598,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public browseKeyTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public browseKeys_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -104384,7 +103623,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public browseKeyTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public browseKeys_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -104409,7 +103648,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public browseKeyTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public browseKeys_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -104436,7 +103675,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map>>)value); } break; @@ -104509,12 +103748,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeyTime_result) - return this.equals((browseKeyTime_result)that); + if (that instanceof browseKeys_result) + return this.equals((browseKeys_result)that); return false; } - public boolean equals(browseKeyTime_result that) { + public boolean equals(browseKeys_result that) { if (that == null) return false; if (this == that) @@ -104583,7 +103822,7 @@ public int hashCode() { } @Override - public int compareTo(browseKeyTime_result other) { + public int compareTo(browseKeys_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -104650,7 +103889,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeyTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeys_result("); boolean first = true; sb.append("success:"); @@ -104709,17 +103948,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class browseKeyTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeys_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeyTime_resultStandardScheme getScheme() { - return new browseKeyTime_resultStandardScheme(); + public browseKeys_resultStandardScheme getScheme() { + return new browseKeys_resultStandardScheme(); } } - private static class browseKeyTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeys_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeys_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -104732,26 +103971,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map252 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map252.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key253; - @org.apache.thrift.annotation.Nullable java.util.Set _val254; - for (int _i255 = 0; _i255 < _map252.size; ++_i255) + org.apache.thrift.protocol.TMap _map224 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map224.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key225; + @org.apache.thrift.annotation.Nullable java.util.Map> _val226; + for (int _i227 = 0; _i227 < _map224.size; ++_i227) { - _key253 = new com.cinchapi.concourse.thrift.TObject(); - _key253.read(iprot); + _key225 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set256 = iprot.readSetBegin(); - _val254 = new java.util.LinkedHashSet(2*_set256.size); - long _elem257; - for (int _i258 = 0; _i258 < _set256.size; ++_i258) + org.apache.thrift.protocol.TMap _map228 = iprot.readMapBegin(); + _val226 = new java.util.LinkedHashMap>(2*_map228.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key229; + @org.apache.thrift.annotation.Nullable java.util.Set _val230; + for (int _i231 = 0; _i231 < _map228.size; ++_i231) { - _elem257 = iprot.readI64(); - _val254.add(_elem257); + _key229 = new com.cinchapi.concourse.thrift.TObject(); + _key229.read(iprot); + { + org.apache.thrift.protocol.TSet _set232 = iprot.readSetBegin(); + _val230 = new java.util.LinkedHashSet(2*_set232.size); + long _elem233; + for (int _i234 = 0; _i234 < _set232.size; ++_i234) + { + _elem233 = iprot.readI64(); + _val230.add(_elem233); + } + iprot.readSetEnd(); + } + _val226.put(_key229, _val230); } - iprot.readSetEnd(); + iprot.readMapEnd(); } - struct.success.put(_key253, _val254); + struct.success.put(_key225, _val226); } iprot.readMapEnd(); } @@ -104799,24 +104050,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeys_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter259 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter235 : struct.success.entrySet()) { - _iter259.getKey().write(oprot); + oprot.writeString(_iter235.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter259.getValue().size())); - for (long _iter260 : _iter259.getValue()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, _iter235.getValue().size())); + for (java.util.Map.Entry> _iter236 : _iter235.getValue().entrySet()) { - oprot.writeI64(_iter260); + _iter236.getKey().write(oprot); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter236.getValue().size())); + for (long _iter237 : _iter236.getValue()) + { + oprot.writeI64(_iter237); + } + oprot.writeSetEnd(); + } } - oprot.writeSetEnd(); + oprot.writeMapEnd(); } } oprot.writeMapEnd(); @@ -104844,17 +104103,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTime_resu } - private static class browseKeyTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeys_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeyTime_resultTupleScheme getScheme() { - return new browseKeyTime_resultTupleScheme(); + public browseKeys_resultTupleScheme getScheme() { + return new browseKeys_resultTupleScheme(); } } - private static class browseKeyTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeys_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeys_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -104873,14 +104132,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter261 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter238 : struct.success.entrySet()) { - _iter261.getKey().write(oprot); + oprot.writeString(_iter238.getKey()); { - oprot.writeI32(_iter261.getValue().size()); - for (long _iter262 : _iter261.getValue()) + oprot.writeI32(_iter238.getValue().size()); + for (java.util.Map.Entry> _iter239 : _iter238.getValue().entrySet()) { - oprot.writeI64(_iter262); + _iter239.getKey().write(oprot); + { + oprot.writeI32(_iter239.getValue().size()); + for (long _iter240 : _iter239.getValue()) + { + oprot.writeI64(_iter240); + } + } } } } @@ -104898,30 +104164,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeys_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map263 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map263.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key264; - @org.apache.thrift.annotation.Nullable java.util.Set _val265; - for (int _i266 = 0; _i266 < _map263.size; ++_i266) + org.apache.thrift.protocol.TMap _map241 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map241.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key242; + @org.apache.thrift.annotation.Nullable java.util.Map> _val243; + for (int _i244 = 0; _i244 < _map241.size; ++_i244) { - _key264 = new com.cinchapi.concourse.thrift.TObject(); - _key264.read(iprot); + _key242 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set267 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val265 = new java.util.LinkedHashSet(2*_set267.size); - long _elem268; - for (int _i269 = 0; _i269 < _set267.size; ++_i269) + org.apache.thrift.protocol.TMap _map245 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); + _val243 = new java.util.LinkedHashMap>(2*_map245.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key246; + @org.apache.thrift.annotation.Nullable java.util.Set _val247; + for (int _i248 = 0; _i248 < _map245.size; ++_i248) { - _elem268 = iprot.readI64(); - _val265.add(_elem268); + _key246 = new com.cinchapi.concourse.thrift.TObject(); + _key246.read(iprot); + { + org.apache.thrift.protocol.TSet _set249 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val247 = new java.util.LinkedHashSet(2*_set249.size); + long _elem250; + for (int _i251 = 0; _i251 < _set249.size; ++_i251) + { + _elem250 = iprot.readI64(); + _val247.add(_elem250); + } + } + _val243.put(_key246, _val247); } } - struct.success.put(_key264, _val265); + struct.success.put(_key242, _val243); } } struct.setSuccessIsSet(true); @@ -104949,20 +104226,20 @@ private static S scheme(org.apache. } } - public static class browseKeyTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeyTimestr_args"); + public static class browseKeyTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeyTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeyTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeyTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeyTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeyTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -105042,13 +104319,15 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -105056,15 +104335,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeyTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeyTime_args.class, metaDataMap); } - public browseKeyTimestr_args() { + public browseKeyTime_args() { } - public browseKeyTimestr_args( + public browseKeyTime_args( java.lang.String key, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -105072,6 +104351,7 @@ public browseKeyTimestr_args( this(); this.key = key; this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -105080,13 +104360,12 @@ public browseKeyTimestr_args( /** * Performs a deep copy on other. */ - public browseKeyTimestr_args(browseKeyTimestr_args other) { + public browseKeyTime_args(browseKeyTime_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -105099,14 +104378,15 @@ public browseKeyTimestr_args(browseKeyTimestr_args other) { } @Override - public browseKeyTimestr_args deepCopy() { - return new browseKeyTimestr_args(this); + public browseKeyTime_args deepCopy() { + return new browseKeyTime_args(this); } @Override public void clear() { this.key = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -105117,7 +104397,7 @@ public java.lang.String getKey() { return this.key; } - public browseKeyTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public browseKeyTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -105137,29 +104417,27 @@ public void setKeyIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public browseKeyTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public browseKeyTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -105167,7 +104445,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public browseKeyTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public browseKeyTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -105192,7 +104470,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public browseKeyTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public browseKeyTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -105217,7 +104495,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public browseKeyTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public browseKeyTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -105252,7 +104530,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -105330,12 +104608,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeyTimestr_args) - return this.equals((browseKeyTimestr_args)that); + if (that instanceof browseKeyTime_args) + return this.equals((browseKeyTime_args)that); return false; } - public boolean equals(browseKeyTimestr_args that) { + public boolean equals(browseKeyTime_args that) { if (that == null) return false; if (this == that) @@ -105350,12 +104628,12 @@ public boolean equals(browseKeyTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -105397,9 +104675,7 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -105417,7 +104693,7 @@ public int hashCode() { } @Override - public int compareTo(browseKeyTimestr_args other) { + public int compareTo(browseKeyTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -105495,7 +104771,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeyTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeyTime_args("); boolean first = true; sb.append("key:"); @@ -105507,11 +104783,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -105562,23 +104834,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 browseKeyTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeyTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeyTimestr_argsStandardScheme getScheme() { - return new browseKeyTimestr_argsStandardScheme(); + public browseKeyTime_argsStandardScheme getScheme() { + return new browseKeyTime_argsStandardScheme(); } } - private static class browseKeyTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeyTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -105597,8 +104871,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_ar } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -105642,7 +104916,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -105651,11 +104925,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTimestr_a oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -105677,17 +104949,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTimestr_a } - private static class browseKeyTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeyTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeyTimestr_argsTupleScheme getScheme() { - return new browseKeyTimestr_argsTupleScheme(); + public browseKeyTime_argsTupleScheme getScheme() { + return new browseKeyTime_argsTupleScheme(); } } - private static class browseKeyTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeyTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -105710,7 +104982,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_ar oprot.writeString(struct.key); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -105724,7 +104996,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -105732,7 +105004,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_arg struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -105757,31 +105029,28 @@ private static S scheme(org.apache. } } - public static class browseKeyTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeyTimestr_result"); + public static class browseKeyTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeyTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeyTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeyTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeyTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeyTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -105805,8 +105074,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -105863,35 +105130,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeyTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeyTime_result.class, metaDataMap); } - public browseKeyTimestr_result() { + public browseKeyTime_result() { } - public browseKeyTimestr_result( + public browseKeyTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public browseKeyTimestr_result(browseKeyTimestr_result other) { + public browseKeyTime_result(browseKeyTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -105914,16 +105177,13 @@ public browseKeyTimestr_result(browseKeyTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public browseKeyTimestr_result deepCopy() { - return new browseKeyTimestr_result(this); + public browseKeyTime_result deepCopy() { + return new browseKeyTime_result(this); } @Override @@ -105932,7 +105192,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -105951,7 +105210,7 @@ public java.util.Map> success) { + public browseKeyTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -105976,7 +105235,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public browseKeyTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public browseKeyTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -106001,7 +105260,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public browseKeyTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public browseKeyTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -106022,11 +105281,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public browseKeyTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public browseKeyTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -106046,31 +105305,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public browseKeyTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -106102,15 +105336,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -106133,9 +105359,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -106156,20 +105379,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeyTimestr_result) - return this.equals((browseKeyTimestr_result)that); + if (that instanceof browseKeyTime_result) + return this.equals((browseKeyTime_result)that); return false; } - public boolean equals(browseKeyTimestr_result that) { + public boolean equals(browseKeyTime_result that) { if (that == null) return false; if (this == that) @@ -106211,15 +105432,6 @@ public boolean equals(browseKeyTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -106243,15 +105455,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(browseKeyTimestr_result other) { + public int compareTo(browseKeyTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -106298,16 +105506,6 @@ public int compareTo(browseKeyTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -106328,7 +105526,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeyTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeyTime_result("); boolean first = true; sb.append("success:"); @@ -106362,14 +105560,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -106395,17 +105585,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class browseKeyTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeyTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeyTimestr_resultStandardScheme getScheme() { - return new browseKeyTimestr_resultStandardScheme(); + public browseKeyTime_resultStandardScheme getScheme() { + return new browseKeyTime_resultStandardScheme(); } } - private static class browseKeyTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeyTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -106418,26 +105608,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_re case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map270 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map270.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key271; - @org.apache.thrift.annotation.Nullable java.util.Set _val272; - for (int _i273 = 0; _i273 < _map270.size; ++_i273) + org.apache.thrift.protocol.TMap _map252 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map252.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key253; + @org.apache.thrift.annotation.Nullable java.util.Set _val254; + for (int _i255 = 0; _i255 < _map252.size; ++_i255) { - _key271 = new com.cinchapi.concourse.thrift.TObject(); - _key271.read(iprot); + _key253 = new com.cinchapi.concourse.thrift.TObject(); + _key253.read(iprot); { - org.apache.thrift.protocol.TSet _set274 = iprot.readSetBegin(); - _val272 = new java.util.LinkedHashSet(2*_set274.size); - long _elem275; - for (int _i276 = 0; _i276 < _set274.size; ++_i276) + org.apache.thrift.protocol.TSet _set256 = iprot.readSetBegin(); + _val254 = new java.util.LinkedHashSet(2*_set256.size); + long _elem257; + for (int _i258 = 0; _i258 < _set256.size; ++_i258) { - _elem275 = iprot.readI64(); - _val272.add(_elem275); + _elem257 = iprot.readI64(); + _val254.add(_elem257); } iprot.readSetEnd(); } - struct.success.put(_key271, _val272); + struct.success.put(_key253, _val254); } iprot.readMapEnd(); } @@ -106466,22 +105656,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_re break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -106494,7 +105675,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -106502,14 +105683,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTimestr_r oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter277 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter259 : struct.success.entrySet()) { - _iter277.getKey().write(oprot); + _iter259.getKey().write(oprot); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter277.getValue().size())); - for (long _iter278 : _iter277.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter259.getValue().size())); + for (long _iter260 : _iter259.getValue()) { - oprot.writeI64(_iter278); + oprot.writeI64(_iter260); } oprot.writeSetEnd(); } @@ -106533,28 +105714,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTimestr_r struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class browseKeyTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeyTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeyTimestr_resultTupleScheme getScheme() { - return new browseKeyTimestr_resultTupleScheme(); + public browseKeyTime_resultTupleScheme getScheme() { + return new browseKeyTime_resultTupleScheme(); } } - private static class browseKeyTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeyTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -106569,21 +105745,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_re if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter279 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter261 : struct.success.entrySet()) { - _iter279.getKey().write(oprot); + _iter261.getKey().write(oprot); { - oprot.writeI32(_iter279.getValue().size()); - for (long _iter280 : _iter279.getValue()) + oprot.writeI32(_iter261.getValue().size()); + for (long _iter262 : _iter261.getValue()) { - oprot.writeI64(_iter280); + oprot.writeI64(_iter262); } } } @@ -106598,36 +105771,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_re if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map281 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map281.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key282; - @org.apache.thrift.annotation.Nullable java.util.Set _val283; - for (int _i284 = 0; _i284 < _map281.size; ++_i284) + org.apache.thrift.protocol.TMap _map263 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map263.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key264; + @org.apache.thrift.annotation.Nullable java.util.Set _val265; + for (int _i266 = 0; _i266 < _map263.size; ++_i266) { - _key282 = new com.cinchapi.concourse.thrift.TObject(); - _key282.read(iprot); + _key264 = new com.cinchapi.concourse.thrift.TObject(); + _key264.read(iprot); { - org.apache.thrift.protocol.TSet _set285 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val283 = new java.util.LinkedHashSet(2*_set285.size); - long _elem286; - for (int _i287 = 0; _i287 < _set285.size; ++_i287) + org.apache.thrift.protocol.TSet _set267 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val265 = new java.util.LinkedHashSet(2*_set267.size); + long _elem268; + for (int _i269 = 0; _i269 < _set267.size; ++_i269) { - _elem286 = iprot.readI64(); - _val283.add(_elem286); + _elem268 = iprot.readI64(); + _val265.add(_elem268); } } - struct.success.put(_key282, _val283); + struct.success.put(_key264, _val265); } } struct.setSuccessIsSet(true); @@ -106643,15 +105813,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_res struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -106660,27 +105825,27 @@ private static S scheme(org.apache. } } - public static class browseKeysTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeysTime_args"); + public static class browseKeyTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeyTimestr_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeysTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeysTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeyTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeyTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEYS((short)1, "keys"), + KEY((short)1, "key"), TIMESTAMP((short)2, "timestamp"), CREDS((short)3, "creds"), TRANSACTION((short)4, "transaction"), @@ -106700,8 +105865,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEYS - return KEYS; + case 1: // KEY + return KEY; case 2: // TIMESTAMP return TIMESTAMP; case 3: // CREDS @@ -106753,16 +105918,13 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -106770,23 +105932,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeysTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeyTimestr_args.class, metaDataMap); } - public browseKeysTime_args() { + public browseKeyTimestr_args() { } - public browseKeysTime_args( - java.util.List keys, - long timestamp, + public browseKeyTimestr_args( + java.lang.String key, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; + this.key = key; this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -106795,13 +105956,13 @@ public browseKeysTime_args( /** * Performs a deep copy on other. */ - public browseKeysTime_args(browseKeysTime_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + public browseKeyTimestr_args(browseKeyTimestr_args other) { + if (other.isSetKey()) { + this.key = other.key; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -106814,82 +105975,67 @@ public browseKeysTime_args(browseKeysTime_args other) { } @Override - public browseKeysTime_args deepCopy() { - return new browseKeysTime_args(this); + public browseKeyTimestr_args deepCopy() { + return new browseKeyTimestr_args(this); } @Override public void clear() { - this.keys = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.key = null; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public browseKeysTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public browseKeyTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; + this.key = null; } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public browseKeysTime_args setTimestamp(long timestamp) { + public browseKeyTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -106897,7 +106043,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public browseKeysTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public browseKeyTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -106922,7 +106068,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public browseKeysTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public browseKeyTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -106947,7 +106093,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public browseKeysTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public browseKeyTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -106970,11 +106116,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; @@ -106982,7 +106128,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -107017,8 +106163,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); case TIMESTAMP: return getTimestamp(); @@ -107044,8 +106190,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); + case KEY: + return isSetKey(); case TIMESTAMP: return isSetTimestamp(); case CREDS: @@ -107060,32 +106206,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeysTime_args) - return this.equals((browseKeysTime_args)that); + if (that instanceof browseKeyTimestr_args) + return this.equals((browseKeyTimestr_args)that); return false; } - public boolean equals(browseKeysTime_args that) { + public boolean equals(browseKeyTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -107123,11 +106269,13 @@ public boolean equals(browseKeysTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -107145,19 +106293,19 @@ public int hashCode() { } @Override - public int compareTo(browseKeysTime_args other) { + public int compareTo(browseKeyTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } @@ -107223,19 +106371,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeysTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeyTimestr_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -107286,25 +106438,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 browseKeysTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeyTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeysTime_argsStandardScheme getScheme() { - return new browseKeysTime_argsStandardScheme(); + public browseKeyTimestr_argsStandardScheme getScheme() { + return new browseKeyTimestr_argsStandardScheme(); } } - private static class browseKeysTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeyTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -107314,27 +106464,17 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_args break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list288 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list288.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem289; - for (int _i290 = 0; _i290 < _list288.size; ++_i290) - { - _elem289 = iprot.readString(); - struct.keys.add(_elem289); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -107378,25 +106518,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter291 : struct.keys) - { - oprot.writeString(_iter291); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -107418,20 +106553,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTime_arg } - private static class browseKeysTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeyTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeysTime_argsTupleScheme getScheme() { - return new browseKeysTime_argsTupleScheme(); + public browseKeyTimestr_argsTupleScheme getScheme() { + return new browseKeyTimestr_argsTupleScheme(); } } - private static class browseKeysTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeyTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } if (struct.isSetTimestamp()) { @@ -107447,17 +106582,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_args optionals.set(4); } oprot.writeBitSet(optionals, 5); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter292 : struct.keys) - { - oprot.writeString(_iter292); - } - } + if (struct.isSetKey()) { + oprot.writeString(struct.key); } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -107471,24 +106600,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list293 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list293.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem294; - for (int _i295 = 0; _i295 < _list293.size; ++_i295) - { - _elem294 = iprot.readString(); - struct.keys.add(_elem294); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -107513,28 +106633,31 @@ private static S scheme(org.apache. } } - public static class browseKeysTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeysTime_result"); + public static class browseKeyTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeyTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeysTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeysTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeyTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeyTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -107558,6 +106681,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -107606,62 +106731,53 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeysTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeyTimestr_result.class, metaDataMap); } - public browseKeysTime_result() { + public browseKeyTimestr_result() { } - public browseKeysTime_result( - java.util.Map>> success, + public browseKeyTimestr_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public browseKeysTime_result(browseKeysTime_result other) { + public browseKeyTimestr_result(browseKeyTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.String other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.String __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - com.cinchapi.concourse.thrift.TObject other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { - com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_key); + com.cinchapi.concourse.thrift.TObject other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + com.cinchapi.concourse.thrift.TObject __this__success_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_key); - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -107674,13 +106790,16 @@ public browseKeysTime_result(browseKeysTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public browseKeysTime_result deepCopy() { - return new browseKeysTime_result(this); + public browseKeyTimestr_result deepCopy() { + return new browseKeyTimestr_result(this); } @Override @@ -107689,25 +106808,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.lang.String key, java.util.Map> val) { + public void putToSuccess(com.cinchapi.concourse.thrift.TObject key, java.util.Set val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public browseKeysTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public browseKeyTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -107732,7 +106852,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public browseKeysTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public browseKeyTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -107757,7 +106877,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public browseKeysTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public browseKeyTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -107778,11 +106898,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public browseKeysTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public browseKeyTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -107802,6 +106922,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public browseKeyTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -107809,7 +106954,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.Map>)value); } break; @@ -107833,7 +106978,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -107856,6 +107009,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -107876,18 +107032,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeysTime_result) - return this.equals((browseKeysTime_result)that); + if (that instanceof browseKeyTimestr_result) + return this.equals((browseKeyTimestr_result)that); return false; } - public boolean equals(browseKeysTime_result that) { + public boolean equals(browseKeyTimestr_result that) { if (that == null) return false; if (this == that) @@ -107929,6 +107087,15 @@ public boolean equals(browseKeysTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -107952,11 +107119,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(browseKeysTime_result other) { + public int compareTo(browseKeyTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -108003,6 +107174,16 @@ public int compareTo(browseKeysTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -108023,7 +107204,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeysTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeyTimestr_result("); boolean first = true; sb.append("success:"); @@ -108057,6 +107238,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -108082,17 +107271,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class browseKeysTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeyTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeysTime_resultStandardScheme getScheme() { - return new browseKeysTime_resultStandardScheme(); + public browseKeyTimestr_resultStandardScheme getScheme() { + return new browseKeyTimestr_resultStandardScheme(); } } - private static class browseKeysTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeyTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeyTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -108105,38 +107294,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map296 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map296.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key297; - @org.apache.thrift.annotation.Nullable java.util.Map> _val298; - for (int _i299 = 0; _i299 < _map296.size; ++_i299) + org.apache.thrift.protocol.TMap _map270 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map270.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key271; + @org.apache.thrift.annotation.Nullable java.util.Set _val272; + for (int _i273 = 0; _i273 < _map270.size; ++_i273) { - _key297 = iprot.readString(); + _key271 = new com.cinchapi.concourse.thrift.TObject(); + _key271.read(iprot); { - org.apache.thrift.protocol.TMap _map300 = iprot.readMapBegin(); - _val298 = new java.util.LinkedHashMap>(2*_map300.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key301; - @org.apache.thrift.annotation.Nullable java.util.Set _val302; - for (int _i303 = 0; _i303 < _map300.size; ++_i303) + org.apache.thrift.protocol.TSet _set274 = iprot.readSetBegin(); + _val272 = new java.util.LinkedHashSet(2*_set274.size); + long _elem275; + for (int _i276 = 0; _i276 < _set274.size; ++_i276) { - _key301 = new com.cinchapi.concourse.thrift.TObject(); - _key301.read(iprot); - { - org.apache.thrift.protocol.TSet _set304 = iprot.readSetBegin(); - _val302 = new java.util.LinkedHashSet(2*_set304.size); - long _elem305; - for (int _i306 = 0; _i306 < _set304.size; ++_i306) - { - _elem305 = iprot.readI64(); - _val302.add(_elem305); - } - iprot.readSetEnd(); - } - _val298.put(_key301, _val302); + _elem275 = iprot.readI64(); + _val272.add(_elem275); } - iprot.readMapEnd(); + iprot.readSetEnd(); } - struct.success.put(_key297, _val298); + struct.success.put(_key271, _val272); } iprot.readMapEnd(); } @@ -108165,13 +107342,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_resu break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -108184,32 +107370,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeyTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter307 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter277 : struct.success.entrySet()) { - oprot.writeString(_iter307.getKey()); + _iter277.getKey().write(oprot); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, _iter307.getValue().size())); - for (java.util.Map.Entry> _iter308 : _iter307.getValue().entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter277.getValue().size())); + for (long _iter278 : _iter277.getValue()) { - _iter308.getKey().write(oprot); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter308.getValue().size())); - for (long _iter309 : _iter308.getValue()) - { - oprot.writeI64(_iter309); - } - oprot.writeSetEnd(); - } + oprot.writeI64(_iter278); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } } oprot.writeMapEnd(); @@ -108231,23 +107409,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTime_res struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class browseKeysTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeyTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeysTime_resultTupleScheme getScheme() { - return new browseKeysTime_resultTupleScheme(); + public browseKeyTimestr_resultTupleScheme getScheme() { + return new browseKeyTimestr_resultTupleScheme(); } } - private static class browseKeysTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeyTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -108262,25 +107445,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_resu if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter310 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter279 : struct.success.entrySet()) { - oprot.writeString(_iter310.getKey()); + _iter279.getKey().write(oprot); { - oprot.writeI32(_iter310.getValue().size()); - for (java.util.Map.Entry> _iter311 : _iter310.getValue().entrySet()) + oprot.writeI32(_iter279.getValue().size()); + for (long _iter280 : _iter279.getValue()) { - _iter311.getKey().write(oprot); - { - oprot.writeI32(_iter311.getValue().size()); - for (long _iter312 : _iter311.getValue()) - { - oprot.writeI64(_iter312); - } - } + oprot.writeI64(_iter280); } } } @@ -108295,44 +107474,36 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_resu if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeyTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map313 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map313.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key314; - @org.apache.thrift.annotation.Nullable java.util.Map> _val315; - for (int _i316 = 0; _i316 < _map313.size; ++_i316) + org.apache.thrift.protocol.TMap _map281 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map281.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key282; + @org.apache.thrift.annotation.Nullable java.util.Set _val283; + for (int _i284 = 0; _i284 < _map281.size; ++_i284) { - _key314 = iprot.readString(); + _key282 = new com.cinchapi.concourse.thrift.TObject(); + _key282.read(iprot); { - org.apache.thrift.protocol.TMap _map317 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); - _val315 = new java.util.LinkedHashMap>(2*_map317.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key318; - @org.apache.thrift.annotation.Nullable java.util.Set _val319; - for (int _i320 = 0; _i320 < _map317.size; ++_i320) + org.apache.thrift.protocol.TSet _set285 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val283 = new java.util.LinkedHashSet(2*_set285.size); + long _elem286; + for (int _i287 = 0; _i287 < _set285.size; ++_i287) { - _key318 = new com.cinchapi.concourse.thrift.TObject(); - _key318.read(iprot); - { - org.apache.thrift.protocol.TSet _set321 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val319 = new java.util.LinkedHashSet(2*_set321.size); - long _elem322; - for (int _i323 = 0; _i323 < _set321.size; ++_i323) - { - _elem322 = iprot.readI64(); - _val319.add(_elem322); - } - } - _val315.put(_key318, _val319); + _elem286 = iprot.readI64(); + _val283.add(_elem286); } } - struct.success.put(_key314, _val315); + struct.success.put(_key282, _val283); } } struct.setSuccessIsSet(true); @@ -108348,10 +107519,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_resul struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -108360,20 +107536,20 @@ private static S scheme(org.apache. } } - public static class browseKeysTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeysTimestr_args"); + public static class browseKeysTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeysTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeysTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeysTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeysTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeysTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -108453,6 +107629,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -108460,7 +107638,7 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -108468,15 +107646,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeysTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeysTime_args.class, metaDataMap); } - public browseKeysTimestr_args() { + public browseKeysTime_args() { } - public browseKeysTimestr_args( + public browseKeysTime_args( java.util.List keys, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -108484,6 +107662,7 @@ public browseKeysTimestr_args( this(); this.keys = keys; this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -108492,14 +107671,13 @@ public browseKeysTimestr_args( /** * Performs a deep copy on other. */ - public browseKeysTimestr_args(browseKeysTimestr_args other) { + public browseKeysTime_args(browseKeysTime_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -108512,14 +107690,15 @@ public browseKeysTimestr_args(browseKeysTimestr_args other) { } @Override - public browseKeysTimestr_args deepCopy() { - return new browseKeysTimestr_args(this); + public browseKeysTime_args deepCopy() { + return new browseKeysTime_args(this); } @Override public void clear() { this.keys = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -108546,7 +107725,7 @@ public java.util.List getKeys() { return this.keys; } - public browseKeysTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public browseKeysTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -108566,29 +107745,27 @@ public void setKeysIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public browseKeysTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public browseKeysTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -108596,7 +107773,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public browseKeysTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public browseKeysTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -108621,7 +107798,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public browseKeysTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public browseKeysTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -108646,7 +107823,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public browseKeysTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public browseKeysTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -108681,7 +107858,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -108759,12 +107936,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeysTimestr_args) - return this.equals((browseKeysTimestr_args)that); + if (that instanceof browseKeysTime_args) + return this.equals((browseKeysTime_args)that); return false; } - public boolean equals(browseKeysTimestr_args that) { + public boolean equals(browseKeysTime_args that) { if (that == null) return false; if (this == that) @@ -108779,12 +107956,12 @@ public boolean equals(browseKeysTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -108826,9 +108003,7 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -108846,7 +108021,7 @@ public int hashCode() { } @Override - public int compareTo(browseKeysTimestr_args other) { + public int compareTo(browseKeysTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -108924,7 +108099,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeysTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeysTime_args("); boolean first = true; sb.append("keys:"); @@ -108936,11 +108111,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -108991,23 +108162,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 browseKeysTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeysTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeysTimestr_argsStandardScheme getScheme() { - return new browseKeysTimestr_argsStandardScheme(); + public browseKeysTime_argsStandardScheme getScheme() { + return new browseKeysTime_argsStandardScheme(); } } - private static class browseKeysTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeysTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -109020,13 +108193,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_a case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list324 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list324.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem325; - for (int _i326 = 0; _i326 < _list324.size; ++_i326) + org.apache.thrift.protocol.TList _list288 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list288.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem289; + for (int _i290 = 0; _i290 < _list288.size; ++_i290) { - _elem325 = iprot.readString(); - struct.keys.add(_elem325); + _elem289 = iprot.readString(); + struct.keys.add(_elem289); } iprot.readListEnd(); } @@ -109036,8 +108209,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_a } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -109081,7 +108254,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -109089,19 +108262,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTimestr_ oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter327 : struct.keys) + for (java.lang.String _iter291 : struct.keys) { - oprot.writeString(_iter327); + oprot.writeString(_iter291); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -109123,17 +108294,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTimestr_ } - private static class browseKeysTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeysTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeysTimestr_argsTupleScheme getScheme() { - return new browseKeysTimestr_argsTupleScheme(); + public browseKeysTime_argsTupleScheme getScheme() { + return new browseKeysTime_argsTupleScheme(); } } - private static class browseKeysTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeysTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -109155,14 +108326,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_a if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter328 : struct.keys) + for (java.lang.String _iter292 : struct.keys) { - oprot.writeString(_iter328); + oprot.writeString(_iter292); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -109176,24 +108347,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list329 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list329.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem330; - for (int _i331 = 0; _i331 < _list329.size; ++_i331) + org.apache.thrift.protocol.TList _list293 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list293.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem294; + for (int _i295 = 0; _i295 < _list293.size; ++_i295) { - _elem330 = iprot.readString(); - struct.keys.add(_elem330); + _elem294 = iprot.readString(); + struct.keys.add(_elem294); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -109218,31 +108389,28 @@ private static S scheme(org.apache. } } - public static class browseKeysTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeysTimestr_result"); + public static class browseKeysTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeysTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeysTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeysTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeysTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeysTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -109266,8 +108434,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -109326,35 +108492,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeysTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeysTime_result.class, metaDataMap); } - public browseKeysTimestr_result() { + public browseKeysTime_result() { } - public browseKeysTimestr_result( + public browseKeysTime_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public browseKeysTimestr_result(browseKeysTimestr_result other) { + public browseKeysTime_result(browseKeysTime_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -109388,16 +108550,13 @@ public browseKeysTimestr_result(browseKeysTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public browseKeysTimestr_result deepCopy() { - return new browseKeysTimestr_result(this); + public browseKeysTime_result deepCopy() { + return new browseKeysTime_result(this); } @Override @@ -109406,7 +108565,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -109425,7 +108583,7 @@ public java.util.Map>> success) { + public browseKeysTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -109450,7 +108608,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public browseKeysTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public browseKeysTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -109475,7 +108633,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public browseKeysTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public browseKeysTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -109496,11 +108654,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public browseKeysTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public browseKeysTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -109520,31 +108678,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public browseKeysTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -109576,15 +108709,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -109607,9 +108732,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -109630,20 +108752,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof browseKeysTimestr_result) - return this.equals((browseKeysTimestr_result)that); + if (that instanceof browseKeysTime_result) + return this.equals((browseKeysTime_result)that); return false; } - public boolean equals(browseKeysTimestr_result that) { + public boolean equals(browseKeysTime_result that) { if (that == null) return false; if (this == that) @@ -109685,15 +108805,6 @@ public boolean equals(browseKeysTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -109717,15 +108828,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(browseKeysTimestr_result other) { + public int compareTo(browseKeysTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -109772,16 +108879,6 @@ public int compareTo(browseKeysTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -109802,7 +108899,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeysTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeysTime_result("); boolean first = true; sb.append("success:"); @@ -109836,14 +108933,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -109869,17 +108958,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class browseKeysTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeysTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeysTimestr_resultStandardScheme getScheme() { - return new browseKeysTimestr_resultStandardScheme(); + public browseKeysTime_resultStandardScheme getScheme() { + return new browseKeysTime_resultStandardScheme(); } } - private static class browseKeysTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeysTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -109892,38 +108981,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map332 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map332.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key333; - @org.apache.thrift.annotation.Nullable java.util.Map> _val334; - for (int _i335 = 0; _i335 < _map332.size; ++_i335) + org.apache.thrift.protocol.TMap _map296 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map296.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key297; + @org.apache.thrift.annotation.Nullable java.util.Map> _val298; + for (int _i299 = 0; _i299 < _map296.size; ++_i299) { - _key333 = iprot.readString(); + _key297 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map336 = iprot.readMapBegin(); - _val334 = new java.util.LinkedHashMap>(2*_map336.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key337; - @org.apache.thrift.annotation.Nullable java.util.Set _val338; - for (int _i339 = 0; _i339 < _map336.size; ++_i339) + org.apache.thrift.protocol.TMap _map300 = iprot.readMapBegin(); + _val298 = new java.util.LinkedHashMap>(2*_map300.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key301; + @org.apache.thrift.annotation.Nullable java.util.Set _val302; + for (int _i303 = 0; _i303 < _map300.size; ++_i303) { - _key337 = new com.cinchapi.concourse.thrift.TObject(); - _key337.read(iprot); + _key301 = new com.cinchapi.concourse.thrift.TObject(); + _key301.read(iprot); { - org.apache.thrift.protocol.TSet _set340 = iprot.readSetBegin(); - _val338 = new java.util.LinkedHashSet(2*_set340.size); - long _elem341; - for (int _i342 = 0; _i342 < _set340.size; ++_i342) + org.apache.thrift.protocol.TSet _set304 = iprot.readSetBegin(); + _val302 = new java.util.LinkedHashSet(2*_set304.size); + long _elem305; + for (int _i306 = 0; _i306 < _set304.size; ++_i306) { - _elem341 = iprot.readI64(); - _val338.add(_elem341); + _elem305 = iprot.readI64(); + _val302.add(_elem305); } iprot.readSetEnd(); } - _val334.put(_key337, _val338); + _val298.put(_key301, _val302); } iprot.readMapEnd(); } - struct.success.put(_key333, _val334); + struct.success.put(_key297, _val298); } iprot.readMapEnd(); } @@ -109952,22 +109041,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_r break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -109980,7 +109060,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -109988,19 +109068,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTimestr_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter343 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter307 : struct.success.entrySet()) { - oprot.writeString(_iter343.getKey()); + oprot.writeString(_iter307.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, _iter343.getValue().size())); - for (java.util.Map.Entry> _iter344 : _iter343.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, _iter307.getValue().size())); + for (java.util.Map.Entry> _iter308 : _iter307.getValue().entrySet()) { - _iter344.getKey().write(oprot); + _iter308.getKey().write(oprot); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter344.getValue().size())); - for (long _iter345 : _iter344.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter308.getValue().size())); + for (long _iter309 : _iter308.getValue()) { - oprot.writeI64(_iter345); + oprot.writeI64(_iter309); } oprot.writeSetEnd(); } @@ -110027,28 +109107,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTimestr_ struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class browseKeysTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeysTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public browseKeysTimestr_resultTupleScheme getScheme() { - return new browseKeysTimestr_resultTupleScheme(); + public browseKeysTime_resultTupleScheme getScheme() { + return new browseKeysTime_resultTupleScheme(); } } - private static class browseKeysTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeysTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -110063,26 +109138,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_r if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter346 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter310 : struct.success.entrySet()) { - oprot.writeString(_iter346.getKey()); + oprot.writeString(_iter310.getKey()); { - oprot.writeI32(_iter346.getValue().size()); - for (java.util.Map.Entry> _iter347 : _iter346.getValue().entrySet()) + oprot.writeI32(_iter310.getValue().size()); + for (java.util.Map.Entry> _iter311 : _iter310.getValue().entrySet()) { - _iter347.getKey().write(oprot); + _iter311.getKey().write(oprot); { - oprot.writeI32(_iter347.getValue().size()); - for (long _iter348 : _iter347.getValue()) + oprot.writeI32(_iter311.getValue().size()); + for (long _iter312 : _iter311.getValue()) { - oprot.writeI64(_iter348); + oprot.writeI64(_iter312); } } } @@ -110099,47 +109171,44 @@ public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_r if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map349 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map349.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key350; - @org.apache.thrift.annotation.Nullable java.util.Map> _val351; - for (int _i352 = 0; _i352 < _map349.size; ++_i352) + org.apache.thrift.protocol.TMap _map313 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map313.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key314; + @org.apache.thrift.annotation.Nullable java.util.Map> _val315; + for (int _i316 = 0; _i316 < _map313.size; ++_i316) { - _key350 = iprot.readString(); + _key314 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map353 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); - _val351 = new java.util.LinkedHashMap>(2*_map353.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key354; - @org.apache.thrift.annotation.Nullable java.util.Set _val355; - for (int _i356 = 0; _i356 < _map353.size; ++_i356) + org.apache.thrift.protocol.TMap _map317 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); + _val315 = new java.util.LinkedHashMap>(2*_map317.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key318; + @org.apache.thrift.annotation.Nullable java.util.Set _val319; + for (int _i320 = 0; _i320 < _map317.size; ++_i320) { - _key354 = new com.cinchapi.concourse.thrift.TObject(); - _key354.read(iprot); + _key318 = new com.cinchapi.concourse.thrift.TObject(); + _key318.read(iprot); { - org.apache.thrift.protocol.TSet _set357 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val355 = new java.util.LinkedHashSet(2*_set357.size); - long _elem358; - for (int _i359 = 0; _i359 < _set357.size; ++_i359) + org.apache.thrift.protocol.TSet _set321 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val319 = new java.util.LinkedHashSet(2*_set321.size); + long _elem322; + for (int _i323 = 0; _i323 < _set321.size; ++_i323) { - _elem358 = iprot.readI64(); - _val355.add(_elem358); + _elem322 = iprot.readI64(); + _val319.add(_elem322); } } - _val351.put(_key354, _val355); + _val315.put(_key318, _val319); } } - struct.success.put(_key350, _val351); + struct.success.put(_key314, _val315); } } struct.setSuccessIsSet(true); @@ -110155,15 +109224,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_re struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -110172,28 +109236,28 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecord_args"); + public static class browseKeysTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeysTimestr_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeysTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeysTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - RECORD((short)2, "record"), + KEYS((short)1, "keys"), + TIMESTAMP((short)2, "timestamp"), CREDS((short)3, "creds"), TRANSACTION((short)4, "transaction"), ENVIRONMENT((short)5, "environment"); @@ -110212,10 +109276,10 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // RECORD - return RECORD; + case 1: // KEYS + return KEYS; + case 2: // TIMESTAMP + return TIMESTAMP; case 3: // CREDS return CREDS; case 4: // TRANSACTION @@ -110265,15 +109329,14 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -110281,23 +109344,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeysTimestr_args.class, metaDataMap); } - public chronicleKeyRecord_args() { + public browseKeysTimestr_args() { } - public chronicleKeyRecord_args( - java.lang.String key, - long record, + public browseKeysTimestr_args( + java.util.List keys, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.record = record; - setRecordIsSet(true); + this.keys = keys; + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -110306,12 +109368,14 @@ public chronicleKeyRecord_args( /** * Performs a deep copy on other. */ - public chronicleKeyRecord_args(chronicleKeyRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; + public browseKeysTimestr_args(browseKeysTimestr_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } - this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -110324,66 +109388,83 @@ public chronicleKeyRecord_args(chronicleKeyRecord_args other) { } @Override - public chronicleKeyRecord_args deepCopy() { - return new chronicleKeyRecord_args(this); + public browseKeysTimestr_args deepCopy() { + return new browseKeysTimestr_args(this); } @Override public void clear() { - this.key = null; - setRecordIsSet(false); - this.record = 0; + this.keys = null; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public chronicleKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public browseKeysTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; return this; } - public void unsetKey() { - this.key = null; + public void unsetKeys() { + this.keys = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void setKeyIsSet(boolean value) { + public void setKeysIsSet(boolean value) { if (!value) { - this.key = null; + this.keys = null; } } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; } - public chronicleKeyRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public browseKeysTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -110391,7 +109472,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public chronicleKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public browseKeysTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -110416,7 +109497,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public chronicleKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public browseKeysTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -110441,7 +109522,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public chronicleKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public browseKeysTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -110464,19 +109545,19 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case KEYS: if (value == null) { - unsetKey(); + unsetKeys(); } else { - setKey((java.lang.String)value); + setKeys((java.util.List)value); } break; - case RECORD: + case TIMESTAMP: if (value == null) { - unsetRecord(); + unsetTimestamp(); } else { - setRecord((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -110511,11 +109592,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case KEYS: + return getKeys(); - case RECORD: - return getRecord(); + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -110538,10 +109619,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case RECORD: - return isSetRecord(); + case KEYS: + return isSetKeys(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -110554,32 +109635,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecord_args) - return this.equals((chronicleKeyRecord_args)that); + if (that instanceof browseKeysTimestr_args) + return this.equals((browseKeysTimestr_args)that); return false; } - public boolean equals(chronicleKeyRecord_args that) { + public boolean equals(browseKeysTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.key.equals(that.key)) + if (!this.keys.equals(that.keys)) return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.record != that.record) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -110617,11 +109698,13 @@ public boolean equals(chronicleKeyRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -110639,29 +109722,29 @@ public int hashCode() { } @Override - public int compareTo(chronicleKeyRecord_args other) { + public int compareTo(browseKeysTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -110717,19 +109800,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeysTimestr_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -110780,25 +109867,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 chronicleKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeysTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecord_argsStandardScheme getScheme() { - return new chronicleKeyRecord_argsStandardScheme(); + public browseKeysTimestr_argsStandardScheme getScheme() { + return new browseKeysTimestr_argsStandardScheme(); } } - private static class chronicleKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeysTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -110808,18 +109893,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_ break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list324 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list324.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem325; + for (int _i326 = 0; _i326 < _list324.size; ++_i326) + { + _elem325 = iprot.readString(); + struct.keys.add(_elem325); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 2: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -110862,18 +109957,27 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter327 : struct.keys) + { + oprot.writeString(_iter327); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -110895,23 +109999,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord } - private static class chronicleKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeysTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecord_argsTupleScheme getScheme() { - return new chronicleKeyRecord_argsTupleScheme(); + public browseKeysTimestr_argsTupleScheme getScheme() { + return new browseKeysTimestr_argsTupleScheme(); } } - private static class chronicleKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeysTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetRecord()) { + if (struct.isSetTimestamp()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -110924,11 +110028,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_ optionals.set(4); } oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter328 : struct.keys) + { + oprot.writeString(_iter328); + } + } } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -110942,16 +110052,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list329 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list329.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem330; + for (int _i331 = 0; _i331 < _list329.size; ++_i331) + { + _elem330 = iprot.readString(); + struct.keys.add(_elem330); + } + } + struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -110975,28 +110094,31 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecord_result"); + public static class browseKeysTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("browseKeysTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new browseKeysTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new browseKeysTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -111020,6 +110142,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -111068,51 +110192,65 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(browseKeysTimestr_result.class, metaDataMap); } - public chronicleKeyRecord_result() { + public browseKeysTimestr_result() { } - public chronicleKeyRecord_result( - java.util.Map> success, + public browseKeysTimestr_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public chronicleKeyRecord_result(chronicleKeyRecord_result other) { + public browseKeysTimestr_result(browseKeysTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - java.lang.Long other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); + java.lang.String other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); - java.lang.Long __this__success_copy_key = other_element_key; + java.lang.String __this__success_copy_key = other_element_key; - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { - __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + com.cinchapi.concourse.thrift.TObject other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_key); + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -111126,13 +110264,16 @@ public chronicleKeyRecord_result(chronicleKeyRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public chronicleKeyRecord_result deepCopy() { - return new chronicleKeyRecord_result(this); + public browseKeysTimestr_result deepCopy() { + return new browseKeysTimestr_result(this); } @Override @@ -111141,25 +110282,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Set val) { + public void putToSuccess(java.lang.String key, java.util.Map> val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap>>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public chronicleKeyRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public browseKeysTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -111184,7 +110326,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public chronicleKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public browseKeysTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -111209,7 +110351,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public chronicleKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public browseKeysTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -111230,11 +110372,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public chronicleKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public browseKeysTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -111254,6 +110396,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public browseKeysTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -111261,7 +110428,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map>>)value); } break; @@ -111285,7 +110452,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -111308,6 +110483,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -111328,18 +110506,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecord_result) - return this.equals((chronicleKeyRecord_result)that); + if (that instanceof browseKeysTimestr_result) + return this.equals((browseKeysTimestr_result)that); return false; } - public boolean equals(chronicleKeyRecord_result that) { + public boolean equals(browseKeysTimestr_result that) { if (that == null) return false; if (this == that) @@ -111381,6 +110561,15 @@ public boolean equals(chronicleKeyRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -111404,11 +110593,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(chronicleKeyRecord_result other) { + public int compareTo(browseKeysTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -111455,6 +110648,16 @@ public int compareTo(chronicleKeyRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -111475,7 +110678,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("browseKeysTimestr_result("); boolean first = true; sb.append("success:"); @@ -111509,6 +110712,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -111534,17 +110745,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeysTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecord_resultStandardScheme getScheme() { - return new chronicleKeyRecord_resultStandardScheme(); + public browseKeysTimestr_resultStandardScheme getScheme() { + return new browseKeysTimestr_resultStandardScheme(); } } - private static class chronicleKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class browseKeysTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, browseKeysTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -111557,26 +110768,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map360 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map360.size); - long _key361; - @org.apache.thrift.annotation.Nullable java.util.Set _val362; - for (int _i363 = 0; _i363 < _map360.size; ++_i363) + org.apache.thrift.protocol.TMap _map332 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map332.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key333; + @org.apache.thrift.annotation.Nullable java.util.Map> _val334; + for (int _i335 = 0; _i335 < _map332.size; ++_i335) { - _key361 = iprot.readI64(); + _key333 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set364 = iprot.readSetBegin(); - _val362 = new java.util.LinkedHashSet(2*_set364.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem365; - for (int _i366 = 0; _i366 < _set364.size; ++_i366) + org.apache.thrift.protocol.TMap _map336 = iprot.readMapBegin(); + _val334 = new java.util.LinkedHashMap>(2*_map336.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key337; + @org.apache.thrift.annotation.Nullable java.util.Set _val338; + for (int _i339 = 0; _i339 < _map336.size; ++_i339) { - _elem365 = new com.cinchapi.concourse.thrift.TObject(); - _elem365.read(iprot); - _val362.add(_elem365); + _key337 = new com.cinchapi.concourse.thrift.TObject(); + _key337.read(iprot); + { + org.apache.thrift.protocol.TSet _set340 = iprot.readSetBegin(); + _val338 = new java.util.LinkedHashSet(2*_set340.size); + long _elem341; + for (int _i342 = 0; _i342 < _set340.size; ++_i342) + { + _elem341 = iprot.readI64(); + _val338.add(_elem341); + } + iprot.readSetEnd(); + } + _val334.put(_key337, _val338); } - iprot.readSetEnd(); + iprot.readMapEnd(); } - struct.success.put(_key361, _val362); + struct.success.put(_key333, _val334); } iprot.readMapEnd(); } @@ -111605,13 +110828,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_ break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -111624,24 +110856,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, browseKeysTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter367 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter343 : struct.success.entrySet()) { - oprot.writeI64(_iter367.getKey()); + oprot.writeString(_iter343.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter367.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter368 : _iter367.getValue()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET, _iter343.getValue().size())); + for (java.util.Map.Entry> _iter344 : _iter343.getValue().entrySet()) { - _iter368.write(oprot); + _iter344.getKey().write(oprot); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter344.getValue().size())); + for (long _iter345 : _iter344.getValue()) + { + oprot.writeI64(_iter345); + } + oprot.writeSetEnd(); + } } - oprot.writeSetEnd(); + oprot.writeMapEnd(); } } oprot.writeMapEnd(); @@ -111663,23 +110903,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class chronicleKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class browseKeysTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecord_resultTupleScheme getScheme() { - return new chronicleKeyRecord_resultTupleScheme(); + public browseKeysTimestr_resultTupleScheme getScheme() { + return new browseKeysTimestr_resultTupleScheme(); } } - private static class chronicleKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class browseKeysTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -111694,18 +110939,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_ if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter369 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter346 : struct.success.entrySet()) { - oprot.writeI64(_iter369.getKey()); + oprot.writeString(_iter346.getKey()); { - oprot.writeI32(_iter369.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter370 : _iter369.getValue()) + oprot.writeI32(_iter346.getValue().size()); + for (java.util.Map.Entry> _iter347 : _iter346.getValue().entrySet()) { - _iter370.write(oprot); + _iter347.getKey().write(oprot); + { + oprot.writeI32(_iter347.getValue().size()); + for (long _iter348 : _iter347.getValue()) + { + oprot.writeI64(_iter348); + } + } } } } @@ -111720,33 +110975,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_ if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, browseKeysTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map371 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map371.size); - long _key372; - @org.apache.thrift.annotation.Nullable java.util.Set _val373; - for (int _i374 = 0; _i374 < _map371.size; ++_i374) + org.apache.thrift.protocol.TMap _map349 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map349.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key350; + @org.apache.thrift.annotation.Nullable java.util.Map> _val351; + for (int _i352 = 0; _i352 < _map349.size; ++_i352) { - _key372 = iprot.readI64(); + _key350 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set375 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val373 = new java.util.LinkedHashSet(2*_set375.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem376; - for (int _i377 = 0; _i377 < _set375.size; ++_i377) + org.apache.thrift.protocol.TMap _map353 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.SET); + _val351 = new java.util.LinkedHashMap>(2*_map353.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key354; + @org.apache.thrift.annotation.Nullable java.util.Set _val355; + for (int _i356 = 0; _i356 < _map353.size; ++_i356) { - _elem376 = new com.cinchapi.concourse.thrift.TObject(); - _elem376.read(iprot); - _val373.add(_elem376); + _key354 = new com.cinchapi.concourse.thrift.TObject(); + _key354.read(iprot); + { + org.apache.thrift.protocol.TSet _set357 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val355 = new java.util.LinkedHashSet(2*_set357.size); + long _elem358; + for (int _i359 = 0; _i359 < _set357.size; ++_i359) + { + _elem358 = iprot.readI64(); + _val355.add(_elem358); + } + } + _val351.put(_key354, _val355); } } - struct.success.put(_key372, _val373); + struct.success.put(_key350, _val351); } } struct.setSuccessIsSet(true); @@ -111762,10 +111031,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_r struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -111774,22 +111048,20 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStart_args"); + public static class chronicleKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecord_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStart_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStart_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -111798,10 +111070,9 @@ public static class chronicleKeyRecordStart_args implements org.apache.thrift.TB public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORD((short)2, "record"), - START((short)3, "start"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -111821,13 +111092,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORD return RECORD; - case 3: // START - return START; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -111873,7 +111142,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -111882,8 +111150,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -111891,16 +111157,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStart_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecord_args.class, metaDataMap); } - public chronicleKeyRecordStart_args() { + public chronicleKeyRecord_args() { } - public chronicleKeyRecordStart_args( + public chronicleKeyRecord_args( java.lang.String key, long record, - long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -111909,8 +111174,6 @@ public chronicleKeyRecordStart_args( this.key = key; this.record = record; setRecordIsSet(true); - this.start = start; - setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -111919,13 +111182,12 @@ public chronicleKeyRecordStart_args( /** * Performs a deep copy on other. */ - public chronicleKeyRecordStart_args(chronicleKeyRecordStart_args other) { + public chronicleKeyRecord_args(chronicleKeyRecord_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -111938,8 +111200,8 @@ public chronicleKeyRecordStart_args(chronicleKeyRecordStart_args other) { } @Override - public chronicleKeyRecordStart_args deepCopy() { - return new chronicleKeyRecordStart_args(this); + public chronicleKeyRecord_args deepCopy() { + return new chronicleKeyRecord_args(this); } @Override @@ -111947,8 +111209,6 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -111959,7 +111219,7 @@ public java.lang.String getKey() { return this.key; } - public chronicleKeyRecordStart_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public chronicleKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -111983,7 +111243,7 @@ public long getRecord() { return this.record; } - public chronicleKeyRecordStart_args setRecord(long record) { + public chronicleKeyRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -112002,35 +111262,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { - return this.start; - } - - public chronicleKeyRecordStart_args setStart(long start) { - this.start = start; - setStartIsSet(true); - return this; - } - - public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); - } - - /** Returns true if field start is set (has been assigned a value) and false otherwise */ - public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); - } - - public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public chronicleKeyRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public chronicleKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -112055,7 +111292,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public chronicleKeyRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public chronicleKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -112080,7 +111317,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public chronicleKeyRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public chronicleKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -112119,14 +111356,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case START: - if (value == null) { - unsetStart(); - } else { - setStart((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -112164,9 +111393,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case START: - return getStart(); - case CREDS: return getCreds(); @@ -112192,8 +111418,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORD: return isSetRecord(); - case START: - return isSetStart(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -112206,12 +111430,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecordStart_args) - return this.equals((chronicleKeyRecordStart_args)that); + if (that instanceof chronicleKeyRecord_args) + return this.equals((chronicleKeyRecord_args)that); return false; } - public boolean equals(chronicleKeyRecordStart_args that) { + public boolean equals(chronicleKeyRecord_args that) { if (that == null) return false; if (this == that) @@ -112235,15 +111459,6 @@ public boolean equals(chronicleKeyRecordStart_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; - if (this_present_start || that_present_start) { - if (!(this_present_start && that_present_start)) - return false; - if (this.start != that.start) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -112284,8 +111499,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -112302,7 +111515,7 @@ public int hashCode() { } @Override - public int compareTo(chronicleKeyRecordStart_args other) { + public int compareTo(chronicleKeyRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -112329,16 +111542,6 @@ public int compareTo(chronicleKeyRecordStart_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetStart()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -112390,7 +111593,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStart_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecord_args("); boolean first = true; sb.append("key:"); @@ -112405,10 +111608,6 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -112465,17 +111664,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStart_argsStandardScheme getScheme() { - return new chronicleKeyRecordStart_argsStandardScheme(); + public chronicleKeyRecord_argsStandardScheme getScheme() { + return new chronicleKeyRecord_argsStandardScheme(); } } - private static class chronicleKeyRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -112501,15 +111700,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -112518,7 +111709,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -112527,7 +111718,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -112547,7 +111738,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -112559,9 +111750,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -112583,17 +111771,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord } - private static class chronicleKeyRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStart_argsTupleScheme getScheme() { - return new chronicleKeyRecordStart_argsTupleScheme(); + public chronicleKeyRecord_argsTupleScheme getScheme() { + return new chronicleKeyRecord_argsTupleScheme(); } } - private static class chronicleKeyRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -112602,28 +111790,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetStart()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -112636,9 +111818,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -112648,20 +111830,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordSt struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -112673,16 +111851,16 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStart_result"); + public static class chronicleKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecord_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStart_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStart_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -112776,13 +111954,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStart_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecord_result.class, metaDataMap); } - public chronicleKeyRecordStart_result() { + public chronicleKeyRecord_result() { } - public chronicleKeyRecordStart_result( + public chronicleKeyRecord_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -112798,7 +111976,7 @@ public chronicleKeyRecordStart_result( /** * Performs a deep copy on other. */ - public chronicleKeyRecordStart_result(chronicleKeyRecordStart_result other) { + public chronicleKeyRecord_result(chronicleKeyRecord_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -112829,8 +112007,8 @@ public chronicleKeyRecordStart_result(chronicleKeyRecordStart_result other) { } @Override - public chronicleKeyRecordStart_result deepCopy() { - return new chronicleKeyRecordStart_result(this); + public chronicleKeyRecord_result deepCopy() { + return new chronicleKeyRecord_result(this); } @Override @@ -112857,7 +112035,7 @@ public java.util.Map> success) { + public chronicleKeyRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -112882,7 +112060,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public chronicleKeyRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public chronicleKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -112907,7 +112085,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public chronicleKeyRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public chronicleKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -112932,7 +112110,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public chronicleKeyRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public chronicleKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -113032,12 +112210,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecordStart_result) - return this.equals((chronicleKeyRecordStart_result)that); + if (that instanceof chronicleKeyRecord_result) + return this.equals((chronicleKeyRecord_result)that); return false; } - public boolean equals(chronicleKeyRecordStart_result that) { + public boolean equals(chronicleKeyRecord_result that) { if (that == null) return false; if (this == that) @@ -113106,7 +112284,7 @@ public int hashCode() { } @Override - public int compareTo(chronicleKeyRecordStart_result other) { + public int compareTo(chronicleKeyRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -113173,7 +112351,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStart_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecord_result("); boolean first = true; sb.append("success:"); @@ -113232,17 +112410,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStart_resultStandardScheme getScheme() { - return new chronicleKeyRecordStart_resultStandardScheme(); + public chronicleKeyRecord_resultStandardScheme getScheme() { + return new chronicleKeyRecord_resultStandardScheme(); } } - private static class chronicleKeyRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -113255,26 +112433,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map378 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map378.size); - long _key379; - @org.apache.thrift.annotation.Nullable java.util.Set _val380; - for (int _i381 = 0; _i381 < _map378.size; ++_i381) + org.apache.thrift.protocol.TMap _map360 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map360.size); + long _key361; + @org.apache.thrift.annotation.Nullable java.util.Set _val362; + for (int _i363 = 0; _i363 < _map360.size; ++_i363) { - _key379 = iprot.readI64(); + _key361 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set382 = iprot.readSetBegin(); - _val380 = new java.util.LinkedHashSet(2*_set382.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem383; - for (int _i384 = 0; _i384 < _set382.size; ++_i384) + org.apache.thrift.protocol.TSet _set364 = iprot.readSetBegin(); + _val362 = new java.util.LinkedHashSet(2*_set364.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem365; + for (int _i366 = 0; _i366 < _set364.size; ++_i366) { - _elem383 = new com.cinchapi.concourse.thrift.TObject(); - _elem383.read(iprot); - _val380.add(_elem383); + _elem365 = new com.cinchapi.concourse.thrift.TObject(); + _elem365.read(iprot); + _val362.add(_elem365); } iprot.readSetEnd(); } - struct.success.put(_key379, _val380); + struct.success.put(_key361, _val362); } iprot.readMapEnd(); } @@ -113322,7 +112500,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -113330,14 +112508,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter385 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter367 : struct.success.entrySet()) { - oprot.writeI64(_iter385.getKey()); + oprot.writeI64(_iter367.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter385.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter386 : _iter385.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter367.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter368 : _iter367.getValue()) { - _iter386.write(oprot); + _iter368.write(oprot); } oprot.writeSetEnd(); } @@ -113367,17 +112545,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord } - private static class chronicleKeyRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStart_resultTupleScheme getScheme() { - return new chronicleKeyRecordStart_resultTupleScheme(); + public chronicleKeyRecord_resultTupleScheme getScheme() { + return new chronicleKeyRecord_resultTupleScheme(); } } - private static class chronicleKeyRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -113396,14 +112574,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter387 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter369 : struct.success.entrySet()) { - oprot.writeI64(_iter387.getKey()); + oprot.writeI64(_iter369.getKey()); { - oprot.writeI32(_iter387.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter388 : _iter387.getValue()) + oprot.writeI32(_iter369.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter370 : _iter369.getValue()) { - _iter388.write(oprot); + _iter370.write(oprot); } } } @@ -113421,30 +112599,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map389 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map389.size); - long _key390; - @org.apache.thrift.annotation.Nullable java.util.Set _val391; - for (int _i392 = 0; _i392 < _map389.size; ++_i392) + org.apache.thrift.protocol.TMap _map371 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map371.size); + long _key372; + @org.apache.thrift.annotation.Nullable java.util.Set _val373; + for (int _i374 = 0; _i374 < _map371.size; ++_i374) { - _key390 = iprot.readI64(); + _key372 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set393 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val391 = new java.util.LinkedHashSet(2*_set393.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem394; - for (int _i395 = 0; _i395 < _set393.size; ++_i395) + org.apache.thrift.protocol.TSet _set375 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val373 = new java.util.LinkedHashSet(2*_set375.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem376; + for (int _i377 = 0; _i377 < _set375.size; ++_i377) { - _elem394 = new com.cinchapi.concourse.thrift.TObject(); - _elem394.read(iprot); - _val391.add(_elem394); + _elem376 = new com.cinchapi.concourse.thrift.TObject(); + _elem376.read(iprot); + _val373.add(_elem376); } } - struct.success.put(_key390, _val391); + struct.success.put(_key372, _val373); } } struct.setSuccessIsSet(true); @@ -113472,22 +112650,22 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartstr_args"); + public static class chronicleKeyRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStart_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStart_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStart_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -113571,6 +112749,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -113580,7 +112759,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -113588,16 +112767,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStart_args.class, metaDataMap); } - public chronicleKeyRecordStartstr_args() { + public chronicleKeyRecordStart_args() { } - public chronicleKeyRecordStartstr_args( + public chronicleKeyRecordStart_args( java.lang.String key, long record, - java.lang.String start, + long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -113607,6 +112786,7 @@ public chronicleKeyRecordStartstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -113615,15 +112795,13 @@ public chronicleKeyRecordStartstr_args( /** * Performs a deep copy on other. */ - public chronicleKeyRecordStartstr_args(chronicleKeyRecordStartstr_args other) { + public chronicleKeyRecordStart_args(chronicleKeyRecordStart_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } + this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -113636,8 +112814,8 @@ public chronicleKeyRecordStartstr_args(chronicleKeyRecordStartstr_args other) { } @Override - public chronicleKeyRecordStartstr_args deepCopy() { - return new chronicleKeyRecordStartstr_args(this); + public chronicleKeyRecordStart_args deepCopy() { + return new chronicleKeyRecordStart_args(this); } @Override @@ -113645,7 +112823,8 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.start = null; + setStartIsSet(false); + this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -113656,7 +112835,7 @@ public java.lang.String getKey() { return this.key; } - public chronicleKeyRecordStartstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public chronicleKeyRecordStart_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -113680,7 +112859,7 @@ public long getRecord() { return this.record; } - public chronicleKeyRecordStartstr_args setRecord(long record) { + public chronicleKeyRecordStart_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -113699,29 +112878,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public chronicleKeyRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public chronicleKeyRecordStart_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -113729,7 +112906,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public chronicleKeyRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public chronicleKeyRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -113754,7 +112931,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public chronicleKeyRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public chronicleKeyRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -113779,7 +112956,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public chronicleKeyRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public chronicleKeyRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -113822,7 +112999,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -113905,12 +113082,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecordStartstr_args) - return this.equals((chronicleKeyRecordStartstr_args)that); + if (that instanceof chronicleKeyRecordStart_args) + return this.equals((chronicleKeyRecordStart_args)that); return false; } - public boolean equals(chronicleKeyRecordStartstr_args that) { + public boolean equals(chronicleKeyRecordStart_args that) { if (that == null) return false; if (this == that) @@ -113934,12 +113111,12 @@ public boolean equals(chronicleKeyRecordStartstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } @@ -113983,9 +113160,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -114003,7 +113178,7 @@ public int hashCode() { } @Override - public int compareTo(chronicleKeyRecordStartstr_args other) { + public int compareTo(chronicleKeyRecordStart_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -114091,7 +113266,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStart_args("); boolean first = true; sb.append("key:"); @@ -114107,11 +113282,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -114170,17 +113341,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartstr_argsStandardScheme getScheme() { - return new chronicleKeyRecordStartstr_argsStandardScheme(); + public chronicleKeyRecordStart_argsStandardScheme getScheme() { + return new chronicleKeyRecordStart_argsStandardScheme(); } } - private static class chronicleKeyRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -114207,8 +113378,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -114252,7 +113423,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStart_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -114264,11 +113435,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -114290,17 +113459,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord } - private static class chronicleKeyRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartstr_argsTupleScheme getScheme() { - return new chronicleKeyRecordStartstr_argsTupleScheme(); + public chronicleKeyRecordStart_argsTupleScheme getScheme() { + return new chronicleKeyRecordStart_argsTupleScheme(); } } - private static class chronicleKeyRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -114329,7 +113498,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -114343,7 +113512,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -114355,7 +113524,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordSt struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(3)) { @@ -114380,31 +113549,28 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartstr_result"); + public static class chronicleKeyRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStart_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStart_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStart_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -114428,8 +113594,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -114486,35 +113650,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStart_result.class, metaDataMap); } - public chronicleKeyRecordStartstr_result() { + public chronicleKeyRecordStart_result() { } - public chronicleKeyRecordStartstr_result( + public chronicleKeyRecordStart_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public chronicleKeyRecordStartstr_result(chronicleKeyRecordStartstr_result other) { + public chronicleKeyRecordStart_result(chronicleKeyRecordStart_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -114540,16 +113700,13 @@ public chronicleKeyRecordStartstr_result(chronicleKeyRecordStartstr_result other this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public chronicleKeyRecordStartstr_result deepCopy() { - return new chronicleKeyRecordStartstr_result(this); + public chronicleKeyRecordStart_result deepCopy() { + return new chronicleKeyRecordStart_result(this); } @Override @@ -114558,7 +113715,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -114577,7 +113733,7 @@ public java.util.Map> success) { + public chronicleKeyRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -114602,7 +113758,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public chronicleKeyRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public chronicleKeyRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -114627,7 +113783,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public chronicleKeyRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public chronicleKeyRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -114648,11 +113804,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public chronicleKeyRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public chronicleKeyRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -114672,31 +113828,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public chronicleKeyRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -114728,15 +113859,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -114759,9 +113882,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -114782,20 +113902,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecordStartstr_result) - return this.equals((chronicleKeyRecordStartstr_result)that); + if (that instanceof chronicleKeyRecordStart_result) + return this.equals((chronicleKeyRecordStart_result)that); return false; } - public boolean equals(chronicleKeyRecordStartstr_result that) { + public boolean equals(chronicleKeyRecordStart_result that) { if (that == null) return false; if (this == that) @@ -114837,15 +113955,6 @@ public boolean equals(chronicleKeyRecordStartstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -114869,15 +113978,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(chronicleKeyRecordStartstr_result other) { + public int compareTo(chronicleKeyRecordStart_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -114924,16 +114029,6 @@ public int compareTo(chronicleKeyRecordStartstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -114954,7 +114049,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStart_result("); boolean first = true; sb.append("success:"); @@ -114988,14 +114083,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -115021,17 +114108,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartstr_resultStandardScheme getScheme() { - return new chronicleKeyRecordStartstr_resultStandardScheme(); + public chronicleKeyRecordStart_resultStandardScheme getScheme() { + return new chronicleKeyRecordStart_resultStandardScheme(); } } - private static class chronicleKeyRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -115044,26 +114131,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map396 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map396.size); - long _key397; - @org.apache.thrift.annotation.Nullable java.util.Set _val398; - for (int _i399 = 0; _i399 < _map396.size; ++_i399) + org.apache.thrift.protocol.TMap _map378 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map378.size); + long _key379; + @org.apache.thrift.annotation.Nullable java.util.Set _val380; + for (int _i381 = 0; _i381 < _map378.size; ++_i381) { - _key397 = iprot.readI64(); + _key379 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set400 = iprot.readSetBegin(); - _val398 = new java.util.LinkedHashSet(2*_set400.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem401; - for (int _i402 = 0; _i402 < _set400.size; ++_i402) + org.apache.thrift.protocol.TSet _set382 = iprot.readSetBegin(); + _val380 = new java.util.LinkedHashSet(2*_set382.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem383; + for (int _i384 = 0; _i384 < _set382.size; ++_i384) { - _elem401 = new com.cinchapi.concourse.thrift.TObject(); - _elem401.read(iprot); - _val398.add(_elem401); + _elem383 = new com.cinchapi.concourse.thrift.TObject(); + _elem383.read(iprot); + _val380.add(_elem383); } iprot.readSetEnd(); } - struct.success.put(_key397, _val398); + struct.success.put(_key379, _val380); } iprot.readMapEnd(); } @@ -115092,22 +114179,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -115120,7 +114198,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStart_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -115128,14 +114206,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter403 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter385 : struct.success.entrySet()) { - oprot.writeI64(_iter403.getKey()); + oprot.writeI64(_iter385.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter403.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter404 : _iter403.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter385.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter386 : _iter385.getValue()) { - _iter404.write(oprot); + _iter386.write(oprot); } oprot.writeSetEnd(); } @@ -115159,28 +114237,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class chronicleKeyRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartstr_resultTupleScheme getScheme() { - return new chronicleKeyRecordStartstr_resultTupleScheme(); + public chronicleKeyRecordStart_resultTupleScheme getScheme() { + return new chronicleKeyRecordStart_resultTupleScheme(); } } - private static class chronicleKeyRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -115195,21 +114268,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter405 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter387 : struct.success.entrySet()) { - oprot.writeI64(_iter405.getKey()); + oprot.writeI64(_iter387.getKey()); { - oprot.writeI32(_iter405.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter406 : _iter405.getValue()) + oprot.writeI32(_iter387.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter388 : _iter387.getValue()) { - _iter406.write(oprot); + _iter388.write(oprot); } } } @@ -115224,36 +114294,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map407 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map407.size); - long _key408; - @org.apache.thrift.annotation.Nullable java.util.Set _val409; - for (int _i410 = 0; _i410 < _map407.size; ++_i410) + org.apache.thrift.protocol.TMap _map389 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map389.size); + long _key390; + @org.apache.thrift.annotation.Nullable java.util.Set _val391; + for (int _i392 = 0; _i392 < _map389.size; ++_i392) { - _key408 = iprot.readI64(); + _key390 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set411 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val409 = new java.util.LinkedHashSet(2*_set411.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem412; - for (int _i413 = 0; _i413 < _set411.size; ++_i413) + org.apache.thrift.protocol.TSet _set393 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val391 = new java.util.LinkedHashSet(2*_set393.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem394; + for (int _i395 = 0; _i395 < _set393.size; ++_i395) { - _elem412 = new com.cinchapi.concourse.thrift.TObject(); - _elem412.read(iprot); - _val409.add(_elem412); + _elem394 = new com.cinchapi.concourse.thrift.TObject(); + _elem394.read(iprot); + _val391.add(_elem394); } } - struct.success.put(_key408, _val409); + struct.success.put(_key390, _val391); } } struct.setSuccessIsSet(true); @@ -115269,15 +114336,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordSt struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -115286,24 +114348,22 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartEnd_args"); + public static class chronicleKeyRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartstr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartEnd_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartEnd_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartstr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public long start; // required - public long tend; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -115313,10 +114373,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORD((short)2, "record"), START((short)3, "start"), - TEND((short)4, "tend"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -115338,13 +114397,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORD; case 3: // START return START; - case 4: // TEND - return TEND; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -115390,8 +114447,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; - private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -115401,9 +114456,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -115411,17 +114464,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartEnd_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartstr_args.class, metaDataMap); } - public chronicleKeyRecordStartEnd_args() { + public chronicleKeyRecordStartstr_args() { } - public chronicleKeyRecordStartEnd_args( + public chronicleKeyRecordStartstr_args( java.lang.String key, long record, - long start, - long tend, + java.lang.String start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -115431,9 +114483,6 @@ public chronicleKeyRecordStartEnd_args( this.record = record; setRecordIsSet(true); this.start = start; - setStartIsSet(true); - this.tend = tend; - setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -115442,14 +114491,15 @@ public chronicleKeyRecordStartEnd_args( /** * Performs a deep copy on other. */ - public chronicleKeyRecordStartEnd_args(chronicleKeyRecordStartEnd_args other) { + public chronicleKeyRecordStartstr_args(chronicleKeyRecordStartstr_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - this.start = other.start; - this.tend = other.tend; + if (other.isSetStart()) { + this.start = other.start; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -115462,8 +114512,8 @@ public chronicleKeyRecordStartEnd_args(chronicleKeyRecordStartEnd_args other) { } @Override - public chronicleKeyRecordStartEnd_args deepCopy() { - return new chronicleKeyRecordStartEnd_args(this); + public chronicleKeyRecordStartstr_args deepCopy() { + return new chronicleKeyRecordStartstr_args(this); } @Override @@ -115471,10 +114521,7 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; - setTendIsSet(false); - this.tend = 0; + this.start = null; this.creds = null; this.transaction = null; this.environment = null; @@ -115485,7 +114532,7 @@ public java.lang.String getKey() { return this.key; } - public chronicleKeyRecordStartEnd_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public chronicleKeyRecordStartstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -115509,7 +114556,7 @@ public long getRecord() { return this.record; } - public chronicleKeyRecordStartEnd_args setRecord(long record) { + public chronicleKeyRecordStartstr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -115528,50 +114575,29 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { return this.start; } - public chronicleKeyRecordStartEnd_args setStart(long start) { + public chronicleKeyRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { this.start = start; - setStartIsSet(true); return this; } public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + this.start = null; } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + return this.start != null; } public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - - public long getTend() { - return this.tend; - } - - public chronicleKeyRecordStartEnd_args setTend(long tend) { - this.tend = tend; - setTendIsSet(true); - return this; - } - - public void unsetTend() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); - } - - /** Returns true if field tend is set (has been assigned a value) and false otherwise */ - public boolean isSetTend() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); - } - - public void setTendIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); + if (!value) { + this.start = null; + } } @org.apache.thrift.annotation.Nullable @@ -115579,7 +114605,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public chronicleKeyRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public chronicleKeyRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -115604,7 +114630,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public chronicleKeyRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public chronicleKeyRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -115629,7 +114655,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public chronicleKeyRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public chronicleKeyRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -115672,15 +114698,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.Long)value); - } - break; - - case TEND: - if (value == null) { - unsetTend(); - } else { - setTend((java.lang.Long)value); + setStart((java.lang.String)value); } break; @@ -115724,9 +114742,6 @@ public java.lang.Object getFieldValue(_Fields field) { case START: return getStart(); - case TEND: - return getTend(); - case CREDS: return getCreds(); @@ -115754,8 +114769,6 @@ public boolean isSet(_Fields field) { return isSetRecord(); case START: return isSetStart(); - case TEND: - return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -115768,12 +114781,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecordStartEnd_args) - return this.equals((chronicleKeyRecordStartEnd_args)that); + if (that instanceof chronicleKeyRecordStartstr_args) + return this.equals((chronicleKeyRecordStartstr_args)that); return false; } - public boolean equals(chronicleKeyRecordStartEnd_args that) { + public boolean equals(chronicleKeyRecordStartstr_args that) { if (that == null) return false; if (this == that) @@ -115797,21 +114810,12 @@ public boolean equals(chronicleKeyRecordStartEnd_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (this.start != that.start) - return false; - } - - boolean this_present_tend = true; - boolean that_present_tend = true; - if (this_present_tend || that_present_tend) { - if (!(this_present_tend && that_present_tend)) - return false; - if (this.tend != that.tend) + if (!this.start.equals(that.start)) return false; } @@ -115855,9 +114859,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -115875,7 +114879,7 @@ public int hashCode() { } @Override - public int compareTo(chronicleKeyRecordStartEnd_args other) { + public int compareTo(chronicleKeyRecordStartstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -115912,16 +114916,6 @@ public int compareTo(chronicleKeyRecordStartEnd_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTend()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -115973,7 +114967,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartEnd_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartstr_args("); boolean first = true; sb.append("key:"); @@ -115989,11 +114983,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); - sb.append("tend:"); - sb.append(this.tend); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -116052,17 +115046,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartEnd_argsStandardScheme getScheme() { - return new chronicleKeyRecordStartEnd_argsStandardScheme(); + public chronicleKeyRecordStartstr_argsStandardScheme getScheme() { + return new chronicleKeyRecordStartstr_argsStandardScheme(); } } - private static class chronicleKeyRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -116089,22 +115083,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -116113,7 +115099,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -116122,7 +115108,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -116142,7 +115128,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -116154,12 +115140,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeI64(struct.tend); - oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -116181,17 +115166,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord } - private static class chronicleKeyRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartEnd_argsTupleScheme getScheme() { - return new chronicleKeyRecordStartEnd_argsTupleScheme(); + public chronicleKeyRecordStartstr_argsTupleScheme getScheme() { + return new chronicleKeyRecordStartstr_argsTupleScheme(); } } - private static class chronicleKeyRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -116203,19 +115188,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetStart()) { optionals.set(2); } - if (struct.isSetTend()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -116223,10 +115205,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } - if (struct.isSetTend()) { - oprot.writeI64(struct.tend); + oprot.writeString(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -116240,9 +115219,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -116252,24 +115231,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordSt struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readI64(); + struct.start = iprot.readString(); struct.setStartIsSet(true); } if (incoming.get(3)) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -116281,28 +115256,31 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartEnd_result"); + public static class chronicleKeyRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartEnd_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartEnd_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartstr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -116326,6 +115304,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -116382,31 +115362,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartEnd_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartstr_result.class, metaDataMap); } - public chronicleKeyRecordStartEnd_result() { + public chronicleKeyRecordStartstr_result() { } - public chronicleKeyRecordStartEnd_result( + public chronicleKeyRecordStartstr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public chronicleKeyRecordStartEnd_result(chronicleKeyRecordStartEnd_result other) { + public chronicleKeyRecordStartstr_result(chronicleKeyRecordStartstr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -116432,13 +115416,16 @@ public chronicleKeyRecordStartEnd_result(chronicleKeyRecordStartEnd_result other this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public chronicleKeyRecordStartEnd_result deepCopy() { - return new chronicleKeyRecordStartEnd_result(this); + public chronicleKeyRecordStartstr_result deepCopy() { + return new chronicleKeyRecordStartstr_result(this); } @Override @@ -116447,6 +115434,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -116465,7 +115453,7 @@ public java.util.Map> success) { + public chronicleKeyRecordStartstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -116490,7 +115478,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public chronicleKeyRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public chronicleKeyRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -116515,7 +115503,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public chronicleKeyRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public chronicleKeyRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -116536,11 +115524,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public chronicleKeyRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public chronicleKeyRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -116560,6 +115548,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public chronicleKeyRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -116591,7 +115604,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -116614,6 +115635,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -116634,18 +115658,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecordStartEnd_result) - return this.equals((chronicleKeyRecordStartEnd_result)that); + if (that instanceof chronicleKeyRecordStartstr_result) + return this.equals((chronicleKeyRecordStartstr_result)that); return false; } - public boolean equals(chronicleKeyRecordStartEnd_result that) { + public boolean equals(chronicleKeyRecordStartstr_result that) { if (that == null) return false; if (this == that) @@ -116687,6 +115713,15 @@ public boolean equals(chronicleKeyRecordStartEnd_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -116710,11 +115745,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(chronicleKeyRecordStartEnd_result other) { + public int compareTo(chronicleKeyRecordStartstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -116761,6 +115800,16 @@ public int compareTo(chronicleKeyRecordStartEnd_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -116781,7 +115830,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartEnd_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartstr_result("); boolean first = true; sb.append("success:"); @@ -116815,6 +115864,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -116840,17 +115897,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartEnd_resultStandardScheme getScheme() { - return new chronicleKeyRecordStartEnd_resultStandardScheme(); + public chronicleKeyRecordStartstr_resultStandardScheme getScheme() { + return new chronicleKeyRecordStartstr_resultStandardScheme(); } } - private static class chronicleKeyRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -116863,26 +115920,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map414 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map414.size); - long _key415; - @org.apache.thrift.annotation.Nullable java.util.Set _val416; - for (int _i417 = 0; _i417 < _map414.size; ++_i417) + org.apache.thrift.protocol.TMap _map396 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map396.size); + long _key397; + @org.apache.thrift.annotation.Nullable java.util.Set _val398; + for (int _i399 = 0; _i399 < _map396.size; ++_i399) { - _key415 = iprot.readI64(); + _key397 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set418 = iprot.readSetBegin(); - _val416 = new java.util.LinkedHashSet(2*_set418.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem419; - for (int _i420 = 0; _i420 < _set418.size; ++_i420) + org.apache.thrift.protocol.TSet _set400 = iprot.readSetBegin(); + _val398 = new java.util.LinkedHashSet(2*_set400.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem401; + for (int _i402 = 0; _i402 < _set400.size; ++_i402) { - _elem419 = new com.cinchapi.concourse.thrift.TObject(); - _elem419.read(iprot); - _val416.add(_elem419); + _elem401 = new com.cinchapi.concourse.thrift.TObject(); + _elem401.read(iprot); + _val398.add(_elem401); } iprot.readSetEnd(); } - struct.success.put(_key415, _val416); + struct.success.put(_key397, _val398); } iprot.readMapEnd(); } @@ -116911,13 +115968,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -116930,7 +115996,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -116938,14 +116004,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter421 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter403 : struct.success.entrySet()) { - oprot.writeI64(_iter421.getKey()); + oprot.writeI64(_iter403.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter421.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter422 : _iter421.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter403.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter404 : _iter403.getValue()) { - _iter422.write(oprot); + _iter404.write(oprot); } oprot.writeSetEnd(); } @@ -116969,23 +116035,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class chronicleKeyRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartEnd_resultTupleScheme getScheme() { - return new chronicleKeyRecordStartEnd_resultTupleScheme(); + public chronicleKeyRecordStartstr_resultTupleScheme getScheme() { + return new chronicleKeyRecordStartstr_resultTupleScheme(); } } - private static class chronicleKeyRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -117000,18 +116071,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter423 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter405 : struct.success.entrySet()) { - oprot.writeI64(_iter423.getKey()); + oprot.writeI64(_iter405.getKey()); { - oprot.writeI32(_iter423.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter424 : _iter423.getValue()) + oprot.writeI32(_iter405.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter406 : _iter405.getValue()) { - _iter424.write(oprot); + _iter406.write(oprot); } } } @@ -117026,33 +116100,36 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map425 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map425.size); - long _key426; - @org.apache.thrift.annotation.Nullable java.util.Set _val427; - for (int _i428 = 0; _i428 < _map425.size; ++_i428) + org.apache.thrift.protocol.TMap _map407 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map407.size); + long _key408; + @org.apache.thrift.annotation.Nullable java.util.Set _val409; + for (int _i410 = 0; _i410 < _map407.size; ++_i410) { - _key426 = iprot.readI64(); + _key408 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set429 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val427 = new java.util.LinkedHashSet(2*_set429.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem430; - for (int _i431 = 0; _i431 < _set429.size; ++_i431) + org.apache.thrift.protocol.TSet _set411 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val409 = new java.util.LinkedHashSet(2*_set411.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem412; + for (int _i413 = 0; _i413 < _set411.size; ++_i413) { - _elem430 = new com.cinchapi.concourse.thrift.TObject(); - _elem430.read(iprot); - _val427.add(_elem430); + _elem412 = new com.cinchapi.concourse.thrift.TObject(); + _elem412.read(iprot); + _val409.add(_elem412); } } - struct.success.put(_key426, _val427); + struct.success.put(_key408, _val409); } } struct.setSuccessIsSet(true); @@ -117068,10 +116145,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordSt struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -117080,24 +116162,24 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartstrEndstr_args"); + public static class chronicleKeyRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartEnd_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartstrEndstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartstrEndstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartEnd_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartEnd_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required - public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required + public long start; // required + public long tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -117184,6 +116266,8 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; + private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -117193,9 +116277,9 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -117203,17 +116287,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartstrEndstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartEnd_args.class, metaDataMap); } - public chronicleKeyRecordStartstrEndstr_args() { + public chronicleKeyRecordStartEnd_args() { } - public chronicleKeyRecordStartstrEndstr_args( + public chronicleKeyRecordStartEnd_args( java.lang.String key, long record, - java.lang.String start, - java.lang.String tend, + long start, + long tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -117223,7 +116307,9 @@ public chronicleKeyRecordStartstrEndstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.tend = tend; + setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -117232,18 +116318,14 @@ public chronicleKeyRecordStartstrEndstr_args( /** * Performs a deep copy on other. */ - public chronicleKeyRecordStartstrEndstr_args(chronicleKeyRecordStartstrEndstr_args other) { + public chronicleKeyRecordStartEnd_args(chronicleKeyRecordStartEnd_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } - if (other.isSetTend()) { - this.tend = other.tend; - } + this.start = other.start; + this.tend = other.tend; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -117256,8 +116338,8 @@ public chronicleKeyRecordStartstrEndstr_args(chronicleKeyRecordStartstrEndstr_ar } @Override - public chronicleKeyRecordStartstrEndstr_args deepCopy() { - return new chronicleKeyRecordStartstrEndstr_args(this); + public chronicleKeyRecordStartEnd_args deepCopy() { + return new chronicleKeyRecordStartEnd_args(this); } @Override @@ -117265,8 +116347,10 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.start = null; - this.tend = null; + setStartIsSet(false); + this.start = 0; + setTendIsSet(false); + this.tend = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -117277,7 +116361,7 @@ public java.lang.String getKey() { return this.key; } - public chronicleKeyRecordStartstrEndstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public chronicleKeyRecordStartEnd_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -117301,7 +116385,7 @@ public long getRecord() { return this.record; } - public chronicleKeyRecordStartstrEndstr_args setRecord(long record) { + public chronicleKeyRecordStartEnd_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -117320,54 +116404,50 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public chronicleKeyRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public chronicleKeyRecordStartEnd_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTend() { + public long getTend() { return this.tend; } - public chronicleKeyRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + public chronicleKeyRecordStartEnd_args setTend(long tend) { this.tend = tend; + setTendIsSet(true); return this; } public void unsetTend() { - this.tend = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); } /** Returns true if field tend is set (has been assigned a value) and false otherwise */ public boolean isSetTend() { - return this.tend != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); } public void setTendIsSet(boolean value) { - if (!value) { - this.tend = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -117375,7 +116455,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public chronicleKeyRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public chronicleKeyRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -117400,7 +116480,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public chronicleKeyRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public chronicleKeyRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -117425,7 +116505,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public chronicleKeyRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public chronicleKeyRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -117468,7 +116548,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -117476,7 +116556,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTend(); } else { - setTend((java.lang.String)value); + setTend((java.lang.Long)value); } break; @@ -117564,12 +116644,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecordStartstrEndstr_args) - return this.equals((chronicleKeyRecordStartstrEndstr_args)that); + if (that instanceof chronicleKeyRecordStartEnd_args) + return this.equals((chronicleKeyRecordStartEnd_args)that); return false; } - public boolean equals(chronicleKeyRecordStartstrEndstr_args that) { + public boolean equals(chronicleKeyRecordStartEnd_args that) { if (that == null) return false; if (this == that) @@ -117593,21 +116673,21 @@ public boolean equals(chronicleKeyRecordStartstrEndstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } - boolean this_present_tend = true && this.isSetTend(); - boolean that_present_tend = true && that.isSetTend(); + boolean this_present_tend = true; + boolean that_present_tend = true; if (this_present_tend || that_present_tend) { if (!(this_present_tend && that_present_tend)) return false; - if (!this.tend.equals(that.tend)) + if (this.tend != that.tend) return false; } @@ -117651,13 +116731,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); - if (isSetTend()) - hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -117675,7 +116751,7 @@ public int hashCode() { } @Override - public int compareTo(chronicleKeyRecordStartstrEndstr_args other) { + public int compareTo(chronicleKeyRecordStartEnd_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -117773,7 +116849,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartstrEndstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartEnd_args("); boolean first = true; sb.append("key:"); @@ -117789,19 +116865,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("tend:"); - if (this.tend == null) { - sb.append("null"); - } else { - sb.append(this.tend); - } + sb.append(this.tend); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -117860,17 +116928,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartstrEndstr_argsStandardScheme getScheme() { - return new chronicleKeyRecordStartstrEndstr_argsStandardScheme(); + public chronicleKeyRecordStartEnd_argsStandardScheme getScheme() { + return new chronicleKeyRecordStartEnd_argsStandardScheme(); } } - private static class chronicleKeyRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -117897,16 +116965,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 4: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tend = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -117950,7 +117018,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -117962,16 +117030,12 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } - if (struct.tend != null) { - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeString(struct.tend); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeI64(struct.tend); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -117993,17 +117057,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord } - private static class chronicleKeyRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartstrEndstr_argsTupleScheme getScheme() { - return new chronicleKeyRecordStartstrEndstr_argsTupleScheme(); + public chronicleKeyRecordStartEnd_argsTupleScheme getScheme() { + return new chronicleKeyRecordStartEnd_argsTupleScheme(); } } - private static class chronicleKeyRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -118035,10 +117099,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetTend()) { - oprot.writeString(struct.tend); + oprot.writeI64(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -118052,7 +117116,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -118064,11 +117128,11 @@ public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordSt struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(3)) { - struct.tend = iprot.readString(); + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } if (incoming.get(4)) { @@ -118093,31 +117157,28 @@ private static S scheme(org.apache. } } - public static class chronicleKeyRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartstrEndstr_result"); + public static class chronicleKeyRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartEnd_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartstrEndstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartstrEndstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartEnd_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartEnd_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -118141,8 +117202,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -118199,35 +117258,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartstrEndstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartEnd_result.class, metaDataMap); } - public chronicleKeyRecordStartstrEndstr_result() { + public chronicleKeyRecordStartEnd_result() { } - public chronicleKeyRecordStartstrEndstr_result( + public chronicleKeyRecordStartEnd_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public chronicleKeyRecordStartstrEndstr_result(chronicleKeyRecordStartstrEndstr_result other) { + public chronicleKeyRecordStartEnd_result(chronicleKeyRecordStartEnd_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -118253,16 +117308,13 @@ public chronicleKeyRecordStartstrEndstr_result(chronicleKeyRecordStartstrEndstr_ this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public chronicleKeyRecordStartstrEndstr_result deepCopy() { - return new chronicleKeyRecordStartstrEndstr_result(this); + public chronicleKeyRecordStartEnd_result deepCopy() { + return new chronicleKeyRecordStartEnd_result(this); } @Override @@ -118271,7 +117323,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -118290,7 +117341,7 @@ public java.util.Map> success) { + public chronicleKeyRecordStartEnd_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -118315,7 +117366,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public chronicleKeyRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public chronicleKeyRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -118340,7 +117391,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public chronicleKeyRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public chronicleKeyRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -118361,11 +117412,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public chronicleKeyRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public chronicleKeyRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -118385,31 +117436,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public chronicleKeyRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -118441,15 +117467,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -118472,9 +117490,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -118495,20 +117510,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof chronicleKeyRecordStartstrEndstr_result) - return this.equals((chronicleKeyRecordStartstrEndstr_result)that); + if (that instanceof chronicleKeyRecordStartEnd_result) + return this.equals((chronicleKeyRecordStartEnd_result)that); return false; } - public boolean equals(chronicleKeyRecordStartstrEndstr_result that) { + public boolean equals(chronicleKeyRecordStartEnd_result that) { if (that == null) return false; if (this == that) @@ -118550,15 +117563,6 @@ public boolean equals(chronicleKeyRecordStartstrEndstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -118582,15 +117586,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(chronicleKeyRecordStartstrEndstr_result other) { + public int compareTo(chronicleKeyRecordStartEnd_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -118637,16 +117637,6 @@ public int compareTo(chronicleKeyRecordStartstrEndstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -118667,7 +117657,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartstrEndstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartEnd_result("); boolean first = true; sb.append("success:"); @@ -118701,14 +117691,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -118734,17 +117716,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class chronicleKeyRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartstrEndstr_resultStandardScheme getScheme() { - return new chronicleKeyRecordStartstrEndstr_resultStandardScheme(); + public chronicleKeyRecordStartEnd_resultStandardScheme getScheme() { + return new chronicleKeyRecordStartEnd_resultStandardScheme(); } } - private static class chronicleKeyRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -118757,26 +117739,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map432 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map432.size); - long _key433; - @org.apache.thrift.annotation.Nullable java.util.Set _val434; - for (int _i435 = 0; _i435 < _map432.size; ++_i435) + org.apache.thrift.protocol.TMap _map414 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map414.size); + long _key415; + @org.apache.thrift.annotation.Nullable java.util.Set _val416; + for (int _i417 = 0; _i417 < _map414.size; ++_i417) { - _key433 = iprot.readI64(); + _key415 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set436 = iprot.readSetBegin(); - _val434 = new java.util.LinkedHashSet(2*_set436.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem437; - for (int _i438 = 0; _i438 < _set436.size; ++_i438) + org.apache.thrift.protocol.TSet _set418 = iprot.readSetBegin(); + _val416 = new java.util.LinkedHashSet(2*_set418.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem419; + for (int _i420 = 0; _i420 < _set418.size; ++_i420) { - _elem437 = new com.cinchapi.concourse.thrift.TObject(); - _elem437.read(iprot); - _val434.add(_elem437); + _elem419 = new com.cinchapi.concourse.thrift.TObject(); + _elem419.read(iprot); + _val416.add(_elem419); } iprot.readSetEnd(); } - struct.success.put(_key433, _val434); + struct.success.put(_key415, _val416); } iprot.readMapEnd(); } @@ -118805,22 +117787,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -118833,7 +117806,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordS } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -118841,14 +117814,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter439 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter421 : struct.success.entrySet()) { - oprot.writeI64(_iter439.getKey()); + oprot.writeI64(_iter421.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter439.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter440 : _iter439.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter421.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter422 : _iter421.getValue()) { - _iter440.write(oprot); + _iter422.write(oprot); } oprot.writeSetEnd(); } @@ -118872,28 +117845,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecord struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class chronicleKeyRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public chronicleKeyRecordStartstrEndstr_resultTupleScheme getScheme() { - return new chronicleKeyRecordStartstrEndstr_resultTupleScheme(); + public chronicleKeyRecordStartEnd_resultTupleScheme getScheme() { + return new chronicleKeyRecordStartEnd_resultTupleScheme(); } } - private static class chronicleKeyRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -118908,21 +117876,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter441 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter423 : struct.success.entrySet()) { - oprot.writeI64(_iter441.getKey()); + oprot.writeI64(_iter423.getKey()); { - oprot.writeI32(_iter441.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter442 : _iter441.getValue()) + oprot.writeI32(_iter423.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter424 : _iter423.getValue()) { - _iter442.write(oprot); + _iter424.write(oprot); } } } @@ -118937,36 +117902,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordS if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map443 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map443.size); - long _key444; - @org.apache.thrift.annotation.Nullable java.util.Set _val445; - for (int _i446 = 0; _i446 < _map443.size; ++_i446) + org.apache.thrift.protocol.TMap _map425 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map425.size); + long _key426; + @org.apache.thrift.annotation.Nullable java.util.Set _val427; + for (int _i428 = 0; _i428 < _map425.size; ++_i428) { - _key444 = iprot.readI64(); + _key426 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set447 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val445 = new java.util.LinkedHashSet(2*_set447.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem448; - for (int _i449 = 0; _i449 < _set447.size; ++_i449) + org.apache.thrift.protocol.TSet _set429 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val427 = new java.util.LinkedHashSet(2*_set429.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem430; + for (int _i431 = 0; _i431 < _set429.size; ++_i431) { - _elem448 = new com.cinchapi.concourse.thrift.TObject(); - _elem448.read(iprot); - _val445.add(_elem448); + _elem430 = new com.cinchapi.concourse.thrift.TObject(); + _elem430.read(iprot); + _val427.add(_elem430); } } - struct.success.put(_key444, _val445); + struct.success.put(_key426, _val427); } } struct.setSuccessIsSet(true); @@ -118982,15 +117944,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordSt struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -118999,28 +117956,37 @@ private static S scheme(org.apache. } } - public static class clearRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearRecord_args"); + public static class chronicleKeyRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartstrEndstr_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartstrEndstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartstrEndstr_argsTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + KEY((short)1, "key"), + RECORD((short)2, "record"), + START((short)3, "start"), + TEND((short)4, "tend"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -119036,13 +118002,19 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD + case 1: // KEY + return KEY; + case 2: // RECORD return RECORD; - case 2: // CREDS + case 3: // START + return START; + case 4: // TEND + return TEND; + case 5: // CREDS return CREDS; - case 3: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -119092,8 +118064,14 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -119101,21 +118079,27 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartstrEndstr_args.class, metaDataMap); } - public clearRecord_args() { + public chronicleKeyRecordStartstrEndstr_args() { } - public clearRecord_args( + public chronicleKeyRecordStartstrEndstr_args( + java.lang.String key, long record, + java.lang.String start, + java.lang.String tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); + this.key = key; this.record = record; setRecordIsSet(true); + this.start = start; + this.tend = tend; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -119124,9 +118108,18 @@ public clearRecord_args( /** * Performs a deep copy on other. */ - public clearRecord_args(clearRecord_args other) { + public chronicleKeyRecordStartstrEndstr_args(chronicleKeyRecordStartstrEndstr_args other) { __isset_bitfield = other.__isset_bitfield; + if (other.isSetKey()) { + this.key = other.key; + } this.record = other.record; + if (other.isSetStart()) { + this.start = other.start; + } + if (other.isSetTend()) { + this.tend = other.tend; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -119139,24 +118132,52 @@ public clearRecord_args(clearRecord_args other) { } @Override - public clearRecord_args deepCopy() { - return new clearRecord_args(this); + public chronicleKeyRecordStartstrEndstr_args deepCopy() { + return new chronicleKeyRecordStartstrEndstr_args(this); } @Override public void clear() { + this.key = null; setRecordIsSet(false); this.record = 0; + this.start = null; + this.tend = null; this.creds = null; this.transaction = null; this.environment = null; } + @org.apache.thrift.annotation.Nullable + public java.lang.String getKey() { + return this.key; + } + + public chronicleKeyRecordStartstrEndstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; + return this; + } + + public void unsetKey() { + this.key = null; + } + + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; + } + + public void setKeyIsSet(boolean value) { + if (!value) { + this.key = null; + } + } + public long getRecord() { return this.record; } - public clearRecord_args setRecord(long record) { + public chronicleKeyRecordStartstrEndstr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -119175,12 +118196,62 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { + return this.start; + } + + public chronicleKeyRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + this.start = start; + return this; + } + + public void unsetStart() { + this.start = null; + } + + /** Returns true if field start is set (has been assigned a value) and false otherwise */ + public boolean isSetStart() { + return this.start != null; + } + + public void setStartIsSet(boolean value) { + if (!value) { + this.start = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTend() { + return this.tend; + } + + public chronicleKeyRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + this.tend = tend; + return this; + } + + public void unsetTend() { + this.tend = null; + } + + /** Returns true if field tend is set (has been assigned a value) and false otherwise */ + public boolean isSetTend() { + return this.tend != null; + } + + public void setTendIsSet(boolean value) { + if (!value) { + this.tend = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public clearRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public chronicleKeyRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -119205,7 +118276,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public clearRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public chronicleKeyRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -119230,7 +118301,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public clearRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public chronicleKeyRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -119253,6 +118324,14 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case KEY: + if (value == null) { + unsetKey(); + } else { + setKey((java.lang.String)value); + } + break; + case RECORD: if (value == null) { unsetRecord(); @@ -119261,6 +118340,22 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case START: + if (value == null) { + unsetStart(); + } else { + setStart((java.lang.String)value); + } + break; + + case TEND: + if (value == null) { + unsetTend(); + } else { + setTend((java.lang.String)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -119292,9 +118387,18 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case KEY: + return getKey(); + case RECORD: return getRecord(); + case START: + return getStart(); + + case TEND: + return getTend(); + case CREDS: return getCreds(); @@ -119316,8 +118420,14 @@ public boolean isSet(_Fields field) { } switch (field) { + case KEY: + return isSetKey(); case RECORD: return isSetRecord(); + case START: + return isSetStart(); + case TEND: + return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -119330,17 +118440,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearRecord_args) - return this.equals((clearRecord_args)that); + if (that instanceof chronicleKeyRecordStartstrEndstr_args) + return this.equals((chronicleKeyRecordStartstrEndstr_args)that); return false; } - public boolean equals(clearRecord_args that) { + public boolean equals(chronicleKeyRecordStartstrEndstr_args that) { if (that == null) return false; if (this == that) return true; + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) + return false; + if (!this.key.equals(that.key)) + return false; + } + boolean this_present_record = true; boolean that_present_record = true; if (this_present_record || that_present_record) { @@ -119350,6 +118469,24 @@ public boolean equals(clearRecord_args that) { return false; } + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); + if (this_present_start || that_present_start) { + if (!(this_present_start && that_present_start)) + return false; + if (!this.start.equals(that.start)) + return false; + } + + boolean this_present_tend = true && this.isSetTend(); + boolean that_present_tend = true && that.isSetTend(); + if (this_present_tend || that_present_tend) { + if (!(this_present_tend && that_present_tend)) + return false; + if (!this.tend.equals(that.tend)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -119384,8 +118521,20 @@ public boolean equals(clearRecord_args that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); + if (isSetTend()) + hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -119402,13 +118551,23 @@ public int hashCode() { } @Override - public int compareTo(clearRecord_args other) { + public int compareTo(chronicleKeyRecordStartstrEndstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; @@ -119419,6 +118578,26 @@ public int compareTo(clearRecord_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetStart()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTend()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -119470,13 +118649,37 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartstrEndstr_args("); boolean first = true; + sb.append("key:"); + if (this.key == null) { + sb.append("null"); + } else { + sb.append(this.key); + } + first = false; + if (!first) sb.append(", "); sb.append("record:"); sb.append(this.record); first = false; if (!first) sb.append(", "); + sb.append("start:"); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } + first = false; + if (!first) sb.append(", "); + sb.append("tend:"); + if (this.tend == null) { + sb.append("null"); + } else { + sb.append(this.tend); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -119533,17 +118736,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearRecord_argsStandardScheme getScheme() { - return new clearRecord_argsStandardScheme(); + public chronicleKeyRecordStartstrEndstr_argsStandardScheme getScheme() { + return new chronicleKeyRecordStartstrEndstr_argsStandardScheme(); } } - private static class clearRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -119553,7 +118756,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_args st break; } switch (schemeField.id) { - case 1: // RECORD + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // RECORD if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); @@ -119561,7 +118772,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 3: // START + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); + struct.setStartIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // TEND + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -119570,7 +118797,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -119579,7 +118806,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -119599,13 +118826,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); + oprot.writeFieldEnd(); + } oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } + if (struct.tend != null) { + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeString(struct.tend); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -119627,35 +118869,53 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecord_args s } - private static class clearRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearRecord_argsTupleScheme getScheme() { - return new clearRecord_argsTupleScheme(); + public chronicleKeyRecordStartstrEndstr_argsTupleScheme getScheme() { + return new chronicleKeyRecordStartstrEndstr_argsTupleScheme(); } } - private static class clearRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetStart()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetTend()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetCreds()) { + optionals.set(4); + } + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); + if (struct.isSetKey()) { + oprot.writeString(struct.key); + } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } + if (struct.isSetStart()) { + oprot.writeString(struct.start); + } + if (struct.isSetTend()) { + oprot.writeString(struct.tend); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -119668,24 +118928,36 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearRecord_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); + } + if (incoming.get(1)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(2)) { + struct.start = iprot.readString(); + struct.setStartIsSet(true); + } + if (incoming.get(3)) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -119697,25 +118969,31 @@ private static S scheme(org.apache. } } - public static class clearRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearRecord_result"); + public static class chronicleKeyRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("chronicleKeyRecordStartstrEndstr_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new chronicleKeyRecordStartstrEndstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new chronicleKeyRecordStartstrEndstr_resultTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -119731,12 +119009,16 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // EX return EX; case 2: // EX2 return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -119783,34 +119065,63 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(chronicleKeyRecordStartstrEndstr_result.class, metaDataMap); } - public clearRecord_result() { + public chronicleKeyRecordStartstrEndstr_result() { } - public clearRecord_result( + public chronicleKeyRecordStartstrEndstr_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); + this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public clearRecord_result(clearRecord_result other) { + public chronicleKeyRecordStartstrEndstr_result(chronicleKeyRecordStartstrEndstr_result other) { + if (other.isSetSuccess()) { + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { + + java.lang.Long other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); + + java.lang.Long __this__success_copy_key = other_element_key; + + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { + __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); + } + + __this__success.put(__this__success_copy_key, __this__success_copy_value); + } + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -119818,20 +119129,61 @@ public clearRecord_result(clearRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public clearRecord_result deepCopy() { - return new clearRecord_result(this); + public chronicleKeyRecordStartstrEndstr_result deepCopy() { + return new chronicleKeyRecordStartstrEndstr_result(this); } @Override public void clear() { + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; + } + + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(long key, java.util.Set val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap>(); + } + this.success.put(key, val); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Map> getSuccess() { + return this.success; + } + + public chronicleKeyRecordStartstrEndstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> 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; + } } @org.apache.thrift.annotation.Nullable @@ -119839,7 +119191,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public clearRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public chronicleKeyRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -119864,7 +119216,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public clearRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public chronicleKeyRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -119885,11 +119237,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public clearRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public chronicleKeyRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -119909,9 +119261,42 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public chronicleKeyRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.util.Map>)value); + } + break; + case EX: if (value == null) { unsetEx(); @@ -119932,7 +119317,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -119943,6 +119336,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return getSuccess(); + case EX: return getEx(); @@ -119952,6 +119348,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -119964,29 +119363,42 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case EX: return isSetEx(); case EX2: return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearRecord_result) - return this.equals((clearRecord_result)that); + if (that instanceof chronicleKeyRecordStartstrEndstr_result) + return this.equals((chronicleKeyRecordStartstrEndstr_result)that); return false; } - public boolean equals(clearRecord_result that) { + public boolean equals(chronicleKeyRecordStartstrEndstr_result that) { if (that == null) return false; if (this == that) return true; + 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_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -120014,6 +119426,15 @@ public boolean equals(clearRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -120021,6 +119442,10 @@ public boolean equals(clearRecord_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -120033,17 +119458,31 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(clearRecord_result other) { + public int compareTo(chronicleKeyRecordStartstrEndstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -120074,6 +119513,16 @@ public int compareTo(clearRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -120094,9 +119543,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("chronicleKeyRecordStartstrEndstr_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("ex:"); if (this.ex == null) { sb.append("null"); @@ -120120,6 +119577,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -120145,17 +119610,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearRecord_resultStandardScheme getScheme() { - return new clearRecord_resultStandardScheme(); + public chronicleKeyRecordStartstrEndstr_resultStandardScheme getScheme() { + return new chronicleKeyRecordStartstrEndstr_resultStandardScheme(); } } - private static class clearRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class chronicleKeyRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, chronicleKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -120165,6 +119630,37 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_result break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map432 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map432.size); + long _key433; + @org.apache.thrift.annotation.Nullable java.util.Set _val434; + for (int _i435 = 0; _i435 < _map432.size; ++_i435) + { + _key433 = iprot.readI64(); + { + org.apache.thrift.protocol.TSet _set436 = iprot.readSetBegin(); + _val434 = new java.util.LinkedHashSet(2*_set436.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem437; + for (int _i438 = 0; _i438 < _set436.size; ++_i438) + { + _elem437 = new com.cinchapi.concourse.thrift.TObject(); + _elem437.read(iprot); + _val434.add(_elem437); + } + iprot.readSetEnd(); + } + struct.success.put(_key433, _val434); + } + iprot.readMapEnd(); + } + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -120185,13 +119681,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -120204,10 +119709,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, chronicleKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.success != null) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter439 : struct.success.entrySet()) + { + oprot.writeI64(_iter439.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter439.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter440 : _iter439.getValue()) + { + _iter440.write(oprot); + } + oprot.writeSetEnd(); + } + } + oprot.writeMapEnd(); + } + oprot.writeFieldEnd(); + } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -120223,35 +119748,62 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecord_result struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class clearRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class chronicleKeyRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearRecord_resultTupleScheme getScheme() { - return new clearRecord_resultTupleScheme(); + public chronicleKeyRecordStartstrEndstr_resultTupleScheme getScheme() { + return new chronicleKeyRecordStartstrEndstr_resultTupleScheme(); } } - private static class clearRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class chronicleKeyRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetEx()) { + if (struct.isSetSuccess()) { optionals.set(0); } - if (struct.isSetEx2()) { + if (struct.isSetEx()) { optionals.set(1); } - if (struct.isSetEx3()) { + if (struct.isSetEx2()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetEx3()) { + optionals.set(3); + } + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetSuccess()) { + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry> _iter441 : struct.success.entrySet()) + { + oprot.writeI64(_iter441.getKey()); + { + oprot.writeI32(_iter441.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter442 : _iter441.getValue()) + { + _iter442.write(oprot); + } + } + } + } + } if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -120261,27 +119813,60 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearRecord_result if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, chronicleKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { + { + org.apache.thrift.protocol.TMap _map443 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map443.size); + long _key444; + @org.apache.thrift.annotation.Nullable java.util.Set _val445; + for (int _i446 = 0; _i446 < _map443.size; ++_i446) + { + _key444 = iprot.readI64(); + { + org.apache.thrift.protocol.TSet _set447 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val445 = new java.util.LinkedHashSet(2*_set447.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem448; + for (int _i449 = 0; _i449 < _set447.size; ++_i449) + { + _elem448 = new com.cinchapi.concourse.thrift.TObject(); + _elem448.read(iprot); + _val445.add(_elem448); + } + } + struct.success.put(_key444, _val445); + } + } + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(2)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + if (incoming.get(3)) { + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -120290,25 +119875,25 @@ private static S scheme(org.apache. } } - public static class clearRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearRecords_args"); + public static class clearRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearRecord_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearRecord_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), + RECORD((short)1, "record"), CREDS((short)2, "creds"), TRANSACTION((short)3, "transaction"), ENVIRONMENT((short)4, "environment"); @@ -120327,8 +119912,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; + case 1: // RECORD + return RECORD; case 2: // CREDS return CREDS; case 3: // TRANSACTION @@ -120378,12 +119963,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -120391,20 +119977,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearRecord_args.class, metaDataMap); } - public clearRecords_args() { + public clearRecord_args() { } - public clearRecords_args( - java.util.List records, + public clearRecord_args( + long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; + this.record = record; + setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -120413,11 +120000,9 @@ public clearRecords_args( /** * Performs a deep copy on other. */ - public clearRecords_args(clearRecords_args other) { - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; - } + public clearRecord_args(clearRecord_args other) { + __isset_bitfield = other.__isset_bitfield; + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -120430,57 +120015,40 @@ public clearRecords_args(clearRecords_args other) { } @Override - public clearRecords_args deepCopy() { - return new clearRecords_args(this); + public clearRecord_args deepCopy() { + return new clearRecord_args(this); } @Override public void clear() { - this.records = null; + setRecordIsSet(false); + this.record = 0; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public long getRecord() { + return this.record; } - public clearRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public clearRecord_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetRecords() { - this.records = null; + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -120488,7 +120056,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public clearRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public clearRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -120513,7 +120081,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public clearRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public clearRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -120538,7 +120106,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public clearRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public clearRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -120561,11 +120129,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); } break; @@ -120600,8 +120168,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); case CREDS: return getCreds(); @@ -120624,8 +120192,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -120638,23 +120206,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearRecords_args) - return this.equals((clearRecords_args)that); + if (that instanceof clearRecord_args) + return this.equals((clearRecord_args)that); return false; } - public boolean equals(clearRecords_args that) { + public boolean equals(clearRecord_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) return false; } @@ -120692,9 +120260,7 @@ public boolean equals(clearRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -120712,19 +120278,19 @@ public int hashCode() { } @Override - public int compareTo(clearRecords_args other) { + public int compareTo(clearRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } @@ -120780,15 +120346,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearRecord_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } + sb.append("record:"); + sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -120839,23 +120401,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 clearRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearRecords_argsStandardScheme getScheme() { - return new clearRecords_argsStandardScheme(); + public clearRecord_argsStandardScheme getScheme() { + return new clearRecord_argsStandardScheme(); } } - private static class clearRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -120865,20 +120429,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecords_args s break; } switch (schemeField.id) { - case 1: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list450 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list450.size); - long _elem451; - for (int _i452 = 0; _i452 < _list450.size; ++_i452) - { - _elem451 = iprot.readI64(); - struct.records.add(_elem451); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 1: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -120921,22 +120475,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecords_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter453 : struct.records) - { - oprot.writeI64(_iter453); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -120958,20 +120503,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecords_args } - private static class clearRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearRecords_argsTupleScheme getScheme() { - return new clearRecords_argsTupleScheme(); + public clearRecord_argsTupleScheme getScheme() { + return new clearRecord_argsTupleScheme(); } } - private static class clearRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(0); } if (struct.isSetCreds()) { @@ -120984,14 +120529,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearRecords_args s optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter454 : struct.records) - { - oprot.writeI64(_iter454); - } - } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -121005,21 +120544,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearRecords_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list455 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list455.size); - long _elem456; - for (int _i457 = 0; _i457 < _list455.size; ++_i457) - { - _elem456 = iprot.readI64(); - struct.records.add(_elem456); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -121043,15 +120573,15 @@ private static S scheme(org.apache. } } - public static class clearRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearRecords_result"); + public static class clearRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearRecord_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required @@ -121136,13 +120666,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearRecord_result.class, metaDataMap); } - public clearRecords_result() { + public clearRecord_result() { } - public clearRecords_result( + public clearRecord_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -121156,7 +120686,7 @@ public clearRecords_result( /** * Performs a deep copy on other. */ - public clearRecords_result(clearRecords_result other) { + public clearRecord_result(clearRecord_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -121169,8 +120699,8 @@ public clearRecords_result(clearRecords_result other) { } @Override - public clearRecords_result deepCopy() { - return new clearRecords_result(this); + public clearRecord_result deepCopy() { + return new clearRecord_result(this); } @Override @@ -121185,7 +120715,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public clearRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public clearRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -121210,7 +120740,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public clearRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public clearRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -121235,7 +120765,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public clearRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public clearRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -121322,12 +120852,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearRecords_result) - return this.equals((clearRecords_result)that); + if (that instanceof clearRecord_result) + return this.equals((clearRecord_result)that); return false; } - public boolean equals(clearRecords_result that) { + public boolean equals(clearRecord_result that) { if (that == null) return false; if (this == that) @@ -121383,7 +120913,7 @@ public int hashCode() { } @Override - public int compareTo(clearRecords_result other) { + public int compareTo(clearRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -121440,7 +120970,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearRecord_result("); boolean first = true; sb.append("ex:"); @@ -121491,17 +121021,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearRecords_resultStandardScheme getScheme() { - return new clearRecords_resultStandardScheme(); + public clearRecord_resultStandardScheme getScheme() { + return new clearRecord_resultStandardScheme(); } } - private static class clearRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -121550,7 +121080,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecords_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -121575,17 +121105,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecords_resul } - private static class clearRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearRecords_resultTupleScheme getScheme() { - return new clearRecords_resultTupleScheme(); + public clearRecord_resultTupleScheme getScheme() { + return new clearRecord_resultTupleScheme(); } } - private static class clearRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -121610,7 +121140,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearRecords_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { @@ -121636,31 +121166,28 @@ private static S scheme(org.apache. } } - public static class clearKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeyRecord_args"); + public static class clearRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearRecords_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeyRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeyRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearRecords_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - RECORD((short)2, "record"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + RECORDS((short)1, "records"), + CREDS((short)2, "creds"), + TRANSACTION((short)3, "transaction"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -121676,15 +121203,13 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // RECORD - return RECORD; - case 3: // CREDS + case 1: // RECORDS + return RECORDS; + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -121729,15 +121254,12 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -121745,23 +121267,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeyRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearRecords_args.class, metaDataMap); } - public clearKeyRecord_args() { + public clearRecords_args() { } - public clearKeyRecord_args( - java.lang.String key, - long record, + public clearRecords_args( + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.record = record; - setRecordIsSet(true); + this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -121770,12 +121289,11 @@ public clearKeyRecord_args( /** * Performs a deep copy on other. */ - public clearKeyRecord_args(clearKeyRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; + public clearRecords_args(clearRecords_args other) { + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; } - this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -121788,66 +121306,57 @@ public clearKeyRecord_args(clearKeyRecord_args other) { } @Override - public clearKeyRecord_args deepCopy() { - return new clearKeyRecord_args(this); + public clearRecords_args deepCopy() { + return new clearRecords_args(this); } @Override public void clear() { - this.key = null; - setRecordIsSet(false); - this.record = 0; + this.records = null; this.creds = null; this.transaction = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; - } - - public clearKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; - return this; - } - - public void unsetKey() { - this.key = null; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); } - public void setKeyIsSet(boolean value) { - if (!value) { - this.key = null; + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); } + this.records.add(elem); } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; } - public clearKeyRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public clearRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } @org.apache.thrift.annotation.Nullable @@ -121855,7 +121364,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public clearKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public clearRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -121880,7 +121389,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public clearKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public clearRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -121905,7 +121414,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public clearKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public clearRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -121928,19 +121437,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: - if (value == null) { - unsetKey(); - } else { - setKey((java.lang.String)value); - } - break; - - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; @@ -121975,11 +121476,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); - - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); case CREDS: return getCreds(); @@ -122002,10 +121500,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case RECORD: - return isSetRecord(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -122018,32 +121514,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearKeyRecord_args) - return this.equals((clearKeyRecord_args)that); + if (that instanceof clearRecords_args) + return this.equals((clearRecords_args)that); return false; } - public boolean equals(clearKeyRecord_args that) { + public boolean equals(clearRecords_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) - return false; - if (!this.key.equals(that.key)) - return false; - } - - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } @@ -122081,11 +121568,9 @@ public boolean equals(clearKeyRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -122103,29 +121588,19 @@ public int hashCode() { } @Override - public int compareTo(clearKeyRecord_args other) { + public int compareTo(clearRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -122181,21 +121656,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeyRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearRecords_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("records:"); + if (this.records == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.records); } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -122244,25 +121715,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 clearKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeyRecord_argsStandardScheme getScheme() { - return new clearKeyRecord_argsStandardScheme(); + public clearRecords_argsStandardScheme getScheme() { + return new clearRecords_argsStandardScheme(); } } - private static class clearKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -122272,23 +121741,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_args break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list450 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list450.size); + long _elem451; + for (int _i452 = 0; _i452 < _list450.size; ++_i452) + { + _elem451 = iprot.readI64(); + struct.records.add(_elem451); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -122297,7 +121768,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -122306,7 +121777,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -122326,18 +121797,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter453 : struct.records) + { + oprot.writeI64(_iter453); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -122359,40 +121834,40 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecord_arg } - private static class clearKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeyRecord_argsTupleScheme getScheme() { - return new clearKeyRecord_argsTupleScheme(); + public clearRecords_argsTupleScheme getScheme() { + return new clearRecords_argsTupleScheme(); } } - private static class clearKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetRecord()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + optionals.set(3); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + oprot.writeBitSet(optionals, 4); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter454 : struct.records) + { + oprot.writeI64(_iter454); + } + } } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -122406,28 +121881,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list455 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list455.size); + long _elem456; + for (int _i457 = 0; _i457 < _list455.size; ++_i457) + { + _elem456 = iprot.readI64(); + struct.records.add(_elem456); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -122439,15 +121919,15 @@ private static S scheme(org.apache. } } - public static class clearKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeyRecord_result"); + public static class clearRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearRecords_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeyRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeyRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required @@ -122532,13 +122012,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeyRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearRecords_result.class, metaDataMap); } - public clearKeyRecord_result() { + public clearRecords_result() { } - public clearKeyRecord_result( + public clearRecords_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -122552,7 +122032,7 @@ public clearKeyRecord_result( /** * Performs a deep copy on other. */ - public clearKeyRecord_result(clearKeyRecord_result other) { + public clearRecords_result(clearRecords_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -122565,8 +122045,8 @@ public clearKeyRecord_result(clearKeyRecord_result other) { } @Override - public clearKeyRecord_result deepCopy() { - return new clearKeyRecord_result(this); + public clearRecords_result deepCopy() { + return new clearRecords_result(this); } @Override @@ -122581,7 +122061,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public clearKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public clearRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -122606,7 +122086,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public clearKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public clearRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -122631,7 +122111,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public clearKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public clearRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -122718,12 +122198,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearKeyRecord_result) - return this.equals((clearKeyRecord_result)that); + if (that instanceof clearRecords_result) + return this.equals((clearRecords_result)that); return false; } - public boolean equals(clearKeyRecord_result that) { + public boolean equals(clearRecords_result that) { if (that == null) return false; if (this == that) @@ -122779,7 +122259,7 @@ public int hashCode() { } @Override - public int compareTo(clearKeyRecord_result other) { + public int compareTo(clearRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -122836,7 +122316,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeyRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearRecords_result("); boolean first = true; sb.append("ex:"); @@ -122887,17 +122367,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeyRecord_resultStandardScheme getScheme() { - return new clearKeyRecord_resultStandardScheme(); + public clearRecords_resultStandardScheme getScheme() { + return new clearRecords_resultStandardScheme(); } } - private static class clearKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -122946,7 +122426,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -122971,17 +122451,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecord_res } - private static class clearKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeyRecord_resultTupleScheme getScheme() { - return new clearKeyRecord_resultTupleScheme(); + public clearRecords_resultTupleScheme getScheme() { + return new clearRecords_resultTupleScheme(); } } - private static class clearKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -123006,7 +122486,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_resu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { @@ -123032,19 +122512,19 @@ private static S scheme(org.apache. } } - public static class clearKeysRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeysRecord_args"); + public static class clearKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeyRecord_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeysRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeysRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeyRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeyRecord_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required @@ -123052,7 +122532,7 @@ public static class clearKeysRecord_args implements org.apache.thrift.TBase metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -123142,21 +122621,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeysRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeyRecord_args.class, metaDataMap); } - public clearKeysRecord_args() { + public clearKeyRecord_args() { } - public clearKeysRecord_args( - java.util.List keys, + public clearKeyRecord_args( + java.lang.String key, long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; + this.key = key; this.record = record; setRecordIsSet(true); this.creds = creds; @@ -123167,11 +122646,10 @@ public clearKeysRecord_args( /** * Performs a deep copy on other. */ - public clearKeysRecord_args(clearKeysRecord_args other) { + public clearKeyRecord_args(clearKeyRecord_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + if (other.isSetKey()) { + this.key = other.key; } this.record = other.record; if (other.isSetCreds()) { @@ -123186,13 +122664,13 @@ public clearKeysRecord_args(clearKeysRecord_args other) { } @Override - public clearKeysRecord_args deepCopy() { - return new clearKeysRecord_args(this); + public clearKeyRecord_args deepCopy() { + return new clearKeyRecord_args(this); } @Override public void clear() { - this.keys = null; + this.key = null; setRecordIsSet(false); this.record = 0; this.creds = null; @@ -123200,44 +122678,28 @@ public void clear() { this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public clearKeysRecord_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public clearKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; + this.key = null; } } @@ -123245,7 +122707,7 @@ public long getRecord() { return this.record; } - public clearKeysRecord_args setRecord(long record) { + public clearKeyRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -123269,7 +122731,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public clearKeysRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public clearKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -123294,7 +122756,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public clearKeysRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public clearKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -123319,7 +122781,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public clearKeysRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public clearKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -123342,11 +122804,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; @@ -123389,8 +122851,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); case RECORD: return getRecord(); @@ -123416,8 +122878,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); + case KEY: + return isSetKey(); case RECORD: return isSetRecord(); case CREDS: @@ -123432,23 +122894,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearKeysRecord_args) - return this.equals((clearKeysRecord_args)that); + if (that instanceof clearKeyRecord_args) + return this.equals((clearKeyRecord_args)that); return false; } - public boolean equals(clearKeysRecord_args that) { + public boolean equals(clearKeyRecord_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } @@ -123495,9 +122957,9 @@ public boolean equals(clearKeysRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); @@ -123517,19 +122979,19 @@ public int hashCode() { } @Override - public int compareTo(clearKeysRecord_args other) { + public int compareTo(clearKeyRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } @@ -123595,14 +123057,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeysRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeyRecord_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); @@ -123666,17 +123128,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearKeysRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeysRecord_argsStandardScheme getScheme() { - return new clearKeysRecord_argsStandardScheme(); + public clearKeyRecord_argsStandardScheme getScheme() { + return new clearKeyRecord_argsStandardScheme(); } } - private static class clearKeysRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -123686,20 +123148,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecord_arg break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list458 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list458.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem459; - for (int _i460 = 0; _i460 < _list458.size; ++_i460) - { - _elem459 = iprot.readString(); - struct.keys.add(_elem459); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -123750,20 +123202,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecord_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter461 : struct.keys) - { - oprot.writeString(_iter461); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } oprot.writeFieldBegin(RECORD_FIELD_DESC); @@ -123790,20 +123235,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecord_ar } - private static class clearKeysRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeysRecord_argsTupleScheme getScheme() { - return new clearKeysRecord_argsTupleScheme(); + public clearKeyRecord_argsTupleScheme getScheme() { + return new clearKeyRecord_argsTupleScheme(); } } - private static class clearKeysRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } if (struct.isSetRecord()) { @@ -123819,14 +123264,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_arg optionals.set(4); } oprot.writeBitSet(optionals, 5); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter462 : struct.keys) - { - oprot.writeString(_iter462); - } - } + if (struct.isSetKey()) { + oprot.writeString(struct.key); } if (struct.isSetRecord()) { oprot.writeI64(struct.record); @@ -123843,21 +123282,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list463 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list463.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem464; - for (int _i465 = 0; _i465 < _list463.size; ++_i465) - { - _elem464 = iprot.readString(); - struct.keys.add(_elem464); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { struct.record = iprot.readI64(); @@ -123885,15 +123315,15 @@ private static S scheme(org.apache. } } - public static class clearKeysRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeysRecord_result"); + public static class clearKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeyRecord_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeysRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeysRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeyRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeyRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required @@ -123978,13 +123408,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeysRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeyRecord_result.class, metaDataMap); } - public clearKeysRecord_result() { + public clearKeyRecord_result() { } - public clearKeysRecord_result( + public clearKeyRecord_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -123998,7 +123428,7 @@ public clearKeysRecord_result( /** * Performs a deep copy on other. */ - public clearKeysRecord_result(clearKeysRecord_result other) { + public clearKeyRecord_result(clearKeyRecord_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -124011,8 +123441,8 @@ public clearKeysRecord_result(clearKeysRecord_result other) { } @Override - public clearKeysRecord_result deepCopy() { - return new clearKeysRecord_result(this); + public clearKeyRecord_result deepCopy() { + return new clearKeyRecord_result(this); } @Override @@ -124027,7 +123457,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public clearKeysRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public clearKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -124052,7 +123482,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public clearKeysRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public clearKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -124077,7 +123507,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public clearKeysRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public clearKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -124164,12 +123594,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearKeysRecord_result) - return this.equals((clearKeysRecord_result)that); + if (that instanceof clearKeyRecord_result) + return this.equals((clearKeyRecord_result)that); return false; } - public boolean equals(clearKeysRecord_result that) { + public boolean equals(clearKeyRecord_result that) { if (that == null) return false; if (this == that) @@ -124225,7 +123655,7 @@ public int hashCode() { } @Override - public int compareTo(clearKeysRecord_result other) { + public int compareTo(clearKeyRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -124282,7 +123712,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeysRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeyRecord_result("); boolean first = true; sb.append("ex:"); @@ -124333,17 +123763,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearKeysRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeysRecord_resultStandardScheme getScheme() { - return new clearKeysRecord_resultStandardScheme(); + public clearKeyRecord_resultStandardScheme getScheme() { + return new clearKeyRecord_resultStandardScheme(); } } - private static class clearKeysRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -124392,7 +123822,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecord_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -124417,17 +123847,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecord_re } - private static class clearKeysRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeysRecord_resultTupleScheme getScheme() { - return new clearKeysRecord_resultTupleScheme(); + public clearKeyRecord_resultTupleScheme getScheme() { + return new clearKeyRecord_resultTupleScheme(); } } - private static class clearKeysRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -124452,7 +123882,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_res } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { @@ -124478,28 +123908,28 @@ private static S scheme(org.apache. } } - public static class clearKeyRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeyRecords_args"); + public static class clearKeysRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeysRecord_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeyRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeyRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeysRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeysRecord_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - RECORDS((short)2, "records"), + KEYS((short)1, "keys"), + RECORD((short)2, "record"), CREDS((short)3, "creds"), TRANSACTION((short)4, "transaction"), ENVIRONMENT((short)5, "environment"); @@ -124518,10 +123948,10 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // RECORDS - return RECORDS; + case 1: // KEYS + return KEYS; + case 2: // RECORD + return RECORD; case 3: // CREDS return CREDS; case 4: // TRANSACTION @@ -124571,14 +124001,16 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -124586,22 +124018,23 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeyRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeysRecord_args.class, metaDataMap); } - public clearKeyRecords_args() { + public clearKeysRecord_args() { } - public clearKeyRecords_args( - java.lang.String key, - java.util.List records, + public clearKeysRecord_args( + java.util.List keys, + long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.records = records; + this.keys = keys; + this.record = record; + setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -124610,14 +124043,13 @@ public clearKeyRecords_args( /** * Performs a deep copy on other. */ - public clearKeyRecords_args(clearKeyRecords_args other) { - if (other.isSetKey()) { - this.key = other.key; - } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + public clearKeysRecord_args(clearKeysRecord_args other) { + __isset_bitfield = other.__isset_bitfield; + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; } + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -124630,83 +124062,82 @@ public clearKeyRecords_args(clearKeyRecords_args other) { } @Override - public clearKeyRecords_args deepCopy() { - return new clearKeyRecords_args(this); + public clearKeysRecord_args deepCopy() { + return new clearKeysRecord_args(this); } @Override public void clear() { - this.key = null; - this.records = null; + this.keys = null; + setRecordIsSet(false); + this.record = 0; this.creds = null; this.transaction = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); } - public clearKeyRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; - return this; + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public void unsetKey() { - this.key = null; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; } - public void setKeyIsSet(boolean value) { - if (!value) { - this.key = null; - } + public clearKeysRecord_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; + return this; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + public void unsetKeys() { + this.keys = null; } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); + public void setKeysIsSet(boolean value) { + if (!value) { + this.keys = null; } - this.records.add(elem); } - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public long getRecord() { + return this.record; } - public clearKeyRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public clearKeysRecord_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetRecords() { - this.records = null; + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -124714,7 +124145,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public clearKeyRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public clearKeysRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -124739,7 +124170,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public clearKeyRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public clearKeysRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -124764,7 +124195,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public clearKeyRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public clearKeysRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -124787,19 +124218,19 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case KEYS: if (value == null) { - unsetKey(); + unsetKeys(); } else { - setKey((java.lang.String)value); + setKeys((java.util.List)value); } break; - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); } break; @@ -124834,11 +124265,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case KEYS: + return getKeys(); - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); case CREDS: return getCreds(); @@ -124861,10 +124292,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case RECORDS: - return isSetRecords(); + case KEYS: + return isSetKeys(); + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -124877,32 +124308,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearKeyRecords_args) - return this.equals((clearKeyRecords_args)that); + if (that instanceof clearKeysRecord_args) + return this.equals((clearKeysRecord_args)that); return false; } - public boolean equals(clearKeyRecords_args that) { + public boolean equals(clearKeysRecord_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.key.equals(that.key)) + if (!this.keys.equals(that.keys)) return false; } - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) return false; } @@ -124940,13 +124371,11 @@ public boolean equals(clearKeyRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -124964,29 +124393,29 @@ public int hashCode() { } @Override - public int compareTo(clearKeyRecords_args other) { + public int compareTo(clearKeysRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } @@ -125042,23 +124471,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeyRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeysRecord_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } + sb.append("record:"); + sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -125109,23 +124534,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 clearKeyRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeysRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeyRecords_argsStandardScheme getScheme() { - return new clearKeyRecords_argsStandardScheme(); + public clearKeysRecord_argsStandardScheme getScheme() { + return new clearKeysRecord_argsStandardScheme(); } } - private static class clearKeyRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearKeysRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -125135,28 +124562,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecords_arg break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // RECORDS + case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list466 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list466.size); - long _elem467; - for (int _i468 = 0; _i468 < _list466.size; ++_i468) + org.apache.thrift.protocol.TList _list458 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list458.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem459; + for (int _i460 = 0; _i460 < _list458.size; ++_i460) { - _elem467 = iprot.readI64(); - struct.records.add(_elem467); + _elem459 = iprot.readString(); + struct.keys.add(_elem459); } iprot.readListEnd(); } - struct.setRecordsIsSet(true); + struct.setKeysIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -125199,27 +124626,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecords_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); - oprot.writeFieldEnd(); - } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter469 : struct.records) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter461 : struct.keys) { - oprot.writeI64(_iter469); + oprot.writeString(_iter461); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -125241,23 +124666,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecords_ar } - private static class clearKeyRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeysRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeyRecords_argsTupleScheme getScheme() { - return new clearKeyRecords_argsTupleScheme(); + public clearKeysRecord_argsTupleScheme getScheme() { + return new clearKeysRecord_argsTupleScheme(); } } - private static class clearKeyRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearKeysRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -125270,18 +124695,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_arg optionals.set(4); } oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); - } - if (struct.isSetRecords()) { + if (struct.isSetKeys()) { { - oprot.writeI32(struct.records.size()); - for (long _iter470 : struct.records) + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter462 : struct.keys) { - oprot.writeI64(_iter470); + oprot.writeString(_iter462); } } } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -125294,25 +124719,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } - if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list471 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list471.size); - long _elem472; - for (int _i473 = 0; _i473 < _list471.size; ++_i473) + org.apache.thrift.protocol.TList _list463 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list463.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem464; + for (int _i465 = 0; _i465 < _list463.size; ++_i465) { - _elem472 = iprot.readI64(); - struct.records.add(_elem472); + _elem464 = iprot.readString(); + struct.keys.add(_elem464); } } - struct.setRecordsIsSet(true); + struct.setKeysIsSet(true); + } + if (incoming.get(1)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -125336,15 +124761,15 @@ private static S scheme(org.apache. } } - public static class clearKeyRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeyRecords_result"); + public static class clearKeysRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeysRecord_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeyRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeyRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeysRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeysRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required @@ -125429,13 +124854,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeyRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeysRecord_result.class, metaDataMap); } - public clearKeyRecords_result() { + public clearKeysRecord_result() { } - public clearKeyRecords_result( + public clearKeysRecord_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -125449,7 +124874,7 @@ public clearKeyRecords_result( /** * Performs a deep copy on other. */ - public clearKeyRecords_result(clearKeyRecords_result other) { + public clearKeysRecord_result(clearKeysRecord_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -125462,8 +124887,8 @@ public clearKeyRecords_result(clearKeyRecords_result other) { } @Override - public clearKeyRecords_result deepCopy() { - return new clearKeyRecords_result(this); + public clearKeysRecord_result deepCopy() { + return new clearKeysRecord_result(this); } @Override @@ -125478,7 +124903,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public clearKeyRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public clearKeysRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -125503,7 +124928,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public clearKeyRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public clearKeysRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -125528,7 +124953,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public clearKeyRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public clearKeysRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -125615,12 +125040,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearKeyRecords_result) - return this.equals((clearKeyRecords_result)that); + if (that instanceof clearKeysRecord_result) + return this.equals((clearKeysRecord_result)that); return false; } - public boolean equals(clearKeyRecords_result that) { + public boolean equals(clearKeysRecord_result that) { if (that == null) return false; if (this == that) @@ -125676,7 +125101,7 @@ public int hashCode() { } @Override - public int compareTo(clearKeyRecords_result other) { + public int compareTo(clearKeysRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -125733,7 +125158,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeyRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeysRecord_result("); boolean first = true; sb.append("ex:"); @@ -125784,17 +125209,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearKeyRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeysRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeyRecords_resultStandardScheme getScheme() { - return new clearKeyRecords_resultStandardScheme(); + public clearKeysRecord_resultStandardScheme getScheme() { + return new clearKeysRecord_resultStandardScheme(); } } - private static class clearKeyRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearKeysRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -125843,7 +125268,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecords_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -125868,17 +125293,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecords_re } - private static class clearKeyRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeysRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeyRecords_resultTupleScheme getScheme() { - return new clearKeyRecords_resultTupleScheme(); + public clearKeysRecord_resultTupleScheme getScheme() { + return new clearKeysRecord_resultTupleScheme(); } } - private static class clearKeyRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearKeysRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -125903,7 +125328,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_res } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { @@ -125929,19 +125354,19 @@ private static S scheme(org.apache. } } - public static class clearKeysRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeysRecords_args"); + public static class clearKeyRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeyRecords_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeysRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeysRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeyRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeyRecords_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required @@ -125949,7 +125374,7 @@ public static class clearKeysRecords_args implements org.apache.thrift.TBase metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); @@ -126038,21 +125462,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeysRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeyRecords_args.class, metaDataMap); } - public clearKeysRecords_args() { + public clearKeyRecords_args() { } - public clearKeysRecords_args( - java.util.List keys, + public clearKeyRecords_args( + java.lang.String key, java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; + this.key = key; this.records = records; this.creds = creds; this.transaction = transaction; @@ -126062,10 +125486,9 @@ public clearKeysRecords_args( /** * Performs a deep copy on other. */ - public clearKeysRecords_args(clearKeysRecords_args other) { - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + public clearKeyRecords_args(clearKeyRecords_args other) { + if (other.isSetKey()) { + this.key = other.key; } if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); @@ -126083,57 +125506,41 @@ public clearKeysRecords_args(clearKeysRecords_args other) { } @Override - public clearKeysRecords_args deepCopy() { - return new clearKeysRecords_args(this); + public clearKeyRecords_args deepCopy() { + return new clearKeyRecords_args(this); } @Override public void clear() { - this.keys = null; + this.key = null; this.records = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public clearKeysRecords_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public clearKeyRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; + this.key = null; } } @@ -126158,7 +125565,7 @@ public java.util.List getRecords() { return this.records; } - public clearKeysRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public clearKeyRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -126183,7 +125590,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public clearKeysRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public clearKeyRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -126208,7 +125615,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public clearKeysRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public clearKeyRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -126233,7 +125640,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public clearKeysRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public clearKeyRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -126256,11 +125663,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; @@ -126303,8 +125710,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); case RECORDS: return getRecords(); @@ -126330,8 +125737,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); + case KEY: + return isSetKey(); case RECORDS: return isSetRecords(); case CREDS: @@ -126346,23 +125753,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearKeysRecords_args) - return this.equals((clearKeysRecords_args)that); + if (that instanceof clearKeyRecords_args) + return this.equals((clearKeyRecords_args)that); return false; } - public boolean equals(clearKeysRecords_args that) { + public boolean equals(clearKeyRecords_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } @@ -126409,9 +125816,9 @@ public boolean equals(clearKeysRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); if (isSetRecords()) @@ -126433,19 +125840,19 @@ public int hashCode() { } @Override - public int compareTo(clearKeysRecords_args other) { + public int compareTo(clearKeyRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } @@ -126511,14 +125918,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeysRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeyRecords_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); @@ -126584,17 +125991,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearKeysRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeyRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeysRecords_argsStandardScheme getScheme() { - return new clearKeysRecords_argsStandardScheme(); + public clearKeyRecords_argsStandardScheme getScheme() { + return new clearKeyRecords_argsStandardScheme(); } } - private static class clearKeysRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearKeyRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -126604,20 +126011,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecords_ar break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list474 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list474.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem475; - for (int _i476 = 0; _i476 < _list474.size; ++_i476) - { - _elem475 = iprot.readString(); - struct.keys.add(_elem475); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -126625,13 +126022,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecords_ar case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list477 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list477.size); - long _elem478; - for (int _i479 = 0; _i479 < _list477.size; ++_i479) + org.apache.thrift.protocol.TList _list466 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list466.size); + long _elem467; + for (int _i468 = 0; _i468 < _list466.size; ++_i468) { - _elem478 = iprot.readI64(); - struct.records.add(_elem478); + _elem467 = iprot.readI64(); + struct.records.add(_elem467); } iprot.readListEnd(); } @@ -126678,29 +126075,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecords_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter480 : struct.keys) - { - oprot.writeString(_iter480); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } if (struct.records != null) { oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter481 : struct.records) + for (long _iter469 : struct.records) { - oprot.writeI64(_iter481); + oprot.writeI64(_iter469); } oprot.writeListEnd(); } @@ -126727,20 +126117,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecords_a } - private static class clearKeysRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeyRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeysRecords_argsTupleScheme getScheme() { - return new clearKeysRecords_argsTupleScheme(); + public clearKeyRecords_argsTupleScheme getScheme() { + return new clearKeyRecords_argsTupleScheme(); } } - private static class clearKeysRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearKeyRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } if (struct.isSetRecords()) { @@ -126756,21 +126146,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_ar optionals.set(4); } oprot.writeBitSet(optionals, 5); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter482 : struct.keys) - { - oprot.writeString(_iter482); - } - } + if (struct.isSetKey()) { + oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter483 : struct.records) + for (long _iter470 : struct.records) { - oprot.writeI64(_iter483); + oprot.writeI64(_iter470); } } } @@ -126786,31 +126170,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list484 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list484.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem485; - for (int _i486 = 0; _i486 < _list484.size; ++_i486) - { - _elem485 = iprot.readString(); - struct.keys.add(_elem485); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list487 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list487.size); - long _elem488; - for (int _i489 = 0; _i489 < _list487.size; ++_i489) + org.apache.thrift.protocol.TList _list471 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list471.size); + long _elem472; + for (int _i473 = 0; _i473 < _list471.size; ++_i473) { - _elem488 = iprot.readI64(); - struct.records.add(_elem488); + _elem472 = iprot.readI64(); + struct.records.add(_elem472); } } struct.setRecordsIsSet(true); @@ -126837,15 +126212,15 @@ private static S scheme(org.apache. } } - public static class clearKeysRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeysRecords_result"); + public static class clearKeyRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeyRecords_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeysRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeysRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeyRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeyRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required @@ -126930,13 +126305,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeysRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeyRecords_result.class, metaDataMap); } - public clearKeysRecords_result() { + public clearKeyRecords_result() { } - public clearKeysRecords_result( + public clearKeyRecords_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -126950,7 +126325,7 @@ public clearKeysRecords_result( /** * Performs a deep copy on other. */ - public clearKeysRecords_result(clearKeysRecords_result other) { + public clearKeyRecords_result(clearKeyRecords_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -126963,8 +126338,8 @@ public clearKeysRecords_result(clearKeysRecords_result other) { } @Override - public clearKeysRecords_result deepCopy() { - return new clearKeysRecords_result(this); + public clearKeyRecords_result deepCopy() { + return new clearKeyRecords_result(this); } @Override @@ -126979,7 +126354,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public clearKeysRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public clearKeyRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -127004,7 +126379,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public clearKeysRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public clearKeyRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -127029,7 +126404,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public clearKeysRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public clearKeyRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -127116,12 +126491,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof clearKeysRecords_result) - return this.equals((clearKeysRecords_result)that); + if (that instanceof clearKeyRecords_result) + return this.equals((clearKeyRecords_result)that); return false; } - public boolean equals(clearKeysRecords_result that) { + public boolean equals(clearKeyRecords_result that) { if (that == null) return false; if (this == that) @@ -127177,7 +126552,7 @@ public int hashCode() { } @Override - public int compareTo(clearKeysRecords_result other) { + public int compareTo(clearKeyRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -127234,7 +126609,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeysRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeyRecords_result("); boolean first = true; sb.append("ex:"); @@ -127285,17 +126660,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class clearKeysRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeyRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeysRecords_resultStandardScheme getScheme() { - return new clearKeysRecords_resultStandardScheme(); + public clearKeyRecords_resultStandardScheme getScheme() { + return new clearKeyRecords_resultStandardScheme(); } } - private static class clearKeysRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearKeyRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -127344,7 +126719,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecords_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeyRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -127369,17 +126744,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecords_r } - private static class clearKeysRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeyRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public clearKeysRecords_resultTupleScheme getScheme() { - return new clearKeysRecords_resultTupleScheme(); + public clearKeyRecords_resultTupleScheme getScheme() { + return new clearKeyRecords_resultTupleScheme(); } } - private static class clearKeysRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearKeyRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -127404,7 +126779,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { @@ -127430,25 +126805,31 @@ private static S scheme(org.apache. } } - public static class commit_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("commit_args"); + public static class clearKeysRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeysRecords_args"); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new commit_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new commit_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeysRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeysRecords_argsTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CREDS((short)1, "creds"), - TRANSACTION((short)2, "transaction"), - ENVIRONMENT((short)3, "environment"); + KEYS((short)1, "keys"), + RECORDS((short)2, "records"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -127464,11 +126845,15 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CREDS + case 1: // KEYS + return KEYS; + case 2: // RECORDS + return RECORDS; + case 3: // CREDS return CREDS; - case 2: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 3: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -127516,6 +126901,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -127523,18 +126914,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(commit_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeysRecords_args.class, metaDataMap); } - public commit_args() { + public clearKeysRecords_args() { } - public commit_args( + public clearKeysRecords_args( + java.util.List keys, + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); + this.keys = keys; + this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -127543,7 +126938,15 @@ public commit_args( /** * Performs a deep copy on other. */ - public commit_args(commit_args other) { + public clearKeysRecords_args(clearKeysRecords_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; + } + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -127556,23 +126959,107 @@ public commit_args(commit_args other) { } @Override - public commit_args deepCopy() { - return new commit_args(this); + public clearKeysRecords_args deepCopy() { + return new clearKeysRecords_args(this); } @Override public void clear() { + this.keys = null; + this.records = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); + } + + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public clearKeysRecords_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; + return this; + } + + public void unsetKeys() { + this.keys = null; + } + + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; + } + + public void setKeysIsSet(boolean value) { + if (!value) { + this.keys = null; + } + } + + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public clearKeysRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; + return this; + } + + public void unsetRecords() { + this.records = null; + } + + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; + } + + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public commit_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public clearKeysRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -127597,7 +127084,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public commit_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public clearKeysRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -127622,7 +127109,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public commit_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public clearKeysRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -127645,6 +127132,22 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case KEYS: + if (value == null) { + unsetKeys(); + } else { + setKeys((java.util.List)value); + } + break; + + case RECORDS: + if (value == null) { + unsetRecords(); + } else { + setRecords((java.util.List)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -127676,6 +127179,12 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case KEYS: + return getKeys(); + + case RECORDS: + return getRecords(); + case CREDS: return getCreds(); @@ -127697,6 +127206,10 @@ public boolean isSet(_Fields field) { } switch (field) { + case KEYS: + return isSetKeys(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -127709,17 +127222,35 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof commit_args) - return this.equals((commit_args)that); + if (that instanceof clearKeysRecords_args) + return this.equals((clearKeysRecords_args)that); return false; } - public boolean equals(commit_args that) { + public boolean equals(clearKeysRecords_args that) { if (that == null) return false; if (this == that) return true; + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) + return false; + if (!this.keys.equals(that.keys)) + return false; + } + + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) + return false; + if (!this.records.equals(that.records)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -127754,6 +127285,14 @@ public boolean equals(commit_args that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); + + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -127770,13 +127309,33 @@ public int hashCode() { } @Override - public int compareTo(commit_args other) { + public int compareTo(clearKeysRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -127828,9 +127387,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("commit_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeysRecords_args("); boolean first = true; + sb.append("keys:"); + if (this.keys == null) { + sb.append("null"); + } else { + sb.append(this.keys); + } + first = false; + if (!first) sb.append(", "); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -127885,17 +127460,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class commit_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeysRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public commit_argsStandardScheme getScheme() { - return new commit_argsStandardScheme(); + public clearKeysRecords_argsStandardScheme getScheme() { + return new clearKeysRecords_argsStandardScheme(); } } - private static class commit_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearKeysRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, commit_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -127905,7 +127480,43 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, commit_args struct) break; } switch (schemeField.id) { - case 1: // CREDS + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list474 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list474.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem475; + for (int _i476 = 0; _i476 < _list474.size; ++_i476) + { + _elem475 = iprot.readString(); + struct.keys.add(_elem475); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list477 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list477.size); + long _elem478; + for (int _i479 = 0; _i479 < _list477.size; ++_i479) + { + _elem478 = iprot.readI64(); + struct.records.add(_elem478); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -127914,7 +127525,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, commit_args struct) org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -127923,7 +127534,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, commit_args struct) org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -127943,10 +127554,34 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, commit_args struct) } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, commit_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter480 : struct.keys) + { + oprot.writeString(_iter480); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter481 : struct.records) + { + oprot.writeI64(_iter481); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -127968,29 +127603,53 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, commit_args struct } - private static class commit_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeysRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public commit_argsTupleScheme getScheme() { - return new commit_argsTupleScheme(); + public clearKeysRecords_argsTupleScheme getScheme() { + return new clearKeysRecords_argsTupleScheme(); } } - private static class commit_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearKeysRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, commit_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCreds()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetTransaction()) { + if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetTransaction()) { + optionals.set(3); + } + if (struct.isSetEnvironment()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter482 : struct.keys) + { + oprot.writeString(_iter482); + } + } + } + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter483 : struct.records) + { + oprot.writeI64(_iter483); + } + } + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -128003,20 +127662,46 @@ public void write(org.apache.thrift.protocol.TProtocol prot, commit_args struct) } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, commit_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { + { + org.apache.thrift.protocol.TList _list484 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list484.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem485; + for (int _i486 = 0; _i486 < _list484.size; ++_i486) + { + _elem485 = iprot.readString(); + struct.keys.add(_elem485); + } + } + struct.setKeysIsSet(true); + } + if (incoming.get(1)) { + { + org.apache.thrift.protocol.TList _list487 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list487.size); + long _elem488; + for (int _i489 = 0; _i489 < _list487.size; ++_i489) + { + _elem488 = iprot.readI64(); + struct.records.add(_elem488); + } + } + struct.setRecordsIsSet(true); + } + if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -128028,25 +127713,22 @@ private static S scheme(org.apache. } } - public static class commit_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("commit_result"); + public static class clearKeysRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("clearKeysRecords_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new commit_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new commit_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new clearKeysRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new clearKeysRecords_resultTupleSchemeFactory(); - public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), EX3((short)3, "ex3"); @@ -128065,8 +127747,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // EX return EX; case 2: // EX2 @@ -128116,13 +127796,9 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - 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.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -128130,21 +127806,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(commit_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(clearKeysRecords_result.class, metaDataMap); } - public commit_result() { + public clearKeysRecords_result() { } - public commit_result( - boolean success, + public clearKeysRecords_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) { this(); - this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -128153,9 +127826,7 @@ public commit_result( /** * Performs a deep copy on other. */ - public commit_result(commit_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public clearKeysRecords_result(clearKeysRecords_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -128168,48 +127839,23 @@ public commit_result(commit_result other) { } @Override - public commit_result deepCopy() { - return new commit_result(this); + public clearKeysRecords_result deepCopy() { + return new clearKeysRecords_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; this.ex = null; this.ex2 = null; this.ex3 = null; } - public boolean isSuccess() { - return this.success; - } - - public commit_result setSuccess(boolean success) { - this.success = success; - setSuccessIsSet(true); - return this; - } - - public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public commit_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public clearKeysRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -128234,7 +127880,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public commit_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public clearKeysRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -128259,7 +127905,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public commit_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public clearKeysRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -128282,14 +127928,6 @@ public void setEx3IsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.lang.Boolean)value); - } - break; - case EX: if (value == null) { unsetEx(); @@ -128321,9 +127959,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return isSuccess(); - case EX: return getEx(); @@ -128345,8 +127980,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case EX: return isSetEx(); case EX2: @@ -128359,26 +127992,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof commit_result) - return this.equals((commit_result)that); + if (that instanceof clearKeysRecords_result) + return this.equals((clearKeysRecords_result)that); return false; } - public boolean equals(commit_result that) { + public boolean equals(clearKeysRecords_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (this.success != that.success) - return false; - } - boolean this_present_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -128413,8 +128037,6 @@ public boolean equals(commit_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); - hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -128431,23 +128053,13 @@ public int hashCode() { } @Override - public int compareTo(commit_result other) { + public int compareTo(clearKeysRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -128498,13 +128110,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("commit_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("clearKeysRecords_result("); boolean first = true; - sb.append("success:"); - sb.append(this.success); - first = false; - if (!first) sb.append(", "); sb.append("ex:"); if (this.ex == null) { sb.append("null"); @@ -128547,25 +128155,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 commit_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeysRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public commit_resultStandardScheme getScheme() { - return new commit_resultStandardScheme(); + public clearKeysRecords_resultStandardScheme getScheme() { + return new clearKeysRecords_resultStandardScheme(); } } - private static class commit_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class clearKeysRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, commit_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, clearKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -128575,14 +128181,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, commit_result struc break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -128622,15 +128220,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, commit_result struc } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, commit_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, clearKeysRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); - oprot.writeFieldEnd(); - } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -128652,35 +128245,29 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, commit_result stru } - private static class commit_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class clearKeysRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public commit_resultTupleScheme getScheme() { - return new commit_resultTupleScheme(); + public clearKeysRecords_resultTupleScheme getScheme() { + return new clearKeysRecords_resultTupleScheme(); } } - private static class commit_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class clearKeysRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, commit_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } if (struct.isSetEx()) { - optionals.set(1); + optionals.set(0); } if (struct.isSetEx2()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetEx3()) { - optionals.set(3); - } - oprot.writeBitSet(optionals, 4); - if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + optionals.set(2); } + oprot.writeBitSet(optionals, 3); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -128693,24 +128280,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, commit_result struc } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, commit_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, clearKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { - struct.success = iprot.readBool(); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(1)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); @@ -128723,15 +128306,15 @@ private static S scheme(org.apache. } } - public static class describe_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describe_args"); + public static class commit_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("commit_args"); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describe_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describe_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new commit_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new commit_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required @@ -128816,13 +128399,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describe_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(commit_args.class, metaDataMap); } - public describe_args() { + public commit_args() { } - public describe_args( + public commit_args( com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -128836,7 +128419,7 @@ public describe_args( /** * Performs a deep copy on other. */ - public describe_args(describe_args other) { + public commit_args(commit_args other) { if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -128849,8 +128432,8 @@ public describe_args(describe_args other) { } @Override - public describe_args deepCopy() { - return new describe_args(this); + public commit_args deepCopy() { + return new commit_args(this); } @Override @@ -128865,7 +128448,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describe_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public commit_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -128890,7 +128473,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describe_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public commit_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -128915,7 +128498,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describe_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public commit_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -129002,12 +128585,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describe_args) - return this.equals((describe_args)that); + if (that instanceof commit_args) + return this.equals((commit_args)that); return false; } - public boolean equals(describe_args that) { + public boolean equals(commit_args that) { if (that == null) return false; if (this == that) @@ -129063,7 +128646,7 @@ public int hashCode() { } @Override - public int compareTo(describe_args other) { + public int compareTo(commit_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -129121,7 +128704,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describe_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("commit_args("); boolean first = true; sb.append("creds:"); @@ -129178,17 +128761,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describe_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class commit_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describe_argsStandardScheme getScheme() { - return new describe_argsStandardScheme(); + public commit_argsStandardScheme getScheme() { + return new commit_argsStandardScheme(); } } - private static class describe_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class commit_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describe_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, commit_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -129236,7 +128819,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describe_args struc } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describe_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, commit_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -129261,17 +128844,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describe_args stru } - private static class describe_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class commit_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describe_argsTupleScheme getScheme() { - return new describe_argsTupleScheme(); + public commit_argsTupleScheme getScheme() { + return new commit_argsTupleScheme(); } } - private static class describe_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class commit_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describe_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, commit_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCreds()) { @@ -129296,7 +128879,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describe_args struc } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describe_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, commit_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { @@ -129321,18 +128904,18 @@ private static S scheme(org.apache. } } - public static class describe_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describe_result"); + public static class commit_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("commit_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describe_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describe_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new commit_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new commit_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Set success; // required + public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -129409,12 +128992,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -129422,20 +129006,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describe_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(commit_result.class, metaDataMap); } - public describe_result() { + public commit_result() { } - public describe_result( - java.util.Set success, + public commit_result( + boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; + setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -129444,11 +129029,9 @@ public describe_result( /** * Performs a deep copy on other. */ - public describe_result(describe_result other) { - if (other.isSetSuccess()) { - java.util.Set __this__success = new java.util.LinkedHashSet(other.success); - this.success = __this__success; - } + public commit_result(commit_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -129461,57 +129044,40 @@ public describe_result(describe_result other) { } @Override - public describe_result deepCopy() { - return new describe_result(this); + public commit_result deepCopy() { + return new commit_result(this); } @Override public void clear() { - this.success = null; + setSuccessIsSet(false); + this.success = false; this.ex = null; this.ex2 = null; this.ex3 = null; } - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getSuccessIterator() { - return (this.success == null) ? null : this.success.iterator(); - } - - public void addToSuccess(java.lang.String elem) { - if (this.success == null) { - this.success = new java.util.LinkedHashSet(); - } - this.success.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Set getSuccess() { + public boolean isSuccess() { return this.success; } - public describe_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public commit_result setSuccess(boolean success) { this.success = success; + setSuccessIsSet(true); return this; } public void unsetSuccess() { - this.success = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return this.success != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); } public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -129519,7 +129085,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describe_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public commit_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -129544,7 +129110,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describe_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public commit_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -129569,7 +129135,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public describe_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public commit_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -129596,7 +129162,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Set)value); + setSuccess((java.lang.Boolean)value); } break; @@ -129632,7 +129198,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return getSuccess(); + return isSuccess(); case EX: return getEx(); @@ -129669,23 +129235,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describe_result) - return this.equals((describe_result)that); + if (that instanceof commit_result) + return this.equals((commit_result)that); return false; } - public boolean equals(describe_result that) { + public boolean equals(commit_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true && this.isSetSuccess(); - boolean that_present_success = true && that.isSetSuccess(); + boolean this_present_success = true; + boolean that_present_success = true; if (this_present_success || that_present_success) { if (!(this_present_success && that_present_success)) return false; - if (!this.success.equals(that.success)) + if (this.success != that.success) return false; } @@ -129723,9 +129289,7 @@ public boolean equals(describe_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -129743,7 +129307,7 @@ public int hashCode() { } @Override - public int compareTo(describe_result other) { + public int compareTo(commit_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -129810,15 +129374,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describe_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("commit_result("); boolean first = true; sb.append("success:"); - if (this.success == null) { - sb.append("null"); - } else { - sb.append(this.success); - } + sb.append(this.success); first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -129863,23 +129423,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 describe_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class commit_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describe_resultStandardScheme getScheme() { - return new describe_resultStandardScheme(); + public commit_resultStandardScheme getScheme() { + return new commit_resultStandardScheme(); } } - private static class describe_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class commit_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describe_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, commit_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -129890,18 +129452,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describe_result str } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.SET) { - { - org.apache.thrift.protocol.TSet _set490 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set490.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem491; - for (int _i492 = 0; _i492 < _set490.size; ++_i492) - { - _elem491 = iprot.readString(); - struct.success.add(_elem491); - } - iprot.readSetEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -129946,20 +129498,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describe_result str } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describe_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, commit_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { + if (struct.isSetSuccess()) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.lang.String _iter493 : struct.success) - { - oprot.writeString(_iter493); - } - oprot.writeSetEnd(); - } + oprot.writeBool(struct.success); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -129983,17 +129528,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describe_result st } - private static class describe_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class commit_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describe_resultTupleScheme getScheme() { - return new describe_resultTupleScheme(); + public commit_resultTupleScheme getScheme() { + return new commit_resultTupleScheme(); } } - private static class describe_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class commit_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describe_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, commit_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -130010,13 +129555,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describe_result str } oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.lang.String _iter494 : struct.success) - { - oprot.writeString(_iter494); - } - } + oprot.writeBool(struct.success); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -130030,20 +129569,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describe_result str } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describe_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, commit_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TSet _set495 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.LinkedHashSet(2*_set495.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem496; - for (int _i497 = 0; _i497 < _set495.size; ++_i497) - { - _elem496 = iprot.readString(); - struct.success.add(_elem496); - } - } + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -130069,28 +129599,25 @@ private static S scheme(org.apache. } } - public static class describeTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeTime_args"); + public static class describe_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describe_args"); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describe_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describe_argsTupleSchemeFactory(); - public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - TIMESTAMP((short)1, "timestamp"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + CREDS((short)1, "creds"), + TRANSACTION((short)2, "transaction"), + ENVIRONMENT((short)3, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -130106,13 +129633,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // TIMESTAMP - return TIMESTAMP; - case 2: // CREDS + case 1: // CREDS return CREDS; - case 3: // TRANSACTION + case 2: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 3: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -130157,13 +129682,9 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -130171,21 +129692,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describe_args.class, metaDataMap); } - public describeTime_args() { + public describe_args() { } - public describeTime_args( - long timestamp, + public describe_args( com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -130194,9 +129712,7 @@ public describeTime_args( /** * Performs a deep copy on other. */ - public describeTime_args(describeTime_args other) { - __isset_bitfield = other.__isset_bitfield; - this.timestamp = other.timestamp; + public describe_args(describe_args other) { if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -130209,48 +129725,23 @@ public describeTime_args(describeTime_args other) { } @Override - public describeTime_args deepCopy() { - return new describeTime_args(this); + public describe_args deepCopy() { + return new describe_args(this); } @Override public void clear() { - setTimestampIsSet(false); - this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; } - public long getTimestamp() { - return this.timestamp; - } - - public describeTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describeTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describe_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -130275,7 +129766,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describeTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describe_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -130300,7 +129791,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describeTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describe_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -130323,14 +129814,6 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -130362,9 +129845,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case TIMESTAMP: - return getTimestamp(); - case CREDS: return getCreds(); @@ -130386,8 +129866,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case TIMESTAMP: - return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -130400,26 +129878,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeTime_args) - return this.equals((describeTime_args)that); + if (that instanceof describe_args) + return this.equals((describe_args)that); return false; } - public boolean equals(describeTime_args that) { + public boolean equals(describe_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -130454,8 +129923,6 @@ public boolean equals(describeTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -130472,23 +129939,13 @@ public int hashCode() { } @Override - public int compareTo(describeTime_args other) { + public int compareTo(describe_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -130540,13 +129997,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describe_args("); boolean first = true; - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -130595,25 +130048,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 describeTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describe_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeTime_argsStandardScheme getScheme() { - return new describeTime_argsStandardScheme(); + public describe_argsStandardScheme getScheme() { + return new describe_argsStandardScheme(); } } - private static class describeTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describe_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describe_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -130623,15 +130074,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_args s break; } switch (schemeField.id) { - case 1: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // CREDS + case 1: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -130640,7 +130083,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 2: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -130649,7 +130092,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 3: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -130669,13 +130112,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describe_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -130697,35 +130137,29 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeTime_args } - private static class describeTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describe_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeTime_argsTupleScheme getScheme() { - return new describeTime_argsTupleScheme(); + public describe_argsTupleScheme getScheme() { + return new describe_argsTupleScheme(); } } - private static class describeTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describe_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describe_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetTimestamp()) { - optionals.set(0); - } if (struct.isSetCreds()) { - optionals.set(1); + optionals.set(0); } if (struct.isSetTransaction()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetEnvironment()) { - optionals.set(3); - } - oprot.writeBitSet(optionals, 4); - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + optionals.set(2); } + oprot.writeBitSet(optionals, 3); if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -130738,24 +130172,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeTime_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describe_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(1)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -130767,16 +130197,16 @@ private static S scheme(org.apache. } } - public static class describeTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeTime_result"); + public static class describe_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describe_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describe_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describe_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -130868,13 +130298,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describe_result.class, metaDataMap); } - public describeTime_result() { + public describe_result() { } - public describeTime_result( + public describe_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -130890,7 +130320,7 @@ public describeTime_result( /** * Performs a deep copy on other. */ - public describeTime_result(describeTime_result other) { + public describe_result(describe_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -130907,8 +130337,8 @@ public describeTime_result(describeTime_result other) { } @Override - public describeTime_result deepCopy() { - return new describeTime_result(this); + public describe_result deepCopy() { + return new describe_result(this); } @Override @@ -130940,7 +130370,7 @@ public java.util.Set getSuccess() { return this.success; } - public describeTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public describe_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -130965,7 +130395,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describeTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describe_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -130990,7 +130420,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describeTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describe_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -131015,7 +130445,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public describeTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public describe_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -131115,12 +130545,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeTime_result) - return this.equals((describeTime_result)that); + if (that instanceof describe_result) + return this.equals((describe_result)that); return false; } - public boolean equals(describeTime_result that) { + public boolean equals(describe_result that) { if (that == null) return false; if (this == that) @@ -131189,7 +130619,7 @@ public int hashCode() { } @Override - public int compareTo(describeTime_result other) { + public int compareTo(describe_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -131256,7 +130686,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describe_result("); boolean first = true; sb.append("success:"); @@ -131315,17 +130745,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describe_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeTime_resultStandardScheme getScheme() { - return new describeTime_resultStandardScheme(); + public describe_resultStandardScheme getScheme() { + return new describe_resultStandardScheme(); } } - private static class describeTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describe_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describe_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -131338,13 +130768,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set498 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set498.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem499; - for (int _i500 = 0; _i500 < _set498.size; ++_i500) + org.apache.thrift.protocol.TSet _set490 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set490.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem491; + for (int _i492 = 0; _i492 < _set490.size; ++_i492) { - _elem499 = iprot.readString(); - struct.success.add(_elem499); + _elem491 = iprot.readString(); + struct.success.add(_elem491); } iprot.readSetEnd(); } @@ -131392,7 +130822,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describe_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -131400,9 +130830,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeTime_resul oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.lang.String _iter501 : struct.success) + for (java.lang.String _iter493 : struct.success) { - oprot.writeString(_iter501); + oprot.writeString(_iter493); } oprot.writeSetEnd(); } @@ -131429,17 +130859,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeTime_resul } - private static class describeTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describe_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeTime_resultTupleScheme getScheme() { - return new describeTime_resultTupleScheme(); + public describe_resultTupleScheme getScheme() { + return new describe_resultTupleScheme(); } } - private static class describeTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describe_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describe_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -131458,9 +130888,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeTime_result if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.lang.String _iter502 : struct.success) + for (java.lang.String _iter494 : struct.success) { - oprot.writeString(_iter502); + oprot.writeString(_iter494); } } } @@ -131476,18 +130906,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeTime_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describe_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set503 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.LinkedHashSet(2*_set503.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem504; - for (int _i505 = 0; _i505 < _set503.size; ++_i505) + org.apache.thrift.protocol.TSet _set495 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.LinkedHashSet(2*_set495.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem496; + for (int _i497 = 0; _i497 < _set495.size; ++_i497) { - _elem504 = iprot.readString(); - struct.success.add(_elem504); + _elem496 = iprot.readString(); + struct.success.add(_elem496); } } struct.setSuccessIsSet(true); @@ -131515,18 +130945,18 @@ private static S scheme(org.apache. } } - public static class describeTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeTimestr_args"); + public static class describeTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeTime_args"); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeTime_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -131603,11 +131033,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -131615,20 +131047,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeTime_args.class, metaDataMap); } - public describeTimestr_args() { + public describeTime_args() { } - public describeTimestr_args( - java.lang.String timestamp, + public describeTime_args( + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -131637,10 +131070,9 @@ public describeTimestr_args( /** * Performs a deep copy on other. */ - public describeTimestr_args(describeTimestr_args other) { - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + public describeTime_args(describeTime_args other) { + __isset_bitfield = other.__isset_bitfield; + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -131653,41 +131085,40 @@ public describeTimestr_args(describeTimestr_args other) { } @Override - public describeTimestr_args deepCopy() { - return new describeTimestr_args(this); + public describeTime_args deepCopy() { + return new describeTime_args(this); } @Override public void clear() { - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public describeTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public describeTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -131695,7 +131126,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describeTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describeTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -131720,7 +131151,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describeTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describeTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -131745,7 +131176,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describeTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describeTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -131772,7 +131203,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -131845,23 +131276,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeTimestr_args) - return this.equals((describeTimestr_args)that); + if (that instanceof describeTime_args) + return this.equals((describeTime_args)that); return false; } - public boolean equals(describeTimestr_args that) { + public boolean equals(describeTime_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -131899,9 +131330,7 @@ public boolean equals(describeTimestr_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -131919,7 +131348,7 @@ public int hashCode() { } @Override - public int compareTo(describeTimestr_args other) { + public int compareTo(describeTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -131987,15 +131416,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeTime_args("); boolean first = true; sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -132046,23 +131471,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 describeTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeTimestr_argsStandardScheme getScheme() { - return new describeTimestr_argsStandardScheme(); + public describeTime_argsStandardScheme getScheme() { + return new describeTime_argsStandardScheme(); } } - private static class describeTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -132073,8 +131500,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTimestr_arg } switch (schemeField.id) { case 1: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -132118,15 +131545,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTimestr_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -132148,17 +131573,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeTimestr_ar } - private static class describeTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeTimestr_argsTupleScheme getScheme() { - return new describeTimestr_argsTupleScheme(); + public describeTime_argsTupleScheme getScheme() { + return new describeTime_argsTupleScheme(); } } - private static class describeTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetTimestamp()) { @@ -132175,7 +131600,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeTimestr_arg } oprot.writeBitSet(optionals, 4); if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -132189,11 +131614,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeTimestr_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(1)) { @@ -132218,16 +131643,16 @@ private static S scheme(org.apache. } } - public static class describeTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeTimestr_result"); + public static class describeTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -132319,13 +131744,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeTime_result.class, metaDataMap); } - public describeTimestr_result() { + public describeTime_result() { } - public describeTimestr_result( + public describeTime_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -132341,7 +131766,7 @@ public describeTimestr_result( /** * Performs a deep copy on other. */ - public describeTimestr_result(describeTimestr_result other) { + public describeTime_result(describeTime_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -132358,8 +131783,8 @@ public describeTimestr_result(describeTimestr_result other) { } @Override - public describeTimestr_result deepCopy() { - return new describeTimestr_result(this); + public describeTime_result deepCopy() { + return new describeTime_result(this); } @Override @@ -132391,7 +131816,7 @@ public java.util.Set getSuccess() { return this.success; } - public describeTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public describeTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -132416,7 +131841,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describeTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describeTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -132441,7 +131866,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describeTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describeTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -132466,7 +131891,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public describeTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public describeTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -132566,12 +131991,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeTimestr_result) - return this.equals((describeTimestr_result)that); + if (that instanceof describeTime_result) + return this.equals((describeTime_result)that); return false; } - public boolean equals(describeTimestr_result that) { + public boolean equals(describeTime_result that) { if (that == null) return false; if (this == that) @@ -132640,7 +132065,7 @@ public int hashCode() { } @Override - public int compareTo(describeTimestr_result other) { + public int compareTo(describeTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -132707,7 +132132,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeTime_result("); boolean first = true; sb.append("success:"); @@ -132766,17 +132191,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeTimestr_resultStandardScheme getScheme() { - return new describeTimestr_resultStandardScheme(); + public describeTime_resultStandardScheme getScheme() { + return new describeTime_resultStandardScheme(); } } - private static class describeTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -132789,13 +132214,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTimestr_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set506 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set506.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem507; - for (int _i508 = 0; _i508 < _set506.size; ++_i508) + org.apache.thrift.protocol.TSet _set498 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set498.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem499; + for (int _i500 = 0; _i500 < _set498.size; ++_i500) { - _elem507 = iprot.readString(); - struct.success.add(_elem507); + _elem499 = iprot.readString(); + struct.success.add(_elem499); } iprot.readSetEnd(); } @@ -132843,7 +132268,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeTimestr_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -132851,9 +132276,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeTimestr_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.lang.String _iter509 : struct.success) + for (java.lang.String _iter501 : struct.success) { - oprot.writeString(_iter509); + oprot.writeString(_iter501); } oprot.writeSetEnd(); } @@ -132880,17 +132305,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeTimestr_re } - private static class describeTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeTimestr_resultTupleScheme getScheme() { - return new describeTimestr_resultTupleScheme(); + public describeTime_resultTupleScheme getScheme() { + return new describeTime_resultTupleScheme(); } } - private static class describeTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -132909,9 +132334,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeTimestr_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.lang.String _iter510 : struct.success) + for (java.lang.String _iter502 : struct.success) { - oprot.writeString(_iter510); + oprot.writeString(_iter502); } } } @@ -132927,18 +132352,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeTimestr_res } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set511 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.LinkedHashSet(2*_set511.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem512; - for (int _i513 = 0; _i513 < _set511.size; ++_i513) + org.apache.thrift.protocol.TSet _set503 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.LinkedHashSet(2*_set503.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem504; + for (int _i505 = 0; _i505 < _set503.size; ++_i505) { - _elem512 = iprot.readString(); - struct.success.add(_elem512); + _elem504 = iprot.readString(); + struct.success.add(_elem504); } } struct.setSuccessIsSet(true); @@ -132966,25 +132391,25 @@ private static S scheme(org.apache. } } - public static class describeRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecord_args"); + public static class describeTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeTimestr_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeTimestr_argsTupleSchemeFactory(); - public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), + TIMESTAMP((short)1, "timestamp"), CREDS((short)2, "creds"), TRANSACTION((short)3, "transaction"), ENVIRONMENT((short)4, "environment"); @@ -133003,8 +132428,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; + case 1: // TIMESTAMP + return TIMESTAMP; case 2: // CREDS return CREDS; case 3: // TRANSACTION @@ -133054,13 +132479,11 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -133068,21 +132491,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeTimestr_args.class, metaDataMap); } - public describeRecord_args() { + public describeTimestr_args() { } - public describeRecord_args( - long record, + public describeTimestr_args( + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -133091,9 +132513,10 @@ public describeRecord_args( /** * Performs a deep copy on other. */ - public describeRecord_args(describeRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - this.record = other.record; + public describeTimestr_args(describeTimestr_args other) { + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -133106,40 +132529,41 @@ public describeRecord_args(describeRecord_args other) { } @Override - public describeRecord_args deepCopy() { - return new describeRecord_args(this); + public describeTimestr_args deepCopy() { + return new describeTimestr_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; } - public describeRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public describeTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -133147,7 +132571,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describeRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describeTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -133172,7 +132596,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describeRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describeTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -133197,7 +132621,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describeRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describeTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -133220,11 +132644,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: + case TIMESTAMP: if (value == null) { - unsetRecord(); + unsetTimestamp(); } else { - setRecord((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -133259,8 +132683,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -133283,8 +132707,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -133297,23 +132721,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecord_args) - return this.equals((describeRecord_args)that); + if (that instanceof describeTimestr_args) + return this.equals((describeTimestr_args)that); return false; } - public boolean equals(describeRecord_args that) { + public boolean equals(describeTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.record != that.record) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -133351,7 +132775,9 @@ public boolean equals(describeRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -133369,19 +132795,19 @@ public int hashCode() { } @Override - public int compareTo(describeRecord_args other) { + public int compareTo(describeTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -133437,11 +132863,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeTimestr_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -133492,25 +132922,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 describeRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecord_argsStandardScheme getScheme() { - return new describeRecord_argsStandardScheme(); + public describeTimestr_argsStandardScheme getScheme() { + return new describeTimestr_argsStandardScheme(); } } - private static class describeRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -133520,10 +132948,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecord_args break; } switch (schemeField.id) { - case 1: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 1: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -133566,13 +132994,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecord_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -133594,20 +133024,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecord_arg } - private static class describeRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecord_argsTupleScheme getScheme() { - return new describeRecord_argsTupleScheme(); + public describeTimestr_argsTupleScheme getScheme() { + return new describeTimestr_argsTupleScheme(); } } - private static class describeRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetTimestamp()) { optionals.set(0); } if (struct.isSetCreds()) { @@ -133620,8 +133050,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecord_args optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -133635,12 +133065,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecord_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -133664,16 +133094,16 @@ private static S scheme(org.apache. } } - public static class describeRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecord_result"); + public static class describeTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -133765,13 +133195,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeTimestr_result.class, metaDataMap); } - public describeRecord_result() { + public describeTimestr_result() { } - public describeRecord_result( + public describeTimestr_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -133787,7 +133217,7 @@ public describeRecord_result( /** * Performs a deep copy on other. */ - public describeRecord_result(describeRecord_result other) { + public describeTimestr_result(describeTimestr_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -133804,8 +133234,8 @@ public describeRecord_result(describeRecord_result other) { } @Override - public describeRecord_result deepCopy() { - return new describeRecord_result(this); + public describeTimestr_result deepCopy() { + return new describeTimestr_result(this); } @Override @@ -133837,7 +133267,7 @@ public java.util.Set getSuccess() { return this.success; } - public describeRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public describeTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -133862,7 +133292,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describeRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describeTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -133887,7 +133317,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describeRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describeTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -133912,7 +133342,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public describeRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public describeTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -134012,12 +133442,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecord_result) - return this.equals((describeRecord_result)that); + if (that instanceof describeTimestr_result) + return this.equals((describeTimestr_result)that); return false; } - public boolean equals(describeRecord_result that) { + public boolean equals(describeTimestr_result that) { if (that == null) return false; if (this == that) @@ -134086,7 +133516,7 @@ public int hashCode() { } @Override - public int compareTo(describeRecord_result other) { + public int compareTo(describeTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -134153,7 +133583,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeTimestr_result("); boolean first = true; sb.append("success:"); @@ -134212,17 +133642,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecord_resultStandardScheme getScheme() { - return new describeRecord_resultStandardScheme(); + public describeTimestr_resultStandardScheme getScheme() { + return new describeTimestr_resultStandardScheme(); } } - private static class describeRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -134235,13 +133665,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecord_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set514 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set514.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem515; - for (int _i516 = 0; _i516 < _set514.size; ++_i516) + org.apache.thrift.protocol.TSet _set506 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set506.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem507; + for (int _i508 = 0; _i508 < _set506.size; ++_i508) { - _elem515 = iprot.readString(); - struct.success.add(_elem515); + _elem507 = iprot.readString(); + struct.success.add(_elem507); } iprot.readSetEnd(); } @@ -134289,7 +133719,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecord_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -134297,9 +133727,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecord_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.lang.String _iter517 : struct.success) + for (java.lang.String _iter509 : struct.success) { - oprot.writeString(_iter517); + oprot.writeString(_iter509); } oprot.writeSetEnd(); } @@ -134326,17 +133756,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecord_res } - private static class describeRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecord_resultTupleScheme getScheme() { - return new describeRecord_resultTupleScheme(); + public describeTimestr_resultTupleScheme getScheme() { + return new describeTimestr_resultTupleScheme(); } } - private static class describeRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -134355,9 +133785,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecord_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.lang.String _iter518 : struct.success) + for (java.lang.String _iter510 : struct.success) { - oprot.writeString(_iter518); + oprot.writeString(_iter510); } } } @@ -134373,18 +133803,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecord_resu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set519 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.LinkedHashSet(2*_set519.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem520; - for (int _i521 = 0; _i521 < _set519.size; ++_i521) + org.apache.thrift.protocol.TSet _set511 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.LinkedHashSet(2*_set511.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem512; + for (int _i513 = 0; _i513 < _set511.size; ++_i513) { - _elem520 = iprot.readString(); - struct.success.add(_elem520); + _elem512 = iprot.readString(); + struct.success.add(_elem512); } } struct.setSuccessIsSet(true); @@ -134412,20 +133842,18 @@ private static S scheme(org.apache. } } - public static class describeRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordTime_args"); + public static class describeRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecord_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecord_argsTupleSchemeFactory(); public long record; // required - public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -134433,10 +133861,9 @@ public static class describeRecordTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -134454,13 +133881,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // RECORD return RECORD; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -134506,15 +133931,12 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -134522,15 +133944,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecord_args.class, metaDataMap); } - public describeRecordTime_args() { + public describeRecord_args() { } - public describeRecordTime_args( + public describeRecord_args( long record, - long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -134538,8 +133959,6 @@ public describeRecordTime_args( this(); this.record = record; setRecordIsSet(true); - this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -134548,10 +133967,9 @@ public describeRecordTime_args( /** * Performs a deep copy on other. */ - public describeRecordTime_args(describeRecordTime_args other) { + public describeRecord_args(describeRecord_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -134564,16 +133982,14 @@ public describeRecordTime_args(describeRecordTime_args other) { } @Override - public describeRecordTime_args deepCopy() { - return new describeRecordTime_args(this); + public describeRecord_args deepCopy() { + return new describeRecord_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -134583,7 +133999,7 @@ public long getRecord() { return this.record; } - public describeRecordTime_args setRecord(long record) { + public describeRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -134602,35 +134018,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getTimestamp() { - return this.timestamp; - } - - public describeRecordTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describeRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describeRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -134655,7 +134048,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describeRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describeRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -134680,7 +134073,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describeRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describeRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -134711,14 +134104,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -134753,9 +134138,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case TIMESTAMP: - return getTimestamp(); - case CREDS: return getCreds(); @@ -134779,8 +134161,6 @@ public boolean isSet(_Fields field) { switch (field) { case RECORD: return isSetRecord(); - case TIMESTAMP: - return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -134793,12 +134173,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecordTime_args) - return this.equals((describeRecordTime_args)that); + if (that instanceof describeRecord_args) + return this.equals((describeRecord_args)that); return false; } - public boolean equals(describeRecordTime_args that) { + public boolean equals(describeRecord_args that) { if (that == null) return false; if (this == that) @@ -134813,15 +134193,6 @@ public boolean equals(describeRecordTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -134858,8 +134229,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -134876,7 +134245,7 @@ public int hashCode() { } @Override - public int compareTo(describeRecordTime_args other) { + public int compareTo(describeRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -134893,16 +134262,6 @@ public int compareTo(describeRecordTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -134954,17 +134313,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecord_args("); boolean first = true; sb.append("record:"); sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -135021,17 +134376,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordTime_argsStandardScheme getScheme() { - return new describeRecordTime_argsStandardScheme(); + public describeRecord_argsStandardScheme getScheme() { + return new describeRecord_argsStandardScheme(); } } - private static class describeRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -135049,15 +134404,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -135066,7 +134413,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -135075,7 +134422,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -135095,16 +134442,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -135126,41 +134470,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime } - private static class describeRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordTime_argsTupleScheme getScheme() { - return new describeRecordTime_argsTupleScheme(); + public describeRecord_argsTupleScheme getScheme() { + return new describeRecord_argsTupleScheme(); } } - private static class describeRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { optionals.set(0); } - if (struct.isSetTimestamp()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -135173,28 +134511,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -135206,16 +134540,16 @@ private static S scheme(org.apache. } } - public static class describeRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordTime_result"); + public static class describeRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecord_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -135307,13 +134641,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecord_result.class, metaDataMap); } - public describeRecordTime_result() { + public describeRecord_result() { } - public describeRecordTime_result( + public describeRecord_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -135329,7 +134663,7 @@ public describeRecordTime_result( /** * Performs a deep copy on other. */ - public describeRecordTime_result(describeRecordTime_result other) { + public describeRecord_result(describeRecord_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -135346,8 +134680,8 @@ public describeRecordTime_result(describeRecordTime_result other) { } @Override - public describeRecordTime_result deepCopy() { - return new describeRecordTime_result(this); + public describeRecord_result deepCopy() { + return new describeRecord_result(this); } @Override @@ -135379,7 +134713,7 @@ public java.util.Set getSuccess() { return this.success; } - public describeRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public describeRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -135404,7 +134738,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describeRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describeRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -135429,7 +134763,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describeRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describeRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -135454,7 +134788,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public describeRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public describeRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -135554,12 +134888,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecordTime_result) - return this.equals((describeRecordTime_result)that); + if (that instanceof describeRecord_result) + return this.equals((describeRecord_result)that); return false; } - public boolean equals(describeRecordTime_result that) { + public boolean equals(describeRecord_result that) { if (that == null) return false; if (this == that) @@ -135628,7 +134962,7 @@ public int hashCode() { } @Override - public int compareTo(describeRecordTime_result other) { + public int compareTo(describeRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -135695,7 +135029,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecord_result("); boolean first = true; sb.append("success:"); @@ -135754,17 +135088,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordTime_resultStandardScheme getScheme() { - return new describeRecordTime_resultStandardScheme(); + public describeRecord_resultStandardScheme getScheme() { + return new describeRecord_resultStandardScheme(); } } - private static class describeRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -135777,13 +135111,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set522 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set522.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem523; - for (int _i524 = 0; _i524 < _set522.size; ++_i524) + org.apache.thrift.protocol.TSet _set514 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set514.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem515; + for (int _i516 = 0; _i516 < _set514.size; ++_i516) { - _elem523 = iprot.readString(); - struct.success.add(_elem523); + _elem515 = iprot.readString(); + struct.success.add(_elem515); } iprot.readSetEnd(); } @@ -135831,7 +135165,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -135839,9 +135173,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.lang.String _iter525 : struct.success) + for (java.lang.String _iter517 : struct.success) { - oprot.writeString(_iter525); + oprot.writeString(_iter517); } oprot.writeSetEnd(); } @@ -135868,17 +135202,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime } - private static class describeRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordTime_resultTupleScheme getScheme() { - return new describeRecordTime_resultTupleScheme(); + public describeRecord_resultTupleScheme getScheme() { + return new describeRecord_resultTupleScheme(); } } - private static class describeRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -135897,9 +135231,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.lang.String _iter526 : struct.success) + for (java.lang.String _iter518 : struct.success) { - oprot.writeString(_iter526); + oprot.writeString(_iter518); } } } @@ -135915,18 +135249,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set527 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.LinkedHashSet(2*_set527.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem528; - for (int _i529 = 0; _i529 < _set527.size; ++_i529) + org.apache.thrift.protocol.TSet _set519 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.LinkedHashSet(2*_set519.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem520; + for (int _i521 = 0; _i521 < _set519.size; ++_i521) { - _elem528 = iprot.readString(); - struct.success.add(_elem528); + _elem520 = iprot.readString(); + struct.success.add(_elem520); } } struct.setSuccessIsSet(true); @@ -135954,20 +135288,20 @@ private static S scheme(org.apache. } } - public static class describeRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordTimestr_args"); + public static class describeRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordTime_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordTime_argsTupleSchemeFactory(); public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -136048,6 +135382,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -136055,7 +135390,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -136063,15 +135398,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordTime_args.class, metaDataMap); } - public describeRecordTimestr_args() { + public describeRecordTime_args() { } - public describeRecordTimestr_args( + public describeRecordTime_args( long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -136080,6 +135415,7 @@ public describeRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -136088,12 +135424,10 @@ public describeRecordTimestr_args( /** * Performs a deep copy on other. */ - public describeRecordTimestr_args(describeRecordTimestr_args other) { + public describeRecordTime_args(describeRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -136106,15 +135440,16 @@ public describeRecordTimestr_args(describeRecordTimestr_args other) { } @Override - public describeRecordTimestr_args deepCopy() { - return new describeRecordTimestr_args(this); + public describeRecordTime_args deepCopy() { + return new describeRecordTime_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -136124,7 +135459,7 @@ public long getRecord() { return this.record; } - public describeRecordTimestr_args setRecord(long record) { + public describeRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -136143,29 +135478,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public describeRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public describeRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -136173,7 +135506,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describeRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describeRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -136198,7 +135531,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describeRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describeRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -136223,7 +135556,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describeRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describeRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -136258,7 +135591,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -136336,12 +135669,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecordTimestr_args) - return this.equals((describeRecordTimestr_args)that); + if (that instanceof describeRecordTime_args) + return this.equals((describeRecordTime_args)that); return false; } - public boolean equals(describeRecordTimestr_args that) { + public boolean equals(describeRecordTime_args that) { if (that == null) return false; if (this == that) @@ -136356,12 +135689,12 @@ public boolean equals(describeRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -136401,9 +135734,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -136421,7 +135752,7 @@ public int hashCode() { } @Override - public int compareTo(describeRecordTimestr_args other) { + public int compareTo(describeRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -136499,7 +135830,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordTime_args("); boolean first = true; sb.append("record:"); @@ -136507,11 +135838,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -136570,17 +135897,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordTimestr_argsStandardScheme getScheme() { - return new describeRecordTimestr_argsStandardScheme(); + public describeRecordTime_argsStandardScheme getScheme() { + return new describeRecordTime_argsStandardScheme(); } } - private static class describeRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -136599,8 +135926,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimes } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -136644,18 +135971,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -136677,17 +136002,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime } - private static class describeRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordTimestr_argsTupleScheme getScheme() { - return new describeRecordTimestr_argsTupleScheme(); + public describeRecordTime_argsTupleScheme getScheme() { + return new describeRecordTime_argsTupleScheme(); } } - private static class describeRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { @@ -136710,7 +136035,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTimes oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -136724,7 +136049,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -136732,7 +136057,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTimest struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -136757,31 +136082,28 @@ private static S scheme(org.apache. } } - public static class describeRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordTimestr_result"); + public static class describeRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -136805,8 +136127,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -136861,35 +136181,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordTime_result.class, metaDataMap); } - public describeRecordTimestr_result() { + public describeRecordTime_result() { } - public describeRecordTimestr_result( + public describeRecordTime_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public describeRecordTimestr_result(describeRecordTimestr_result other) { + public describeRecordTime_result(describeRecordTime_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -136901,16 +136217,13 @@ public describeRecordTimestr_result(describeRecordTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public describeRecordTimestr_result deepCopy() { - return new describeRecordTimestr_result(this); + public describeRecordTime_result deepCopy() { + return new describeRecordTime_result(this); } @Override @@ -136919,7 +136232,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -136943,7 +136255,7 @@ public java.util.Set getSuccess() { return this.success; } - public describeRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public describeRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -136968,7 +136280,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describeRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describeRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -136993,7 +136305,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describeRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describeRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -137014,11 +136326,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public describeRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public describeRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -137038,31 +136350,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public describeRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -137094,15 +136381,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -137125,9 +136404,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -137148,20 +136424,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecordTimestr_result) - return this.equals((describeRecordTimestr_result)that); + if (that instanceof describeRecordTime_result) + return this.equals((describeRecordTime_result)that); return false; } - public boolean equals(describeRecordTimestr_result that) { + public boolean equals(describeRecordTime_result that) { if (that == null) return false; if (this == that) @@ -137203,15 +136477,6 @@ public boolean equals(describeRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -137235,15 +136500,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(describeRecordTimestr_result other) { + public int compareTo(describeRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -137290,16 +136551,6 @@ public int compareTo(describeRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -137320,7 +136571,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordTime_result("); boolean first = true; sb.append("success:"); @@ -137354,14 +136605,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -137387,17 +136630,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordTimestr_resultStandardScheme getScheme() { - return new describeRecordTimestr_resultStandardScheme(); + public describeRecordTime_resultStandardScheme getScheme() { + return new describeRecordTime_resultStandardScheme(); } } - private static class describeRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -137410,13 +136653,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set530 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set530.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem531; - for (int _i532 = 0; _i532 < _set530.size; ++_i532) + org.apache.thrift.protocol.TSet _set522 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set522.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem523; + for (int _i524 = 0; _i524 < _set522.size; ++_i524) { - _elem531 = iprot.readString(); - struct.success.add(_elem531); + _elem523 = iprot.readString(); + struct.success.add(_elem523); } iprot.readSetEnd(); } @@ -137445,22 +136688,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimes break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -137473,7 +136707,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -137481,9 +136715,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.lang.String _iter533 : struct.success) + for (java.lang.String _iter525 : struct.success) { - oprot.writeString(_iter533); + oprot.writeString(_iter525); } oprot.writeSetEnd(); } @@ -137504,28 +136738,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTime struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class describeRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordTimestr_resultTupleScheme getScheme() { - return new describeRecordTimestr_resultTupleScheme(); + public describeRecordTime_resultTupleScheme getScheme() { + return new describeRecordTime_resultTupleScheme(); } } - private static class describeRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -137540,16 +136769,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTimes if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.lang.String _iter534 : struct.success) + for (java.lang.String _iter526 : struct.success) { - oprot.writeString(_iter534); + oprot.writeString(_iter526); } } } @@ -137562,24 +136788,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTimes if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set535 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.LinkedHashSet(2*_set535.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem536; - for (int _i537 = 0; _i537 < _set535.size; ++_i537) + org.apache.thrift.protocol.TSet _set527 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.LinkedHashSet(2*_set527.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem528; + for (int _i529 = 0; _i529 < _set527.size; ++_i529) { - _elem536 = iprot.readString(); - struct.success.add(_elem536); + _elem528 = iprot.readString(); + struct.success.add(_elem528); } } struct.setSuccessIsSet(true); @@ -137595,15 +136818,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTimest struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -137612,28 +136830,31 @@ private static S scheme(org.apache. } } - public static class describeRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecords_args"); + public static class describeRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordTimestr_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + RECORD((short)1, "record"), + TIMESTAMP((short)2, "timestamp"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -137649,13 +136870,15 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; - case 2: // CREDS + case 1: // RECORD + return RECORD; + case 2: // TIMESTAMP + return TIMESTAMP; + case 3: // CREDS return CREDS; - case 3: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -137700,12 +136923,15 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -137713,20 +136939,23 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordTimestr_args.class, metaDataMap); } - public describeRecords_args() { + public describeRecordTimestr_args() { } - public describeRecords_args( - java.util.List records, + public describeRecordTimestr_args( + long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; + this.record = record; + setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -137735,10 +136964,11 @@ public describeRecords_args( /** * Performs a deep copy on other. */ - public describeRecords_args(describeRecords_args other) { - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + public describeRecordTimestr_args(describeRecordTimestr_args other) { + __isset_bitfield = other.__isset_bitfield; + this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -137752,56 +136982,65 @@ public describeRecords_args(describeRecords_args other) { } @Override - public describeRecords_args deepCopy() { - return new describeRecords_args(this); + public describeRecordTimestr_args deepCopy() { + return new describeRecordTimestr_args(this); } @Override public void clear() { - this.records = null; + setRecordIsSet(false); + this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + public long getRecord() { + return this.record; } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + public describeRecordTimestr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public java.lang.String getTimestamp() { + return this.timestamp; } - public describeRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public describeRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetRecords() { - this.records = null; + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setRecordsIsSet(boolean value) { + public void setTimestampIsSet(boolean value) { if (!value) { - this.records = null; + this.timestamp = null; } } @@ -137810,7 +137049,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describeRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describeRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -137835,7 +137074,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describeRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describeRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -137860,7 +137099,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describeRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describeRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -137883,11 +137122,19 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); } break; @@ -137922,8 +137169,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); + + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -137946,8 +137196,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -137960,23 +137212,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecords_args) - return this.equals((describeRecords_args)that); + if (that instanceof describeRecordTimestr_args) + return this.equals((describeRecordTimestr_args)that); return false; } - public boolean equals(describeRecords_args that) { + public boolean equals(describeRecordTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -138014,9 +137275,11 @@ public boolean equals(describeRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -138034,19 +137297,29 @@ public int hashCode() { } @Override - public int compareTo(describeRecords_args other) { + public int compareTo(describeRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -138102,14 +137375,18 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordTimestr_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.timestamp); } first = false; if (!first) sb.append(", "); @@ -138161,23 +137438,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 describeRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecords_argsStandardScheme getScheme() { - return new describeRecords_argsStandardScheme(); + public describeRecordTimestr_argsStandardScheme getScheme() { + return new describeRecordTimestr_argsStandardScheme(); } } - private static class describeRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -138187,25 +137466,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_arg break; } switch (schemeField.id) { - case 1: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list538 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list538.size); - long _elem539; - for (int _i540 = 0; _i540 < _list538.size; ++_i540) - { - _elem539 = iprot.readI64(); - struct.records.add(_elem539); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 1: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 2: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -138214,7 +137491,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -138223,7 +137500,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -138243,20 +137520,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter541 : struct.records) - { - oprot.writeI64(_iter541); - } - oprot.writeListEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -138280,40 +137553,40 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecords_ar } - private static class describeRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecords_argsTupleScheme getScheme() { - return new describeRecords_argsTupleScheme(); + public describeRecordTimestr_argsTupleScheme getScheme() { + return new describeRecordTimestr_argsTupleScheme(); } } - private static class describeRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter542 : struct.records) - { - oprot.writeI64(_iter542); - } - } + if (struct.isSetEnvironment()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -138327,33 +137600,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecords_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list543 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list543.size); - long _elem544; - for (int _i545 = 0; _i545 < _list543.size; ++_i545) - { - _elem544 = iprot.readI64(); - struct.records.add(_elem544); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(1)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -138365,28 +137633,31 @@ private static S scheme(org.apache. } } - public static class describeRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecords_result"); + public static class describeRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordTimestr_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -138410,6 +137681,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -138457,53 +137730,44 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))))); + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordTimestr_result.class, metaDataMap); } - public describeRecords_result() { + public describeRecordTimestr_result() { } - public describeRecords_result( - java.util.Map> success, + public describeRecordTimestr_result( + java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public describeRecords_result(describeRecords_result other) { + public describeRecordTimestr_result(describeRecordTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); - - __this__success.put(__this__success_copy_key, __this__success_copy_value); - } + java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; } if (other.isSetEx()) { @@ -138513,13 +137777,16 @@ public describeRecords_result(describeRecords_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public describeRecords_result deepCopy() { - return new describeRecords_result(this); + public describeRecordTimestr_result deepCopy() { + return new describeRecordTimestr_result(this); } @Override @@ -138528,25 +137795,31 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Set val) { + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(java.lang.String elem) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashSet(); } - this.success.put(key, val); + this.success.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Set getSuccess() { return this.success; } - public describeRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public describeRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -138571,7 +137844,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describeRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describeRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -138596,7 +137869,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describeRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describeRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -138617,11 +137890,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public describeRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public describeRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -138641,6 +137914,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public describeRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -138648,7 +137946,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Set)value); } break; @@ -138672,7 +137970,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -138695,6 +138001,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -138715,18 +138024,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecords_result) - return this.equals((describeRecords_result)that); + if (that instanceof describeRecordTimestr_result) + return this.equals((describeRecordTimestr_result)that); return false; } - public boolean equals(describeRecords_result that) { + public boolean equals(describeRecordTimestr_result that) { if (that == null) return false; if (this == that) @@ -138768,6 +138079,15 @@ public boolean equals(describeRecords_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -138791,11 +138111,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(describeRecords_result other) { + public int compareTo(describeRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -138842,6 +138166,16 @@ public int compareTo(describeRecords_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -138862,7 +138196,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordTimestr_result("); boolean first = true; sb.append("success:"); @@ -138896,6 +138230,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -138921,17 +138263,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecords_resultStandardScheme getScheme() { - return new describeRecords_resultStandardScheme(); + public describeRecordTimestr_resultStandardScheme getScheme() { + return new describeRecordTimestr_resultStandardScheme(); } } - private static class describeRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -138942,29 +138284,17 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_res } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TMap _map546 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map546.size); - long _key547; - @org.apache.thrift.annotation.Nullable java.util.Set _val548; - for (int _i549 = 0; _i549 < _map546.size; ++_i549) + org.apache.thrift.protocol.TSet _set530 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set530.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem531; + for (int _i532 = 0; _i532 < _set530.size; ++_i532) { - _key547 = iprot.readI64(); - { - org.apache.thrift.protocol.TSet _set550 = iprot.readSetBegin(); - _val548 = new java.util.LinkedHashSet(2*_set550.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem551; - for (int _i552 = 0; _i552 < _set550.size; ++_i552) - { - _elem551 = iprot.readString(); - _val548.add(_elem551); - } - iprot.readSetEnd(); - } - struct.success.put(_key547, _val548); + _elem531 = iprot.readString(); + struct.success.add(_elem531); } - iprot.readMapEnd(); + iprot.readSetEnd(); } struct.setSuccessIsSet(true); } else { @@ -138991,13 +138321,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_res break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -139010,27 +138349,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter553 : struct.success.entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.success.size())); + for (java.lang.String _iter533 : struct.success) { - oprot.writeI64(_iter553.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, _iter553.getValue().size())); - for (java.lang.String _iter554 : _iter553.getValue()) - { - oprot.writeString(_iter554); - } - oprot.writeSetEnd(); - } + oprot.writeString(_iter533); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } oprot.writeFieldEnd(); } @@ -139049,23 +138380,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecords_re struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class describeRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecords_resultTupleScheme getScheme() { - return new describeRecords_resultTupleScheme(); + public describeRecordTimestr_resultTupleScheme getScheme() { + return new describeRecordTimestr_resultTupleScheme(); } } - private static class describeRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -139080,20 +138416,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecords_res if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter555 : struct.success.entrySet()) + for (java.lang.String _iter534 : struct.success) { - oprot.writeI64(_iter555.getKey()); - { - oprot.writeI32(_iter555.getValue().size()); - for (java.lang.String _iter556 : _iter555.getValue()) - { - oprot.writeString(_iter556); - } - } + oprot.writeString(_iter534); } } } @@ -139106,32 +138438,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecords_res if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map557 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map557.size); - long _key558; - @org.apache.thrift.annotation.Nullable java.util.Set _val559; - for (int _i560 = 0; _i560 < _map557.size; ++_i560) + org.apache.thrift.protocol.TSet _set535 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.LinkedHashSet(2*_set535.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem536; + for (int _i537 = 0; _i537 < _set535.size; ++_i537) { - _key558 = iprot.readI64(); - { - org.apache.thrift.protocol.TSet _set561 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - _val559 = new java.util.LinkedHashSet(2*_set561.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem562; - for (int _i563 = 0; _i563 < _set561.size; ++_i563) - { - _elem562 = iprot.readString(); - _val559.add(_elem562); - } - } - struct.success.put(_key558, _val559); + _elem536 = iprot.readString(); + struct.success.add(_elem536); } } struct.setSuccessIsSet(true); @@ -139147,10 +138471,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, describeRecords_resu struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -139159,20 +138488,18 @@ private static S scheme(org.apache. } } - public static class describeRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordsTime_args"); + public static class describeRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecords_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -139180,10 +138507,9 @@ public static class describeRecordsTime_args implements org.apache.thrift.TBase< /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), - TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + CREDS((short)2, "creds"), + TRANSACTION((short)3, "transaction"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -139201,13 +138527,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // RECORDS return RECORDS; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -139252,16 +138576,12 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -139269,23 +138589,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecords_args.class, metaDataMap); } - public describeRecordsTime_args() { + public describeRecords_args() { } - public describeRecordsTime_args( + public describeRecords_args( java.util.List records, - long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.records = records; - this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -139294,13 +138611,11 @@ public describeRecordsTime_args( /** * Performs a deep copy on other. */ - public describeRecordsTime_args(describeRecordsTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public describeRecords_args(describeRecords_args other) { if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -139313,15 +138628,13 @@ public describeRecordsTime_args(describeRecordsTime_args other) { } @Override - public describeRecordsTime_args deepCopy() { - return new describeRecordsTime_args(this); + public describeRecords_args deepCopy() { + return new describeRecords_args(this); } @Override public void clear() { this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -139348,7 +138661,7 @@ public java.util.List getRecords() { return this.records; } - public describeRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public describeRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -139368,35 +138681,12 @@ public void setRecordsIsSet(boolean value) { } } - public long getTimestamp() { - return this.timestamp; - } - - public describeRecordsTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describeRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describeRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -139421,7 +138711,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describeRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describeRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -139446,7 +138736,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describeRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describeRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -139477,14 +138767,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -139519,9 +138801,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case TIMESTAMP: - return getTimestamp(); - case CREDS: return getCreds(); @@ -139545,8 +138824,6 @@ public boolean isSet(_Fields field) { switch (field) { case RECORDS: return isSetRecords(); - case TIMESTAMP: - return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -139559,12 +138836,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecordsTime_args) - return this.equals((describeRecordsTime_args)that); + if (that instanceof describeRecords_args) + return this.equals((describeRecords_args)that); return false; } - public boolean equals(describeRecordsTime_args that) { + public boolean equals(describeRecords_args that) { if (that == null) return false; if (this == that) @@ -139579,15 +138856,6 @@ public boolean equals(describeRecordsTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -139626,8 +138894,6 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -139644,7 +138910,7 @@ public int hashCode() { } @Override - public int compareTo(describeRecordsTime_args other) { + public int compareTo(describeRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -139661,16 +138927,6 @@ public int compareTo(describeRecordsTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -139722,7 +138978,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecords_args("); boolean first = true; sb.append("records:"); @@ -139733,10 +138989,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -139785,25 +139037,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 describeRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordsTime_argsStandardScheme getScheme() { - return new describeRecordsTime_argsStandardScheme(); + public describeRecords_argsStandardScheme getScheme() { + return new describeRecords_argsStandardScheme(); } } - private static class describeRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -139816,13 +139066,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list564 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list564.size); - long _elem565; - for (int _i566 = 0; _i566 < _list564.size; ++_i566) + org.apache.thrift.protocol.TList _list538 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list538.size); + long _elem539; + for (int _i540 = 0; _i540 < _list538.size; ++_i540) { - _elem565 = iprot.readI64(); - struct.records.add(_elem565); + _elem539 = iprot.readI64(); + struct.records.add(_elem539); } iprot.readListEnd(); } @@ -139831,15 +139081,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -139848,7 +139090,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -139857,7 +139099,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -139877,7 +139119,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -139885,17 +139127,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTim oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter567 : struct.records) + for (long _iter541 : struct.records) { - oprot.writeI64(_iter567); + oprot.writeI64(_iter541); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -139917,47 +139156,41 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTim } - private static class describeRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordsTime_argsTupleScheme getScheme() { - return new describeRecordsTime_argsTupleScheme(); + public describeRecords_argsTupleScheme getScheme() { + return new describeRecords_argsTupleScheme(); } } - private static class describeRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetTimestamp()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter568 : struct.records) + for (long _iter542 : struct.records) { - oprot.writeI64(_iter568); + oprot.writeI64(_iter542); } } } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -139970,37 +139203,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list569 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list569.size); - long _elem570; - for (int _i571 = 0; _i571 < _list569.size; ++_i571) + org.apache.thrift.protocol.TList _list543 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list543.size); + long _elem544; + for (int _i545 = 0; _i545 < _list543.size; ++_i545) { - _elem570 = iprot.readI64(); - struct.records.add(_elem570); + _elem544 = iprot.readI64(); + struct.records.add(_elem544); } } struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -140012,16 +139241,16 @@ private static S scheme(org.apache. } } - public static class describeRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordsTime_result"); + public static class describeRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecords_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -140115,13 +139344,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecords_result.class, metaDataMap); } - public describeRecordsTime_result() { + public describeRecords_result() { } - public describeRecordsTime_result( + public describeRecords_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -140137,7 +139366,7 @@ public describeRecordsTime_result( /** * Performs a deep copy on other. */ - public describeRecordsTime_result(describeRecordsTime_result other) { + public describeRecords_result(describeRecords_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -140165,8 +139394,8 @@ public describeRecordsTime_result(describeRecordsTime_result other) { } @Override - public describeRecordsTime_result deepCopy() { - return new describeRecordsTime_result(this); + public describeRecords_result deepCopy() { + return new describeRecords_result(this); } @Override @@ -140193,7 +139422,7 @@ public java.util.Map> getSuccess( return this.success; } - public describeRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public describeRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -140218,7 +139447,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describeRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describeRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -140243,7 +139472,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describeRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describeRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -140268,7 +139497,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public describeRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public describeRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -140368,12 +139597,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecordsTime_result) - return this.equals((describeRecordsTime_result)that); + if (that instanceof describeRecords_result) + return this.equals((describeRecords_result)that); return false; } - public boolean equals(describeRecordsTime_result that) { + public boolean equals(describeRecords_result that) { if (that == null) return false; if (this == that) @@ -140442,7 +139671,7 @@ public int hashCode() { } @Override - public int compareTo(describeRecordsTime_result other) { + public int compareTo(describeRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -140509,7 +139738,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecords_result("); boolean first = true; sb.append("success:"); @@ -140568,17 +139797,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordsTime_resultStandardScheme getScheme() { - return new describeRecordsTime_resultStandardScheme(); + public describeRecords_resultStandardScheme getScheme() { + return new describeRecords_resultStandardScheme(); } } - private static class describeRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -140591,25 +139820,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map572 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map572.size); - long _key573; - @org.apache.thrift.annotation.Nullable java.util.Set _val574; - for (int _i575 = 0; _i575 < _map572.size; ++_i575) + org.apache.thrift.protocol.TMap _map546 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map546.size); + long _key547; + @org.apache.thrift.annotation.Nullable java.util.Set _val548; + for (int _i549 = 0; _i549 < _map546.size; ++_i549) { - _key573 = iprot.readI64(); + _key547 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set576 = iprot.readSetBegin(); - _val574 = new java.util.LinkedHashSet(2*_set576.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem577; - for (int _i578 = 0; _i578 < _set576.size; ++_i578) + org.apache.thrift.protocol.TSet _set550 = iprot.readSetBegin(); + _val548 = new java.util.LinkedHashSet(2*_set550.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem551; + for (int _i552 = 0; _i552 < _set550.size; ++_i552) { - _elem577 = iprot.readString(); - _val574.add(_elem577); + _elem551 = iprot.readString(); + _val548.add(_elem551); } iprot.readSetEnd(); } - struct.success.put(_key573, _val574); + struct.success.put(_key547, _val548); } iprot.readMapEnd(); } @@ -140657,7 +139886,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -140665,14 +139894,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter579 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter553 : struct.success.entrySet()) { - oprot.writeI64(_iter579.getKey()); + oprot.writeI64(_iter553.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, _iter579.getValue().size())); - for (java.lang.String _iter580 : _iter579.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, _iter553.getValue().size())); + for (java.lang.String _iter554 : _iter553.getValue()) { - oprot.writeString(_iter580); + oprot.writeString(_iter554); } oprot.writeSetEnd(); } @@ -140702,17 +139931,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTim } - private static class describeRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordsTime_resultTupleScheme getScheme() { - return new describeRecordsTime_resultTupleScheme(); + public describeRecords_resultTupleScheme getScheme() { + return new describeRecords_resultTupleScheme(); } } - private static class describeRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -140731,14 +139960,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter581 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter555 : struct.success.entrySet()) { - oprot.writeI64(_iter581.getKey()); + oprot.writeI64(_iter555.getKey()); { - oprot.writeI32(_iter581.getValue().size()); - for (java.lang.String _iter582 : _iter581.getValue()) + oprot.writeI32(_iter555.getValue().size()); + for (java.lang.String _iter556 : _iter555.getValue()) { - oprot.writeString(_iter582); + oprot.writeString(_iter556); } } } @@ -140756,29 +139985,29 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map583 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map583.size); - long _key584; - @org.apache.thrift.annotation.Nullable java.util.Set _val585; - for (int _i586 = 0; _i586 < _map583.size; ++_i586) + org.apache.thrift.protocol.TMap _map557 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map557.size); + long _key558; + @org.apache.thrift.annotation.Nullable java.util.Set _val559; + for (int _i560 = 0; _i560 < _map557.size; ++_i560) { - _key584 = iprot.readI64(); + _key558 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set587 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - _val585 = new java.util.LinkedHashSet(2*_set587.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem588; - for (int _i589 = 0; _i589 < _set587.size; ++_i589) + org.apache.thrift.protocol.TSet _set561 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + _val559 = new java.util.LinkedHashSet(2*_set561.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem562; + for (int _i563 = 0; _i563 < _set561.size; ++_i563) { - _elem588 = iprot.readString(); - _val585.add(_elem588); + _elem562 = iprot.readString(); + _val559.add(_elem562); } } - struct.success.put(_key584, _val585); + struct.success.put(_key558, _val559); } } struct.setSuccessIsSet(true); @@ -140806,20 +140035,20 @@ private static S scheme(org.apache. } } - public static class describeRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordsTimestr_args"); + public static class describeRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordsTime_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -140899,6 +140128,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -140906,7 +140137,7 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -140914,15 +140145,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordsTime_args.class, metaDataMap); } - public describeRecordsTimestr_args() { + public describeRecordsTime_args() { } - public describeRecordsTimestr_args( + public describeRecordsTime_args( java.util.List records, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -140930,6 +140161,7 @@ public describeRecordsTimestr_args( this(); this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -140938,14 +140170,13 @@ public describeRecordsTimestr_args( /** * Performs a deep copy on other. */ - public describeRecordsTimestr_args(describeRecordsTimestr_args other) { + public describeRecordsTime_args(describeRecordsTime_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -140958,14 +140189,15 @@ public describeRecordsTimestr_args(describeRecordsTimestr_args other) { } @Override - public describeRecordsTimestr_args deepCopy() { - return new describeRecordsTimestr_args(this); + public describeRecordsTime_args deepCopy() { + return new describeRecordsTime_args(this); } @Override public void clear() { this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -140992,7 +140224,7 @@ public java.util.List getRecords() { return this.records; } - public describeRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public describeRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -141012,29 +140244,27 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public describeRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public describeRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -141042,7 +140272,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public describeRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describeRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -141067,7 +140297,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public describeRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describeRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -141092,7 +140322,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public describeRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describeRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -141127,7 +140357,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -141205,12 +140435,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecordsTimestr_args) - return this.equals((describeRecordsTimestr_args)that); + if (that instanceof describeRecordsTime_args) + return this.equals((describeRecordsTime_args)that); return false; } - public boolean equals(describeRecordsTimestr_args that) { + public boolean equals(describeRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -141225,12 +140455,12 @@ public boolean equals(describeRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -141272,9 +140502,7 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -141292,7 +140520,7 @@ public int hashCode() { } @Override - public int compareTo(describeRecordsTimestr_args other) { + public int compareTo(describeRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -141370,7 +140598,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordsTime_args("); boolean first = true; sb.append("records:"); @@ -141382,11 +140610,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -141437,23 +140661,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 describeRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordsTimestr_argsStandardScheme getScheme() { - return new describeRecordsTimestr_argsStandardScheme(); + public describeRecordsTime_argsStandardScheme getScheme() { + return new describeRecordsTime_argsStandardScheme(); } } - private static class describeRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -141466,13 +140692,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list590 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list590.size); - long _elem591; - for (int _i592 = 0; _i592 < _list590.size; ++_i592) + org.apache.thrift.protocol.TList _list564 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list564.size); + long _elem565; + for (int _i566 = 0; _i566 < _list564.size; ++_i566) { - _elem591 = iprot.readI64(); - struct.records.add(_elem591); + _elem565 = iprot.readI64(); + struct.records.add(_elem565); } iprot.readListEnd(); } @@ -141482,8 +140708,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -141527,7 +140753,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -141535,19 +140761,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTim oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter593 : struct.records) + for (long _iter567 : struct.records) { - oprot.writeI64(_iter593); + oprot.writeI64(_iter567); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -141569,17 +140793,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTim } - private static class describeRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordsTimestr_argsTupleScheme getScheme() { - return new describeRecordsTimestr_argsTupleScheme(); + public describeRecordsTime_argsTupleScheme getScheme() { + return new describeRecordsTime_argsTupleScheme(); } } - private static class describeRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -141601,14 +140825,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter594 : struct.records) + for (long _iter568 : struct.records) { - oprot.writeI64(_iter594); + oprot.writeI64(_iter568); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -141622,24 +140846,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list595 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list595.size); - long _elem596; - for (int _i597 = 0; _i597 < _list595.size; ++_i597) + org.apache.thrift.protocol.TList _list569 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list569.size); + long _elem570; + for (int _i571 = 0; _i571 < _list569.size; ++_i571) { - _elem596 = iprot.readI64(); - struct.records.add(_elem596); + _elem570 = iprot.readI64(); + struct.records.add(_elem570); } } struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -141664,31 +140888,28 @@ private static S scheme(org.apache. } } - public static class describeRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordsTimestr_result"); + public static class describeRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordsTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -141712,8 +140933,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -141770,35 +140989,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordsTime_result.class, metaDataMap); } - public describeRecordsTimestr_result() { + public describeRecordsTime_result() { } - public describeRecordsTimestr_result( + public describeRecordsTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public describeRecordsTimestr_result(describeRecordsTimestr_result other) { + public describeRecordsTime_result(describeRecordsTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -141821,16 +141036,13 @@ public describeRecordsTimestr_result(describeRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public describeRecordsTimestr_result deepCopy() { - return new describeRecordsTimestr_result(this); + public describeRecordsTime_result deepCopy() { + return new describeRecordsTime_result(this); } @Override @@ -141839,7 +141051,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -141858,7 +141069,7 @@ public java.util.Map> getSuccess( return this.success; } - public describeRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public describeRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -141883,7 +141094,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public describeRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describeRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -141908,7 +141119,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public describeRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describeRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -141929,11 +141140,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public describeRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public describeRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -141953,31 +141164,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public describeRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -142009,15 +141195,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -142040,9 +141218,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -142063,20 +141238,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof describeRecordsTimestr_result) - return this.equals((describeRecordsTimestr_result)that); + if (that instanceof describeRecordsTime_result) + return this.equals((describeRecordsTime_result)that); return false; } - public boolean equals(describeRecordsTimestr_result that) { + public boolean equals(describeRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -142118,15 +141291,6 @@ public boolean equals(describeRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -142150,15 +141314,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(describeRecordsTimestr_result other) { + public int compareTo(describeRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -142205,16 +141365,6 @@ public int compareTo(describeRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -142235,7 +141385,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordsTime_result("); boolean first = true; sb.append("success:"); @@ -142269,14 +141419,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -142302,17 +141444,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class describeRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordsTimestr_resultStandardScheme getScheme() { - return new describeRecordsTimestr_resultStandardScheme(); + public describeRecordsTime_resultStandardScheme getScheme() { + return new describeRecordsTime_resultStandardScheme(); } } - private static class describeRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -142325,25 +141467,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map598 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map598.size); - long _key599; - @org.apache.thrift.annotation.Nullable java.util.Set _val600; - for (int _i601 = 0; _i601 < _map598.size; ++_i601) + org.apache.thrift.protocol.TMap _map572 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map572.size); + long _key573; + @org.apache.thrift.annotation.Nullable java.util.Set _val574; + for (int _i575 = 0; _i575 < _map572.size; ++_i575) { - _key599 = iprot.readI64(); + _key573 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set602 = iprot.readSetBegin(); - _val600 = new java.util.LinkedHashSet(2*_set602.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem603; - for (int _i604 = 0; _i604 < _set602.size; ++_i604) + org.apache.thrift.protocol.TSet _set576 = iprot.readSetBegin(); + _val574 = new java.util.LinkedHashSet(2*_set576.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem577; + for (int _i578 = 0; _i578 < _set576.size; ++_i578) { - _elem603 = iprot.readString(); - _val600.add(_elem603); + _elem577 = iprot.readString(); + _val574.add(_elem577); } iprot.readSetEnd(); } - struct.success.put(_key599, _val600); + struct.success.put(_key573, _val574); } iprot.readMapEnd(); } @@ -142372,22 +141514,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -142400,7 +141533,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -142408,14 +141541,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter605 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter579 : struct.success.entrySet()) { - oprot.writeI64(_iter605.getKey()); + oprot.writeI64(_iter579.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, _iter605.getValue().size())); - for (java.lang.String _iter606 : _iter605.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, _iter579.getValue().size())); + for (java.lang.String _iter580 : _iter579.getValue()) { - oprot.writeString(_iter606); + oprot.writeString(_iter580); } oprot.writeSetEnd(); } @@ -142439,28 +141572,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTim struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class describeRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public describeRecordsTimestr_resultTupleScheme getScheme() { - return new describeRecordsTimestr_resultTupleScheme(); + public describeRecordsTime_resultTupleScheme getScheme() { + return new describeRecordsTime_resultTupleScheme(); } } - private static class describeRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -142475,21 +141603,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter607 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter581 : struct.success.entrySet()) { - oprot.writeI64(_iter607.getKey()); + oprot.writeI64(_iter581.getKey()); { - oprot.writeI32(_iter607.getValue().size()); - for (java.lang.String _iter608 : _iter607.getValue()) + oprot.writeI32(_iter581.getValue().size()); + for (java.lang.String _iter582 : _iter581.getValue()) { - oprot.writeString(_iter608); + oprot.writeString(_iter582); } } } @@ -142504,35 +141629,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map609 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map609.size); - long _key610; - @org.apache.thrift.annotation.Nullable java.util.Set _val611; - for (int _i612 = 0; _i612 < _map609.size; ++_i612) + org.apache.thrift.protocol.TMap _map583 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map583.size); + long _key584; + @org.apache.thrift.annotation.Nullable java.util.Set _val585; + for (int _i586 = 0; _i586 < _map583.size; ++_i586) { - _key610 = iprot.readI64(); + _key584 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set613 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); - _val611 = new java.util.LinkedHashSet(2*_set613.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem614; - for (int _i615 = 0; _i615 < _set613.size; ++_i615) + org.apache.thrift.protocol.TSet _set587 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + _val585 = new java.util.LinkedHashSet(2*_set587.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem588; + for (int _i589 = 0; _i589 < _set587.size; ++_i589) { - _elem614 = iprot.readString(); - _val611.add(_elem614); + _elem588 = iprot.readString(); + _val585.add(_elem588); } } - struct.success.put(_key610, _val611); + struct.success.put(_key584, _val585); } } struct.setSuccessIsSet(true); @@ -142548,15 +141670,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimes struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -142565,28 +141682,28 @@ private static S scheme(org.apache. } } - public static class diffRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStart_args"); + public static class describeRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordsTimestr_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStart_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStart_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordsTimestr_argsTupleSchemeFactory(); - public long record; // required - public long start; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), - START((short)2, "start"), + RECORDS((short)1, "records"), + TIMESTAMP((short)2, "timestamp"), CREDS((short)3, "creds"), TRANSACTION((short)4, "transaction"), ENVIRONMENT((short)5, "environment"); @@ -142605,10 +141722,10 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; - case 2: // START - return START; + case 1: // RECORDS + return RECORDS; + case 2: // TIMESTAMP + return TIMESTAMP; case 3: // CREDS return CREDS; case 4: // TRANSACTION @@ -142658,16 +141775,14 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -142675,24 +141790,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStart_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordsTimestr_args.class, metaDataMap); } - public diffRecordStart_args() { + public describeRecordsTimestr_args() { } - public diffRecordStart_args( - long record, - long start, + public describeRecordsTimestr_args( + java.util.List records, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); - this.start = start; - setStartIsSet(true); + this.records = records; + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -142701,10 +141814,14 @@ public diffRecordStart_args( /** * Performs a deep copy on other. */ - public diffRecordStart_args(diffRecordStart_args other) { - __isset_bitfield = other.__isset_bitfield; - this.record = other.record; - this.start = other.start; + public describeRecordsTimestr_args(describeRecordsTimestr_args other) { + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -142717,65 +141834,83 @@ public diffRecordStart_args(diffRecordStart_args other) { } @Override - public diffRecordStart_args deepCopy() { - return new diffRecordStart_args(this); + public describeRecordsTimestr_args deepCopy() { + return new describeRecordsTimestr_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; - setStartIsSet(false); - this.start = 0; + this.records = null; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - public diffRecordStart_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public describeRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } - public long getStart() { - return this.start; + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; } - public diffRecordStart_args setStart(long start) { - this.start = start; - setStartIsSet(true); + public describeRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field start is set (has been assigned a value) and false otherwise */ - public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -142783,7 +141918,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public describeRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -142808,7 +141943,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public describeRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -142833,7 +141968,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public describeRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -142856,19 +141991,19 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; - case START: + case TIMESTAMP: if (value == null) { - unsetStart(); + unsetTimestamp(); } else { - setStart((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -142903,11 +142038,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); - case START: - return getStart(); + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -142930,10 +142065,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); - case START: - return isSetStart(); + case RECORDS: + return isSetRecords(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -142946,32 +142081,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffRecordStart_args) - return this.equals((diffRecordStart_args)that); + if (that instanceof describeRecordsTimestr_args) + return this.equals((describeRecordsTimestr_args)that); return false; } - public boolean equals(diffRecordStart_args that) { + public boolean equals(describeRecordsTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } - boolean this_present_start = true; - boolean that_present_start = true; - if (this_present_start || that_present_start) { - if (!(this_present_start && that_present_start)) + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.start != that.start) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -143009,9 +142144,13 @@ public boolean equals(diffRecordStart_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -143029,29 +142168,29 @@ public int hashCode() { } @Override - public int compareTo(diffRecordStart_args other) { + public int compareTo(describeRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); if (lastComparison != 0) { return lastComparison; } - if (isSetStart()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -143107,15 +142246,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStart_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordsTimestr_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } first = false; if (!first) sb.append(", "); - sb.append("start:"); - sb.append(this.start); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -143166,25 +142313,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 diffRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStart_argsStandardScheme getScheme() { - return new diffRecordStart_argsStandardScheme(); + public describeRecordsTimestr_argsStandardScheme getScheme() { + return new describeRecordsTimestr_argsStandardScheme(); } } - private static class diffRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -143194,18 +142339,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_arg break; } switch (schemeField.id) { - case 1: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list590 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list590.size); + long _elem591; + for (int _i592 = 0; _i592 < _list590.size; ++_i592) + { + _elem591 = iprot.readI64(); + struct.records.add(_elem591); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); + case 2: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -143248,16 +142403,27 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter593 : struct.records) + { + oprot.writeI64(_iter593); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -143279,23 +142445,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStart_ar } - private static class diffRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStart_argsTupleScheme getScheme() { - return new diffRecordStart_argsTupleScheme(); + public describeRecordsTimestr_argsTupleScheme getScheme() { + return new describeRecordsTimestr_argsTupleScheme(); } } - private static class diffRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetStart()) { + if (struct.isSetTimestamp()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -143308,11 +142474,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_arg optionals.set(4); } oprot.writeBitSet(optionals, 5); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter594 : struct.records) + { + oprot.writeI64(_iter594); + } + } } - if (struct.isSetStart()) { - oprot.writeI64(struct.start); + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -143326,16 +142498,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list595 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list595.size); + long _elem596; + for (int _i597 = 0; _i597 < _list595.size; ++_i597) + { + _elem596 = iprot.readI64(); + struct.records.add(_elem596); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -143359,28 +142540,31 @@ private static S scheme(org.apache. } } - public static class diffRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStart_result"); + public static class describeRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("describeRecordsTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStart_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStart_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new describeRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new describeRecordsTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -143404,6 +142588,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -143452,65 +142638,53 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, com.cinchapi.concourse.thrift.Diff.class), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStart_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(describeRecordsTimestr_result.class, metaDataMap); } - public diffRecordStart_result() { + public describeRecordsTimestr_result() { } - public diffRecordStart_result( - java.util.Map>> success, + public describeRecordsTimestr_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffRecordStart_result(diffRecordStart_result other) { + public describeRecordsTimestr_result(describeRecordsTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.String other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.String __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - com.cinchapi.concourse.thrift.Diff other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { - com.cinchapi.concourse.thrift.Diff __this__success_copy_value_copy_key = other_element_value_element_key; + java.lang.Long other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { - __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); - } + java.lang.Long __this__success_copy_key = other_element_key; - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -143523,13 +142697,16 @@ public diffRecordStart_result(diffRecordStart_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public diffRecordStart_result deepCopy() { - return new diffRecordStart_result(this); + public describeRecordsTimestr_result deepCopy() { + return new describeRecordsTimestr_result(this); } @Override @@ -143538,25 +142715,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.lang.String key, java.util.Map> val) { + public void putToSuccess(long key, java.util.Set val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public diffRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public describeRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -143581,7 +142759,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public describeRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -143606,7 +142784,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public describeRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -143627,11 +142805,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public diffRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public describeRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -143651,6 +142829,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public describeRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -143658,7 +142861,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.Map>)value); } break; @@ -143682,7 +142885,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -143705,6 +142916,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -143725,18 +142939,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffRecordStart_result) - return this.equals((diffRecordStart_result)that); + if (that instanceof describeRecordsTimestr_result) + return this.equals((describeRecordsTimestr_result)that); return false; } - public boolean equals(diffRecordStart_result that) { + public boolean equals(describeRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -143778,6 +142994,15 @@ public boolean equals(diffRecordStart_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -143801,11 +143026,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(diffRecordStart_result other) { + public int compareTo(describeRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -143852,6 +143081,16 @@ public int compareTo(diffRecordStart_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -143872,7 +143111,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStart_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("describeRecordsTimestr_result("); boolean first = true; sb.append("success:"); @@ -143906,6 +143145,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -143931,17 +143178,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStart_resultStandardScheme getScheme() { - return new diffRecordStart_resultStandardScheme(); + public describeRecordsTimestr_resultStandardScheme getScheme() { + return new describeRecordsTimestr_resultStandardScheme(); } } - private static class diffRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class describeRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, describeRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -143954,41 +143201,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map616 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map616.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key617; - @org.apache.thrift.annotation.Nullable java.util.Map> _val618; - for (int _i619 = 0; _i619 < _map616.size; ++_i619) + org.apache.thrift.protocol.TMap _map598 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map598.size); + long _key599; + @org.apache.thrift.annotation.Nullable java.util.Set _val600; + for (int _i601 = 0; _i601 < _map598.size; ++_i601) { - _key617 = iprot.readString(); + _key599 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map620 = iprot.readMapBegin(); - _val618 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key621; - @org.apache.thrift.annotation.Nullable java.util.Set _val622; - for (int _i623 = 0; _i623 < _map620.size; ++_i623) + org.apache.thrift.protocol.TSet _set602 = iprot.readSetBegin(); + _val600 = new java.util.LinkedHashSet(2*_set602.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem603; + for (int _i604 = 0; _i604 < _set602.size; ++_i604) { - _key621 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); - { - org.apache.thrift.protocol.TSet _set624 = iprot.readSetBegin(); - _val622 = new java.util.LinkedHashSet(2*_set624.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem625; - for (int _i626 = 0; _i626 < _set624.size; ++_i626) - { - _elem625 = new com.cinchapi.concourse.thrift.TObject(); - _elem625.read(iprot); - _val622.add(_elem625); - } - iprot.readSetEnd(); - } - if (_key621 != null) - { - _val618.put(_key621, _val622); - } + _elem603 = iprot.readString(); + _val600.add(_elem603); } - iprot.readMapEnd(); + iprot.readSetEnd(); } - struct.success.put(_key617, _val618); + struct.success.put(_key599, _val600); } iprot.readMapEnd(); } @@ -144017,13 +143248,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_res break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -144036,32 +143276,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, describeRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter627 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter605 : struct.success.entrySet()) { - oprot.writeString(_iter627.getKey()); + oprot.writeI64(_iter605.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter627.getValue().size())); - for (java.util.Map.Entry> _iter628 : _iter627.getValue().entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, _iter605.getValue().size())); + for (java.lang.String _iter606 : _iter605.getValue()) { - oprot.writeI32(_iter628.getKey().getValue()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter628.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter629 : _iter628.getValue()) - { - _iter629.write(oprot); - } - oprot.writeSetEnd(); - } + oprot.writeString(_iter606); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } } oprot.writeMapEnd(); @@ -144083,23 +143315,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStart_re struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class describeRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStart_resultTupleScheme getScheme() { - return new diffRecordStart_resultTupleScheme(); + public describeRecordsTimestr_resultTupleScheme getScheme() { + return new describeRecordsTimestr_resultTupleScheme(); } } - private static class diffRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class describeRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -144114,25 +143351,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_res if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter630 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter607 : struct.success.entrySet()) { - oprot.writeString(_iter630.getKey()); + oprot.writeI64(_iter607.getKey()); { - oprot.writeI32(_iter630.getValue().size()); - for (java.util.Map.Entry> _iter631 : _iter630.getValue().entrySet()) + oprot.writeI32(_iter607.getValue().size()); + for (java.lang.String _iter608 : _iter607.getValue()) { - oprot.writeI32(_iter631.getKey().getValue()); - { - oprot.writeI32(_iter631.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter632 : _iter631.getValue()) - { - _iter632.write(oprot); - } - } + oprot.writeString(_iter608); } } } @@ -144147,47 +143380,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_res if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, describeRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map633 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map633.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key634; - @org.apache.thrift.annotation.Nullable java.util.Map> _val635; - for (int _i636 = 0; _i636 < _map633.size; ++_i636) + org.apache.thrift.protocol.TMap _map609 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map609.size); + long _key610; + @org.apache.thrift.annotation.Nullable java.util.Set _val611; + for (int _i612 = 0; _i612 < _map609.size; ++_i612) { - _key634 = iprot.readString(); + _key610 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map637 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - _val635 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key638; - @org.apache.thrift.annotation.Nullable java.util.Set _val639; - for (int _i640 = 0; _i640 < _map637.size; ++_i640) + org.apache.thrift.protocol.TSet _set613 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); + _val611 = new java.util.LinkedHashSet(2*_set613.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem614; + for (int _i615 = 0; _i615 < _set613.size; ++_i615) { - _key638 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); - { - org.apache.thrift.protocol.TSet _set641 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val639 = new java.util.LinkedHashSet(2*_set641.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem642; - for (int _i643 = 0; _i643 < _set641.size; ++_i643) - { - _elem642 = new com.cinchapi.concourse.thrift.TObject(); - _elem642.read(iprot); - _val639.add(_elem642); - } - } - if (_key638 != null) - { - _val635.put(_key638, _val639); - } + _elem614 = iprot.readString(); + _val611.add(_elem614); } } - struct.success.put(_key634, _val635); + struct.success.put(_key610, _val611); } } struct.setSuccessIsSet(true); @@ -144203,10 +143424,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_resu struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -144215,20 +143441,20 @@ private static S scheme(org.apache. } } - public static class diffRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartstr_args"); + public static class diffRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStart_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStart_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStart_argsTupleSchemeFactory(); public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -144309,6 +143535,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -144316,7 +143543,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -144324,15 +143551,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStart_args.class, metaDataMap); } - public diffRecordStartstr_args() { + public diffRecordStart_args() { } - public diffRecordStartstr_args( + public diffRecordStart_args( long record, - java.lang.String start, + long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -144341,6 +143568,7 @@ public diffRecordStartstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -144349,12 +143577,10 @@ public diffRecordStartstr_args( /** * Performs a deep copy on other. */ - public diffRecordStartstr_args(diffRecordStartstr_args other) { + public diffRecordStart_args(diffRecordStart_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } + this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -144367,15 +143593,16 @@ public diffRecordStartstr_args(diffRecordStartstr_args other) { } @Override - public diffRecordStartstr_args deepCopy() { - return new diffRecordStartstr_args(this); + public diffRecordStart_args deepCopy() { + return new diffRecordStart_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - this.start = null; + setStartIsSet(false); + this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -144385,7 +143612,7 @@ public long getRecord() { return this.record; } - public diffRecordStartstr_args setRecord(long record) { + public diffRecordStart_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -144404,29 +143631,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public diffRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public diffRecordStart_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -144434,7 +143659,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -144459,7 +143684,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -144484,7 +143709,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -144519,7 +143744,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -144597,12 +143822,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffRecordStartstr_args) - return this.equals((diffRecordStartstr_args)that); + if (that instanceof diffRecordStart_args) + return this.equals((diffRecordStart_args)that); return false; } - public boolean equals(diffRecordStartstr_args that) { + public boolean equals(diffRecordStart_args that) { if (that == null) return false; if (this == that) @@ -144617,12 +143842,12 @@ public boolean equals(diffRecordStartstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } @@ -144662,9 +143887,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -144682,7 +143905,7 @@ public int hashCode() { } @Override - public int compareTo(diffRecordStartstr_args other) { + public int compareTo(diffRecordStart_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -144760,7 +143983,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStart_args("); boolean first = true; sb.append("record:"); @@ -144768,11 +143991,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -144831,17 +144050,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartstr_argsStandardScheme getScheme() { - return new diffRecordStartstr_argsStandardScheme(); + public diffRecordStart_argsStandardScheme getScheme() { + return new diffRecordStart_argsStandardScheme(); } } - private static class diffRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -144860,8 +144079,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_ } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -144905,18 +144124,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStart_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -144938,17 +144155,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr } - private static class diffRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartstr_argsTupleScheme getScheme() { - return new diffRecordStartstr_argsTupleScheme(); + public diffRecordStart_argsTupleScheme getScheme() { + return new diffRecordStart_argsTupleScheme(); } } - private static class diffRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { @@ -144971,7 +144188,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_ oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -144985,7 +144202,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -144993,7 +144210,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_a struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(2)) { @@ -145018,31 +144235,28 @@ private static S scheme(org.apache. } } - public static class diffRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartstr_result"); + public static class diffRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStart_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStart_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStart_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -145066,8 +144280,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -145126,35 +144338,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStart_result.class, metaDataMap); } - public diffRecordStartstr_result() { + public diffRecordStart_result() { } - public diffRecordStartstr_result( + public diffRecordStart_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffRecordStartstr_result(diffRecordStartstr_result other) { + public diffRecordStart_result(diffRecordStart_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -145191,16 +144399,13 @@ public diffRecordStartstr_result(diffRecordStartstr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public diffRecordStartstr_result deepCopy() { - return new diffRecordStartstr_result(this); + public diffRecordStart_result deepCopy() { + return new diffRecordStart_result(this); } @Override @@ -145209,7 +144414,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -145228,7 +144432,7 @@ public java.util.Map>> success) { + public diffRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -145253,7 +144457,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -145278,7 +144482,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -145299,11 +144503,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public diffRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public diffRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -145323,31 +144527,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public diffRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -145379,15 +144558,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -145410,9 +144581,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -145433,20 +144601,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffRecordStartstr_result) - return this.equals((diffRecordStartstr_result)that); + if (that instanceof diffRecordStart_result) + return this.equals((diffRecordStart_result)that); return false; } - public boolean equals(diffRecordStartstr_result that) { + public boolean equals(diffRecordStart_result that) { if (that == null) return false; if (this == that) @@ -145488,15 +144654,6 @@ public boolean equals(diffRecordStartstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -145520,15 +144677,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(diffRecordStartstr_result other) { + public int compareTo(diffRecordStart_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -145575,16 +144728,6 @@ public int compareTo(diffRecordStartstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -145605,7 +144748,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStart_result("); boolean first = true; sb.append("success:"); @@ -145639,14 +144782,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -145672,17 +144807,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartstr_resultStandardScheme getScheme() { - return new diffRecordStartstr_resultStandardScheme(); + public diffRecordStart_resultStandardScheme getScheme() { + return new diffRecordStart_resultStandardScheme(); } } - private static class diffRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -145695,41 +144830,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map644 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map644.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key645; - @org.apache.thrift.annotation.Nullable java.util.Map> _val646; - for (int _i647 = 0; _i647 < _map644.size; ++_i647) + org.apache.thrift.protocol.TMap _map616 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map616.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key617; + @org.apache.thrift.annotation.Nullable java.util.Map> _val618; + for (int _i619 = 0; _i619 < _map616.size; ++_i619) { - _key645 = iprot.readString(); + _key617 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map648 = iprot.readMapBegin(); - _val646 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key649; - @org.apache.thrift.annotation.Nullable java.util.Set _val650; - for (int _i651 = 0; _i651 < _map648.size; ++_i651) + org.apache.thrift.protocol.TMap _map620 = iprot.readMapBegin(); + _val618 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key621; + @org.apache.thrift.annotation.Nullable java.util.Set _val622; + for (int _i623 = 0; _i623 < _map620.size; ++_i623) { - _key649 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key621 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set652 = iprot.readSetBegin(); - _val650 = new java.util.LinkedHashSet(2*_set652.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem653; - for (int _i654 = 0; _i654 < _set652.size; ++_i654) + org.apache.thrift.protocol.TSet _set624 = iprot.readSetBegin(); + _val622 = new java.util.LinkedHashSet(2*_set624.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem625; + for (int _i626 = 0; _i626 < _set624.size; ++_i626) { - _elem653 = new com.cinchapi.concourse.thrift.TObject(); - _elem653.read(iprot); - _val650.add(_elem653); + _elem625 = new com.cinchapi.concourse.thrift.TObject(); + _elem625.read(iprot); + _val622.add(_elem625); } iprot.readSetEnd(); } - if (_key649 != null) + if (_key621 != null) { - _val646.put(_key649, _val650); + _val618.put(_key621, _val622); } } iprot.readMapEnd(); } - struct.success.put(_key645, _val646); + struct.success.put(_key617, _val618); } iprot.readMapEnd(); } @@ -145758,22 +144893,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_ break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -145786,7 +144912,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStart_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -145794,19 +144920,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter655 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter627 : struct.success.entrySet()) { - oprot.writeString(_iter655.getKey()); + oprot.writeString(_iter627.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter655.getValue().size())); - for (java.util.Map.Entry> _iter656 : _iter655.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter627.getValue().size())); + for (java.util.Map.Entry> _iter628 : _iter627.getValue().entrySet()) { - oprot.writeI32(_iter656.getKey().getValue()); + oprot.writeI32(_iter628.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter656.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter657 : _iter656.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter628.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter629 : _iter628.getValue()) { - _iter657.write(oprot); + _iter629.write(oprot); } oprot.writeSetEnd(); } @@ -145833,28 +144959,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartstr_resultTupleScheme getScheme() { - return new diffRecordStartstr_resultTupleScheme(); + public diffRecordStart_resultTupleScheme getScheme() { + return new diffRecordStart_resultTupleScheme(); } } - private static class diffRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -145869,26 +144990,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_ if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter658 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter630 : struct.success.entrySet()) { - oprot.writeString(_iter658.getKey()); + oprot.writeString(_iter630.getKey()); { - oprot.writeI32(_iter658.getValue().size()); - for (java.util.Map.Entry> _iter659 : _iter658.getValue().entrySet()) + oprot.writeI32(_iter630.getValue().size()); + for (java.util.Map.Entry> _iter631 : _iter630.getValue().entrySet()) { - oprot.writeI32(_iter659.getKey().getValue()); + oprot.writeI32(_iter631.getKey().getValue()); { - oprot.writeI32(_iter659.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter660 : _iter659.getValue()) + oprot.writeI32(_iter631.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter632 : _iter631.getValue()) { - _iter660.write(oprot); + _iter632.write(oprot); } } } @@ -145905,50 +145023,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_ if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map661 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map661.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key662; - @org.apache.thrift.annotation.Nullable java.util.Map> _val663; - for (int _i664 = 0; _i664 < _map661.size; ++_i664) + org.apache.thrift.protocol.TMap _map633 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map633.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key634; + @org.apache.thrift.annotation.Nullable java.util.Map> _val635; + for (int _i636 = 0; _i636 < _map633.size; ++_i636) { - _key662 = iprot.readString(); + _key634 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map665 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - _val663 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key666; - @org.apache.thrift.annotation.Nullable java.util.Set _val667; - for (int _i668 = 0; _i668 < _map665.size; ++_i668) + org.apache.thrift.protocol.TMap _map637 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + _val635 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key638; + @org.apache.thrift.annotation.Nullable java.util.Set _val639; + for (int _i640 = 0; _i640 < _map637.size; ++_i640) { - _key666 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key638 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set669 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val667 = new java.util.LinkedHashSet(2*_set669.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem670; - for (int _i671 = 0; _i671 < _set669.size; ++_i671) + org.apache.thrift.protocol.TSet _set641 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val639 = new java.util.LinkedHashSet(2*_set641.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem642; + for (int _i643 = 0; _i643 < _set641.size; ++_i643) { - _elem670 = new com.cinchapi.concourse.thrift.TObject(); - _elem670.read(iprot); - _val667.add(_elem670); + _elem642 = new com.cinchapi.concourse.thrift.TObject(); + _elem642.read(iprot); + _val639.add(_elem642); } } - if (_key666 != null) + if (_key638 != null) { - _val663.put(_key666, _val667); + _val635.put(_key638, _val639); } } } - struct.success.put(_key662, _val663); + struct.success.put(_key634, _val635); } } struct.setSuccessIsSet(true); @@ -145964,15 +145079,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_r struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -145981,22 +145091,20 @@ private static S scheme(org.apache. } } - public static class diffRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartEnd_args"); + public static class diffRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartstr_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartEnd_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartEnd_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartstr_argsTupleSchemeFactory(); public long record; // required - public long start; // required - public long tend; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -146005,10 +145113,9 @@ public static class diffRecordStartEnd_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -146028,13 +145135,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORD; case 2: // START return START; - case 3: // TEND - return TEND; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -146080,8 +145185,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; - private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -146089,9 +145192,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -146099,16 +145200,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartEnd_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartstr_args.class, metaDataMap); } - public diffRecordStartEnd_args() { + public diffRecordStartstr_args() { } - public diffRecordStartEnd_args( + public diffRecordStartstr_args( long record, - long start, - long tend, + java.lang.String start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -146117,9 +145217,6 @@ public diffRecordStartEnd_args( this.record = record; setRecordIsSet(true); this.start = start; - setStartIsSet(true); - this.tend = tend; - setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -146128,11 +145225,12 @@ public diffRecordStartEnd_args( /** * Performs a deep copy on other. */ - public diffRecordStartEnd_args(diffRecordStartEnd_args other) { + public diffRecordStartstr_args(diffRecordStartstr_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - this.start = other.start; - this.tend = other.tend; + if (other.isSetStart()) { + this.start = other.start; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -146145,18 +145243,15 @@ public diffRecordStartEnd_args(diffRecordStartEnd_args other) { } @Override - public diffRecordStartEnd_args deepCopy() { - return new diffRecordStartEnd_args(this); + public diffRecordStartstr_args deepCopy() { + return new diffRecordStartstr_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; - setTendIsSet(false); - this.tend = 0; + this.start = null; this.creds = null; this.transaction = null; this.environment = null; @@ -146166,7 +145261,7 @@ public long getRecord() { return this.record; } - public diffRecordStartEnd_args setRecord(long record) { + public diffRecordStartstr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -146185,50 +145280,29 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { return this.start; } - public diffRecordStartEnd_args setStart(long start) { + public diffRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { this.start = start; - setStartIsSet(true); return this; } public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + this.start = null; } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + return this.start != null; } public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - - public long getTend() { - return this.tend; - } - - public diffRecordStartEnd_args setTend(long tend) { - this.tend = tend; - setTendIsSet(true); - return this; - } - - public void unsetTend() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); - } - - /** Returns true if field tend is set (has been assigned a value) and false otherwise */ - public boolean isSetTend() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); - } - - public void setTendIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); + if (!value) { + this.start = null; + } } @org.apache.thrift.annotation.Nullable @@ -146236,7 +145310,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -146261,7 +145335,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -146286,7 +145360,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -146321,15 +145395,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.Long)value); - } - break; - - case TEND: - if (value == null) { - unsetTend(); - } else { - setTend((java.lang.Long)value); + setStart((java.lang.String)value); } break; @@ -146370,9 +145436,6 @@ public java.lang.Object getFieldValue(_Fields field) { case START: return getStart(); - case TEND: - return getTend(); - case CREDS: return getCreds(); @@ -146398,8 +145461,6 @@ public boolean isSet(_Fields field) { return isSetRecord(); case START: return isSetStart(); - case TEND: - return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -146412,12 +145473,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffRecordStartEnd_args) - return this.equals((diffRecordStartEnd_args)that); + if (that instanceof diffRecordStartstr_args) + return this.equals((diffRecordStartstr_args)that); return false; } - public boolean equals(diffRecordStartEnd_args that) { + public boolean equals(diffRecordStartstr_args that) { if (that == null) return false; if (this == that) @@ -146432,21 +145493,12 @@ public boolean equals(diffRecordStartEnd_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (this.start != that.start) - return false; - } - - boolean this_present_tend = true; - boolean that_present_tend = true; - if (this_present_tend || that_present_tend) { - if (!(this_present_tend && that_present_tend)) - return false; - if (this.tend != that.tend) + if (!this.start.equals(that.start)) return false; } @@ -146486,9 +145538,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -146506,7 +145558,7 @@ public int hashCode() { } @Override - public int compareTo(diffRecordStartEnd_args other) { + public int compareTo(diffRecordStartstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -146533,16 +145585,6 @@ public int compareTo(diffRecordStartEnd_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTend()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -146594,7 +145636,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartEnd_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartstr_args("); boolean first = true; sb.append("record:"); @@ -146602,11 +145644,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); - sb.append("tend:"); - sb.append(this.tend); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -146665,17 +145707,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartEnd_argsStandardScheme getScheme() { - return new diffRecordStartEnd_argsStandardScheme(); + public diffRecordStartstr_argsStandardScheme getScheme() { + return new diffRecordStartstr_argsStandardScheme(); } } - private static class diffRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -146694,22 +145736,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_ } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -146718,7 +145752,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -146727,7 +145761,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -146747,19 +145781,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeI64(struct.tend); - oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -146781,17 +145814,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartEnd } - private static class diffRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartEnd_argsTupleScheme getScheme() { - return new diffRecordStartEnd_argsTupleScheme(); + public diffRecordStartstr_argsTupleScheme getScheme() { + return new diffRecordStartstr_argsTupleScheme(); } } - private static class diffRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { @@ -146800,27 +145833,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_ if (struct.isSetStart()) { optionals.set(1); } - if (struct.isSetTend()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetRecord()) { oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } - if (struct.isSetTend()) { - oprot.writeI64(struct.tend); + oprot.writeString(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -146834,32 +145861,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readI64(); + struct.start = iprot.readString(); struct.setStartIsSet(true); } if (incoming.get(2)) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -146871,28 +145894,31 @@ private static S scheme(org.apache. } } - public static class diffRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartEnd_result"); + public static class diffRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartEnd_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartEnd_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartstr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -146916,6 +145942,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -146974,31 +146002,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartEnd_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartstr_result.class, metaDataMap); } - public diffRecordStartEnd_result() { + public diffRecordStartstr_result() { } - public diffRecordStartEnd_result( + public diffRecordStartstr_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffRecordStartEnd_result(diffRecordStartEnd_result other) { + public diffRecordStartstr_result(diffRecordStartstr_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -147035,13 +146067,16 @@ public diffRecordStartEnd_result(diffRecordStartEnd_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public diffRecordStartEnd_result deepCopy() { - return new diffRecordStartEnd_result(this); + public diffRecordStartstr_result deepCopy() { + return new diffRecordStartstr_result(this); } @Override @@ -147050,6 +146085,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -147068,7 +146104,7 @@ public java.util.Map>> success) { + public diffRecordStartstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -147093,7 +146129,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -147118,7 +146154,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -147139,11 +146175,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public diffRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public diffRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -147163,6 +146199,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public diffRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -147194,7 +146255,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -147217,6 +146286,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -147237,18 +146309,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffRecordStartEnd_result) - return this.equals((diffRecordStartEnd_result)that); + if (that instanceof diffRecordStartstr_result) + return this.equals((diffRecordStartstr_result)that); return false; } - public boolean equals(diffRecordStartEnd_result that) { + public boolean equals(diffRecordStartstr_result that) { if (that == null) return false; if (this == that) @@ -147290,6 +146364,15 @@ public boolean equals(diffRecordStartEnd_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -147313,11 +146396,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(diffRecordStartEnd_result other) { + public int compareTo(diffRecordStartstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -147364,6 +146451,16 @@ public int compareTo(diffRecordStartEnd_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -147384,7 +146481,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartEnd_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartstr_result("); boolean first = true; sb.append("success:"); @@ -147418,6 +146515,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -147443,17 +146548,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartEnd_resultStandardScheme getScheme() { - return new diffRecordStartEnd_resultStandardScheme(); + public diffRecordStartstr_resultStandardScheme getScheme() { + return new diffRecordStartstr_resultStandardScheme(); } } - private static class diffRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -147466,41 +146571,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map672 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map672.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key673; - @org.apache.thrift.annotation.Nullable java.util.Map> _val674; - for (int _i675 = 0; _i675 < _map672.size; ++_i675) + org.apache.thrift.protocol.TMap _map644 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map644.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key645; + @org.apache.thrift.annotation.Nullable java.util.Map> _val646; + for (int _i647 = 0; _i647 < _map644.size; ++_i647) { - _key673 = iprot.readString(); + _key645 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map676 = iprot.readMapBegin(); - _val674 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key677; - @org.apache.thrift.annotation.Nullable java.util.Set _val678; - for (int _i679 = 0; _i679 < _map676.size; ++_i679) + org.apache.thrift.protocol.TMap _map648 = iprot.readMapBegin(); + _val646 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key649; + @org.apache.thrift.annotation.Nullable java.util.Set _val650; + for (int _i651 = 0; _i651 < _map648.size; ++_i651) { - _key677 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key649 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set680 = iprot.readSetBegin(); - _val678 = new java.util.LinkedHashSet(2*_set680.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem681; - for (int _i682 = 0; _i682 < _set680.size; ++_i682) + org.apache.thrift.protocol.TSet _set652 = iprot.readSetBegin(); + _val650 = new java.util.LinkedHashSet(2*_set652.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem653; + for (int _i654 = 0; _i654 < _set652.size; ++_i654) { - _elem681 = new com.cinchapi.concourse.thrift.TObject(); - _elem681.read(iprot); - _val678.add(_elem681); + _elem653 = new com.cinchapi.concourse.thrift.TObject(); + _elem653.read(iprot); + _val650.add(_elem653); } iprot.readSetEnd(); } - if (_key677 != null) + if (_key649 != null) { - _val674.put(_key677, _val678); + _val646.put(_key649, _val650); } } iprot.readMapEnd(); } - struct.success.put(_key673, _val674); + struct.success.put(_key645, _val646); } iprot.readMapEnd(); } @@ -147529,13 +146634,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_ break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -147548,7 +146662,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -147556,19 +146670,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartEnd oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter683 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter655 : struct.success.entrySet()) { - oprot.writeString(_iter683.getKey()); + oprot.writeString(_iter655.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter683.getValue().size())); - for (java.util.Map.Entry> _iter684 : _iter683.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter655.getValue().size())); + for (java.util.Map.Entry> _iter656 : _iter655.getValue().entrySet()) { - oprot.writeI32(_iter684.getKey().getValue()); + oprot.writeI32(_iter656.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter684.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter685 : _iter684.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter656.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter657 : _iter656.getValue()) { - _iter685.write(oprot); + _iter657.write(oprot); } oprot.writeSetEnd(); } @@ -147595,23 +146709,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartEnd struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartEnd_resultTupleScheme getScheme() { - return new diffRecordStartEnd_resultTupleScheme(); + public diffRecordStartstr_resultTupleScheme getScheme() { + return new diffRecordStartstr_resultTupleScheme(); } } - private static class diffRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -147626,23 +146745,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_ if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter686 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter658 : struct.success.entrySet()) { - oprot.writeString(_iter686.getKey()); + oprot.writeString(_iter658.getKey()); { - oprot.writeI32(_iter686.getValue().size()); - for (java.util.Map.Entry> _iter687 : _iter686.getValue().entrySet()) + oprot.writeI32(_iter658.getValue().size()); + for (java.util.Map.Entry> _iter659 : _iter658.getValue().entrySet()) { - oprot.writeI32(_iter687.getKey().getValue()); + oprot.writeI32(_iter659.getKey().getValue()); { - oprot.writeI32(_iter687.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter688 : _iter687.getValue()) + oprot.writeI32(_iter659.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter660 : _iter659.getValue()) { - _iter688.write(oprot); + _iter660.write(oprot); } } } @@ -147659,47 +146781,50 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_ if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map689 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map689.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key690; - @org.apache.thrift.annotation.Nullable java.util.Map> _val691; - for (int _i692 = 0; _i692 < _map689.size; ++_i692) + org.apache.thrift.protocol.TMap _map661 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map661.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key662; + @org.apache.thrift.annotation.Nullable java.util.Map> _val663; + for (int _i664 = 0; _i664 < _map661.size; ++_i664) { - _key690 = iprot.readString(); + _key662 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map693 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - _val691 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key694; - @org.apache.thrift.annotation.Nullable java.util.Set _val695; - for (int _i696 = 0; _i696 < _map693.size; ++_i696) + org.apache.thrift.protocol.TMap _map665 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + _val663 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key666; + @org.apache.thrift.annotation.Nullable java.util.Set _val667; + for (int _i668 = 0; _i668 < _map665.size; ++_i668) { - _key694 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key666 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set697 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val695 = new java.util.LinkedHashSet(2*_set697.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem698; - for (int _i699 = 0; _i699 < _set697.size; ++_i699) + org.apache.thrift.protocol.TSet _set669 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val667 = new java.util.LinkedHashSet(2*_set669.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem670; + for (int _i671 = 0; _i671 < _set669.size; ++_i671) { - _elem698 = new com.cinchapi.concourse.thrift.TObject(); - _elem698.read(iprot); - _val695.add(_elem698); + _elem670 = new com.cinchapi.concourse.thrift.TObject(); + _elem670.read(iprot); + _val667.add(_elem670); } } - if (_key694 != null) + if (_key666 != null) { - _val691.put(_key694, _val695); + _val663.put(_key666, _val667); } } } - struct.success.put(_key690, _val691); + struct.success.put(_key662, _val663); } } struct.setSuccessIsSet(true); @@ -147715,10 +146840,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_r struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -147727,22 +146857,22 @@ private static S scheme(org.apache. } } - public static class diffRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartstrEndstr_args"); + public static class diffRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartEnd_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartstrEndstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartstrEndstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartEnd_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartEnd_argsTupleSchemeFactory(); public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required - public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required + public long start; // required + public long tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -147826,6 +146956,8 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; + private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -147833,9 +146965,9 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -147843,16 +146975,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartstrEndstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartEnd_args.class, metaDataMap); } - public diffRecordStartstrEndstr_args() { + public diffRecordStartEnd_args() { } - public diffRecordStartstrEndstr_args( + public diffRecordStartEnd_args( long record, - java.lang.String start, - java.lang.String tend, + long start, + long tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -147861,7 +146993,9 @@ public diffRecordStartstrEndstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.tend = tend; + setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -147870,15 +147004,11 @@ public diffRecordStartstrEndstr_args( /** * Performs a deep copy on other. */ - public diffRecordStartstrEndstr_args(diffRecordStartstrEndstr_args other) { + public diffRecordStartEnd_args(diffRecordStartEnd_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } - if (other.isSetTend()) { - this.tend = other.tend; - } + this.start = other.start; + this.tend = other.tend; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -147891,16 +147021,18 @@ public diffRecordStartstrEndstr_args(diffRecordStartstrEndstr_args other) { } @Override - public diffRecordStartstrEndstr_args deepCopy() { - return new diffRecordStartstrEndstr_args(this); + public diffRecordStartEnd_args deepCopy() { + return new diffRecordStartEnd_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - this.start = null; - this.tend = null; + setStartIsSet(false); + this.start = 0; + setTendIsSet(false); + this.tend = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -147910,7 +147042,7 @@ public long getRecord() { return this.record; } - public diffRecordStartstrEndstr_args setRecord(long record) { + public diffRecordStartEnd_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -147929,54 +147061,50 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public diffRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public diffRecordStartEnd_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTend() { + public long getTend() { return this.tend; } - public diffRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + public diffRecordStartEnd_args setTend(long tend) { this.tend = tend; + setTendIsSet(true); return this; } public void unsetTend() { - this.tend = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); } /** Returns true if field tend is set (has been assigned a value) and false otherwise */ public boolean isSetTend() { - return this.tend != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); } public void setTendIsSet(boolean value) { - if (!value) { - this.tend = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -147984,7 +147112,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -148009,7 +147137,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -148034,7 +147162,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -148069,7 +147197,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -148077,7 +147205,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTend(); } else { - setTend((java.lang.String)value); + setTend((java.lang.Long)value); } break; @@ -148160,12 +147288,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffRecordStartstrEndstr_args) - return this.equals((diffRecordStartstrEndstr_args)that); + if (that instanceof diffRecordStartEnd_args) + return this.equals((diffRecordStartEnd_args)that); return false; } - public boolean equals(diffRecordStartstrEndstr_args that) { + public boolean equals(diffRecordStartEnd_args that) { if (that == null) return false; if (this == that) @@ -148180,21 +147308,21 @@ public boolean equals(diffRecordStartstrEndstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } - boolean this_present_tend = true && this.isSetTend(); - boolean that_present_tend = true && that.isSetTend(); + boolean this_present_tend = true; + boolean that_present_tend = true; if (this_present_tend || that_present_tend) { if (!(this_present_tend && that_present_tend)) return false; - if (!this.tend.equals(that.tend)) + if (this.tend != that.tend) return false; } @@ -148234,13 +147362,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); - if (isSetTend()) - hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -148258,7 +147382,7 @@ public int hashCode() { } @Override - public int compareTo(diffRecordStartstrEndstr_args other) { + public int compareTo(diffRecordStartEnd_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -148346,7 +147470,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartstrEndstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartEnd_args("); boolean first = true; sb.append("record:"); @@ -148354,19 +147478,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("tend:"); - if (this.tend == null) { - sb.append("null"); - } else { - sb.append(this.tend); - } + sb.append(this.tend); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -148425,17 +147541,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartstrEndstr_argsStandardScheme getScheme() { - return new diffRecordStartstrEndstr_argsStandardScheme(); + public diffRecordStartEnd_argsStandardScheme getScheme() { + return new diffRecordStartEnd_argsStandardScheme(); } } - private static class diffRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -148454,16 +147570,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrE } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tend = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -148507,23 +147623,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrE } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartEnd_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } - if (struct.tend != null) { - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeString(struct.tend); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeI64(struct.tend); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -148545,17 +147657,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr } - private static class diffRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartstrEndstr_argsTupleScheme getScheme() { - return new diffRecordStartstrEndstr_argsTupleScheme(); + public diffRecordStartEnd_argsTupleScheme getScheme() { + return new diffRecordStartEnd_argsTupleScheme(); } } - private static class diffRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { @@ -148581,10 +147693,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrE oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetTend()) { - oprot.writeString(struct.tend); + oprot.writeI64(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -148598,7 +147710,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrE } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -148606,11 +147718,11 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEn struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(2)) { - struct.tend = iprot.readString(); + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } if (incoming.get(3)) { @@ -148635,31 +147747,28 @@ private static S scheme(org.apache. } } - public static class diffRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartstrEndstr_result"); + public static class diffRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartEnd_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartstrEndstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartstrEndstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartEnd_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartEnd_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -148683,8 +147792,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -148743,35 +147850,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartstrEndstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartEnd_result.class, metaDataMap); } - public diffRecordStartstrEndstr_result() { + public diffRecordStartEnd_result() { } - public diffRecordStartstrEndstr_result( + public diffRecordStartEnd_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffRecordStartstrEndstr_result(diffRecordStartstrEndstr_result other) { + public diffRecordStartEnd_result(diffRecordStartEnd_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -148808,16 +147911,13 @@ public diffRecordStartstrEndstr_result(diffRecordStartstrEndstr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public diffRecordStartstrEndstr_result deepCopy() { - return new diffRecordStartstrEndstr_result(this); + public diffRecordStartEnd_result deepCopy() { + return new diffRecordStartEnd_result(this); } @Override @@ -148826,7 +147926,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -148845,7 +147944,7 @@ public java.util.Map>> success) { + public diffRecordStartEnd_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -148870,7 +147969,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -148895,7 +147994,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -148916,11 +148015,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public diffRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public diffRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -148940,31 +148039,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public diffRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -148996,15 +148070,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -149027,9 +148093,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -149050,20 +148113,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffRecordStartstrEndstr_result) - return this.equals((diffRecordStartstrEndstr_result)that); + if (that instanceof diffRecordStartEnd_result) + return this.equals((diffRecordStartEnd_result)that); return false; } - public boolean equals(diffRecordStartstrEndstr_result that) { + public boolean equals(diffRecordStartEnd_result that) { if (that == null) return false; if (this == that) @@ -149105,15 +148166,6 @@ public boolean equals(diffRecordStartstrEndstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -149137,15 +148189,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(diffRecordStartstrEndstr_result other) { + public int compareTo(diffRecordStartEnd_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -149192,16 +148240,6 @@ public int compareTo(diffRecordStartstrEndstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -149222,7 +148260,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartstrEndstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartEnd_result("); boolean first = true; sb.append("success:"); @@ -149256,14 +148294,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -149289,17 +148319,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartstrEndstr_resultStandardScheme getScheme() { - return new diffRecordStartstrEndstr_resultStandardScheme(); + public diffRecordStartEnd_resultStandardScheme getScheme() { + return new diffRecordStartEnd_resultStandardScheme(); } } - private static class diffRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -149312,41 +148342,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrE case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map700 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map700.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key701; - @org.apache.thrift.annotation.Nullable java.util.Map> _val702; - for (int _i703 = 0; _i703 < _map700.size; ++_i703) + org.apache.thrift.protocol.TMap _map672 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map672.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key673; + @org.apache.thrift.annotation.Nullable java.util.Map> _val674; + for (int _i675 = 0; _i675 < _map672.size; ++_i675) { - _key701 = iprot.readString(); + _key673 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map704 = iprot.readMapBegin(); - _val702 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key705; - @org.apache.thrift.annotation.Nullable java.util.Set _val706; - for (int _i707 = 0; _i707 < _map704.size; ++_i707) + org.apache.thrift.protocol.TMap _map676 = iprot.readMapBegin(); + _val674 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key677; + @org.apache.thrift.annotation.Nullable java.util.Set _val678; + for (int _i679 = 0; _i679 < _map676.size; ++_i679) { - _key705 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key677 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set708 = iprot.readSetBegin(); - _val706 = new java.util.LinkedHashSet(2*_set708.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem709; - for (int _i710 = 0; _i710 < _set708.size; ++_i710) + org.apache.thrift.protocol.TSet _set680 = iprot.readSetBegin(); + _val678 = new java.util.LinkedHashSet(2*_set680.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem681; + for (int _i682 = 0; _i682 < _set680.size; ++_i682) { - _elem709 = new com.cinchapi.concourse.thrift.TObject(); - _elem709.read(iprot); - _val706.add(_elem709); + _elem681 = new com.cinchapi.concourse.thrift.TObject(); + _elem681.read(iprot); + _val678.add(_elem681); } iprot.readSetEnd(); } - if (_key705 != null) + if (_key677 != null) { - _val702.put(_key705, _val706); + _val674.put(_key677, _val678); } } iprot.readMapEnd(); } - struct.success.put(_key701, _val702); + struct.success.put(_key673, _val674); } iprot.readMapEnd(); } @@ -149375,22 +148405,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrE break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -149403,7 +148424,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrE } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartEnd_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -149411,19 +148432,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter711 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter683 : struct.success.entrySet()) { - oprot.writeString(_iter711.getKey()); + oprot.writeString(_iter683.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter711.getValue().size())); - for (java.util.Map.Entry> _iter712 : _iter711.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter683.getValue().size())); + for (java.util.Map.Entry> _iter684 : _iter683.getValue().entrySet()) { - oprot.writeI32(_iter712.getKey().getValue()); + oprot.writeI32(_iter684.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter712.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter713 : _iter712.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter684.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter685 : _iter684.getValue()) { - _iter713.write(oprot); + _iter685.write(oprot); } oprot.writeSetEnd(); } @@ -149450,28 +148471,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstr struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffRecordStartstrEndstr_resultTupleScheme getScheme() { - return new diffRecordStartstrEndstr_resultTupleScheme(); + public diffRecordStartEnd_resultTupleScheme getScheme() { + return new diffRecordStartEnd_resultTupleScheme(); } } - private static class diffRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -149486,26 +148502,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrE if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter714 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter686 : struct.success.entrySet()) { - oprot.writeString(_iter714.getKey()); + oprot.writeString(_iter686.getKey()); { - oprot.writeI32(_iter714.getValue().size()); - for (java.util.Map.Entry> _iter715 : _iter714.getValue().entrySet()) + oprot.writeI32(_iter686.getValue().size()); + for (java.util.Map.Entry> _iter687 : _iter686.getValue().entrySet()) { - oprot.writeI32(_iter715.getKey().getValue()); + oprot.writeI32(_iter687.getKey().getValue()); { - oprot.writeI32(_iter715.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter716 : _iter715.getValue()) + oprot.writeI32(_iter687.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter688 : _iter687.getValue()) { - _iter716.write(oprot); + _iter688.write(oprot); } } } @@ -149522,50 +148535,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrE if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map717 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map717.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key718; - @org.apache.thrift.annotation.Nullable java.util.Map> _val719; - for (int _i720 = 0; _i720 < _map717.size; ++_i720) + org.apache.thrift.protocol.TMap _map689 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map689.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key690; + @org.apache.thrift.annotation.Nullable java.util.Map> _val691; + for (int _i692 = 0; _i692 < _map689.size; ++_i692) { - _key718 = iprot.readString(); + _key690 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map721 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - _val719 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key722; - @org.apache.thrift.annotation.Nullable java.util.Set _val723; - for (int _i724 = 0; _i724 < _map721.size; ++_i724) + org.apache.thrift.protocol.TMap _map693 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + _val691 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key694; + @org.apache.thrift.annotation.Nullable java.util.Set _val695; + for (int _i696 = 0; _i696 < _map693.size; ++_i696) { - _key722 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key694 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set725 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val723 = new java.util.LinkedHashSet(2*_set725.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem726; - for (int _i727 = 0; _i727 < _set725.size; ++_i727) + org.apache.thrift.protocol.TSet _set697 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val695 = new java.util.LinkedHashSet(2*_set697.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem698; + for (int _i699 = 0; _i699 < _set697.size; ++_i699) { - _elem726 = new com.cinchapi.concourse.thrift.TObject(); - _elem726.read(iprot); - _val723.add(_elem726); + _elem698 = new com.cinchapi.concourse.thrift.TObject(); + _elem698.read(iprot); + _val695.add(_elem698); } } - if (_key722 != null) + if (_key694 != null) { - _val719.put(_key722, _val723); + _val691.put(_key694, _val695); } } } - struct.success.put(_key718, _val719); + struct.success.put(_key690, _val691); } } struct.setSuccessIsSet(true); @@ -149581,15 +148591,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEn struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -149598,31 +148603,31 @@ private static S scheme(org.apache. } } - public static class diffKeyRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStart_args"); + public static class diffRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartstrEndstr_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStart_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStart_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartstrEndstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartstrEndstr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public long start; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - RECORD((short)2, "record"), - START((short)3, "start"), + RECORD((short)1, "record"), + START((short)2, "start"), + TEND((short)3, "tend"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -149641,12 +148646,12 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // RECORD + case 1: // RECORD return RECORD; - case 3: // START + case 2: // START return START; + case 3: // TEND + return TEND; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -149697,17 +148702,16 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -149715,26 +148719,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStart_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartstrEndstr_args.class, metaDataMap); } - public diffKeyRecordStart_args() { + public diffRecordStartstrEndstr_args() { } - public diffKeyRecordStart_args( - java.lang.String key, + public diffRecordStartstrEndstr_args( long record, - long start, + java.lang.String start, + java.lang.String tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; this.record = record; setRecordIsSet(true); this.start = start; - setStartIsSet(true); + this.tend = tend; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -149743,13 +148746,15 @@ public diffKeyRecordStart_args( /** * Performs a deep copy on other. */ - public diffKeyRecordStart_args(diffKeyRecordStart_args other) { + public diffRecordStartstrEndstr_args(diffRecordStartstrEndstr_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; - } this.record = other.record; - this.start = other.start; + if (other.isSetStart()) { + this.start = other.start; + } + if (other.isSetTend()) { + this.tend = other.tend; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -149762,52 +148767,26 @@ public diffKeyRecordStart_args(diffKeyRecordStart_args other) { } @Override - public diffKeyRecordStart_args deepCopy() { - return new diffKeyRecordStart_args(this); + public diffRecordStartstrEndstr_args deepCopy() { + return new diffRecordStartstrEndstr_args(this); } @Override public void clear() { - this.key = null; setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; + this.start = null; + this.tend = null; this.creds = null; this.transaction = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; - } - - public diffKeyRecordStart_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; - return this; - } - - public void unsetKey() { - this.key = null; - } - - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; - } - - public void setKeyIsSet(boolean value) { - if (!value) { - this.key = null; - } - } - public long getRecord() { return this.record; } - public diffKeyRecordStart_args setRecord(long record) { + public diffRecordStartstrEndstr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -149826,27 +148805,54 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { return this.start; } - public diffKeyRecordStart_args setStart(long start) { + public diffRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { this.start = start; - setStartIsSet(true); return this; } public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + this.start = null; } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + return this.start != null; } public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); + if (!value) { + this.start = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTend() { + return this.tend; + } + + public diffRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + this.tend = tend; + return this; + } + + public void unsetTend() { + this.tend = null; + } + + /** Returns true if field tend is set (has been assigned a value) and false otherwise */ + public boolean isSetTend() { + return this.tend != null; + } + + public void setTendIsSet(boolean value) { + if (!value) { + this.tend = null; + } } @org.apache.thrift.annotation.Nullable @@ -149854,7 +148860,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffKeyRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -149879,7 +148885,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffKeyRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -149904,7 +148910,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffKeyRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -149927,14 +148933,6 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: - if (value == null) { - unsetKey(); - } else { - setKey((java.lang.String)value); - } - break; - case RECORD: if (value == null) { unsetRecord(); @@ -149947,7 +148945,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.Long)value); + setStart((java.lang.String)value); + } + break; + + case TEND: + if (value == null) { + unsetTend(); + } else { + setTend((java.lang.String)value); } break; @@ -149982,15 +148988,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); - case RECORD: return getRecord(); case START: return getStart(); + case TEND: + return getTend(); + case CREDS: return getCreds(); @@ -150012,12 +149018,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); case RECORD: return isSetRecord(); case START: return isSetStart(); + case TEND: + return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -150030,26 +149036,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyRecordStart_args) - return this.equals((diffKeyRecordStart_args)that); + if (that instanceof diffRecordStartstrEndstr_args) + return this.equals((diffRecordStartstrEndstr_args)that); return false; } - public boolean equals(diffKeyRecordStart_args that) { + public boolean equals(diffRecordStartstrEndstr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) - return false; - if (!this.key.equals(that.key)) - return false; - } - boolean this_present_record = true; boolean that_present_record = true; if (this_present_record || that_present_record) { @@ -150059,12 +149056,21 @@ public boolean equals(diffKeyRecordStart_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (this.start != that.start) + if (!this.start.equals(that.start)) + return false; + } + + boolean this_present_tend = true && this.isSetTend(); + boolean that_present_tend = true && that.isSetTend(); + if (this_present_tend || that_present_tend) { + if (!(this_present_tend && that_present_tend)) + return false; + if (!this.tend.equals(that.tend)) return false; } @@ -150102,13 +149108,15 @@ public boolean equals(diffKeyRecordStart_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); + if (isSetTend()) + hashCode = hashCode * 8191 + tend.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -150126,39 +149134,39 @@ public int hashCode() { } @Override - public int compareTo(diffKeyRecordStart_args other) { + public int compareTo(diffRecordStartstrEndstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetStart()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); + lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); if (lastComparison != 0) { return lastComparison; } - if (isSetStart()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); + if (isSetTend()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); if (lastComparison != 0) { return lastComparison; } @@ -150214,23 +149222,27 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStart_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartstrEndstr_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { - sb.append("null"); - } else { - sb.append(this.key); - } - first = false; - if (!first) sb.append(", "); sb.append("record:"); sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("start:"); - sb.append(this.start); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } + first = false; + if (!first) sb.append(", "); + sb.append("tend:"); + if (this.tend == null) { + sb.append("null"); + } else { + sb.append(this.tend); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -150289,17 +149301,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStart_argsStandardScheme getScheme() { - return new diffKeyRecordStart_argsStandardScheme(); + public diffRecordStartstrEndstr_argsStandardScheme getScheme() { + return new diffRecordStartstrEndstr_argsStandardScheme(); } } - private static class diffKeyRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -150309,15 +149321,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_ break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // RECORD + case 1: // RECORD if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); @@ -150325,14 +149329,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); + case 2: // START + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 3: // TEND + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -150371,21 +149383,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); - oprot.writeFieldEnd(); - } oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } + if (struct.tend != null) { + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeString(struct.tend); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -150407,26 +149421,26 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart } - private static class diffKeyRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStart_argsTupleScheme getScheme() { - return new diffKeyRecordStart_argsTupleScheme(); + public diffRecordStartstrEndstr_argsTupleScheme getScheme() { + return new diffRecordStartstrEndstr_argsTupleScheme(); } } - private static class diffKeyRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetRecord()) { optionals.set(0); } - if (struct.isSetRecord()) { + if (struct.isSetStart()) { optionals.set(1); } - if (struct.isSetStart()) { + if (struct.isSetTend()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -150439,14 +149453,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_ optionals.set(5); } oprot.writeBitSet(optionals, 6); - if (struct.isSetKey()) { - oprot.writeString(struct.key); - } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeI64(struct.start); + oprot.writeString(struct.start); + } + if (struct.isSetTend()) { + oprot.writeString(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -150460,21 +149474,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } - if (incoming.get(1)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } - if (incoming.get(2)) { - struct.start = iprot.readI64(); + if (incoming.get(1)) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } + if (incoming.get(2)) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -150497,28 +149511,31 @@ private static S scheme(org.apache. } } - public static class diffKeyRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStart_result"); + public static class diffRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffRecordStartstrEndstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStart_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStart_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffRecordStartstrEndstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffRecordStartstrEndstr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -150542,6 +149559,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -150590,51 +149609,68 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, com.cinchapi.concourse.thrift.Diff.class), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, com.cinchapi.concourse.thrift.Diff.class), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStart_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffRecordStartstrEndstr_result.class, metaDataMap); } - public diffKeyRecordStart_result() { + public diffRecordStartstrEndstr_result() { } - public diffKeyRecordStart_result( - java.util.Map> success, + public diffRecordStartstrEndstr_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffKeyRecordStart_result(diffKeyRecordStart_result other) { + public diffRecordStartstrEndstr_result(diffRecordStartstrEndstr_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - com.cinchapi.concourse.thrift.Diff other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); + java.lang.String other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); - com.cinchapi.concourse.thrift.Diff __this__success_copy_key = other_element_key; + java.lang.String __this__success_copy_key = other_element_key; - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { - __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); + java.util.Map> __this__success_copy_value = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + com.cinchapi.concourse.thrift.Diff other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + com.cinchapi.concourse.thrift.Diff __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { + __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); + } + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -150648,13 +149684,16 @@ public diffKeyRecordStart_result(diffKeyRecordStart_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public diffKeyRecordStart_result deepCopy() { - return new diffKeyRecordStart_result(this); + public diffRecordStartstrEndstr_result deepCopy() { + return new diffRecordStartstrEndstr_result(this); } @Override @@ -150663,25 +149702,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(com.cinchapi.concourse.thrift.Diff key, java.util.Set val) { + public void putToSuccess(java.lang.String key, java.util.Map> val) { if (this.success == null) { - this.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + this.success = new java.util.LinkedHashMap>>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public diffKeyRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public diffRecordStartstrEndstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -150706,7 +149746,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffKeyRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -150731,7 +149771,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffKeyRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -150752,11 +149792,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public diffKeyRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public diffRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -150776,6 +149816,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public diffRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -150783,7 +149848,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map>>)value); } break; @@ -150807,7 +149872,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -150830,6 +149903,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -150850,18 +149926,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyRecordStart_result) - return this.equals((diffKeyRecordStart_result)that); + if (that instanceof diffRecordStartstrEndstr_result) + return this.equals((diffRecordStartstrEndstr_result)that); return false; } - public boolean equals(diffKeyRecordStart_result that) { + public boolean equals(diffRecordStartstrEndstr_result that) { if (that == null) return false; if (this == that) @@ -150903,6 +149981,15 @@ public boolean equals(diffKeyRecordStart_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -150926,11 +150013,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(diffKeyRecordStart_result other) { + public int compareTo(diffRecordStartstrEndstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -150977,6 +150068,16 @@ public int compareTo(diffKeyRecordStart_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -150997,7 +150098,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStart_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffRecordStartstrEndstr_result("); boolean first = true; sb.append("success:"); @@ -151031,6 +150132,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -151056,17 +150165,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStart_resultStandardScheme getScheme() { - return new diffKeyRecordStart_resultStandardScheme(); + public diffRecordStartstrEndstr_resultStandardScheme getScheme() { + return new diffRecordStartstrEndstr_resultStandardScheme(); } } - private static class diffKeyRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -151079,29 +150188,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map728 = iprot.readMapBegin(); - struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key729; - @org.apache.thrift.annotation.Nullable java.util.Set _val730; - for (int _i731 = 0; _i731 < _map728.size; ++_i731) + org.apache.thrift.protocol.TMap _map700 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map700.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key701; + @org.apache.thrift.annotation.Nullable java.util.Map> _val702; + for (int _i703 = 0; _i703 < _map700.size; ++_i703) { - _key729 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key701 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set732 = iprot.readSetBegin(); - _val730 = new java.util.LinkedHashSet(2*_set732.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem733; - for (int _i734 = 0; _i734 < _set732.size; ++_i734) + org.apache.thrift.protocol.TMap _map704 = iprot.readMapBegin(); + _val702 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key705; + @org.apache.thrift.annotation.Nullable java.util.Set _val706; + for (int _i707 = 0; _i707 < _map704.size; ++_i707) { - _elem733 = new com.cinchapi.concourse.thrift.TObject(); - _elem733.read(iprot); - _val730.add(_elem733); + _key705 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + { + org.apache.thrift.protocol.TSet _set708 = iprot.readSetBegin(); + _val706 = new java.util.LinkedHashSet(2*_set708.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem709; + for (int _i710 = 0; _i710 < _set708.size; ++_i710) + { + _elem709 = new com.cinchapi.concourse.thrift.TObject(); + _elem709.read(iprot); + _val706.add(_elem709); + } + iprot.readSetEnd(); + } + if (_key705 != null) + { + _val702.put(_key705, _val706); + } } - iprot.readSetEnd(); - } - if (_key729 != null) - { - struct.success.put(_key729, _val730); + iprot.readMapEnd(); } + struct.success.put(_key701, _val702); } iprot.readMapEnd(); } @@ -151130,13 +150251,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_ break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -151149,24 +150279,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter735 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter711 : struct.success.entrySet()) { - oprot.writeI32(_iter735.getKey().getValue()); + oprot.writeString(_iter711.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter735.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter736 : _iter735.getValue()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter711.getValue().size())); + for (java.util.Map.Entry> _iter712 : _iter711.getValue().entrySet()) { - _iter736.write(oprot); + oprot.writeI32(_iter712.getKey().getValue()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter712.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter713 : _iter712.getValue()) + { + _iter713.write(oprot); + } + oprot.writeSetEnd(); + } } - oprot.writeSetEnd(); + oprot.writeMapEnd(); } } oprot.writeMapEnd(); @@ -151188,23 +150326,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffKeyRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStart_resultTupleScheme getScheme() { - return new diffKeyRecordStart_resultTupleScheme(); + public diffRecordStartstrEndstr_resultTupleScheme getScheme() { + return new diffRecordStartstrEndstr_resultTupleScheme(); } } - private static class diffKeyRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -151219,18 +150362,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_ if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter737 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter714 : struct.success.entrySet()) { - oprot.writeI32(_iter737.getKey().getValue()); + oprot.writeString(_iter714.getKey()); { - oprot.writeI32(_iter737.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter738 : _iter737.getValue()) + oprot.writeI32(_iter714.getValue().size()); + for (java.util.Map.Entry> _iter715 : _iter714.getValue().entrySet()) { - _iter738.write(oprot); + oprot.writeI32(_iter715.getKey().getValue()); + { + oprot.writeI32(_iter715.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter716 : _iter715.getValue()) + { + _iter716.write(oprot); + } + } } } } @@ -151245,36 +150398,50 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_ if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map739 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key740; - @org.apache.thrift.annotation.Nullable java.util.Set _val741; - for (int _i742 = 0; _i742 < _map739.size; ++_i742) + org.apache.thrift.protocol.TMap _map717 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map717.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key718; + @org.apache.thrift.annotation.Nullable java.util.Map> _val719; + for (int _i720 = 0; _i720 < _map717.size; ++_i720) { - _key740 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key718 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set743 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val741 = new java.util.LinkedHashSet(2*_set743.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem744; - for (int _i745 = 0; _i745 < _set743.size; ++_i745) + org.apache.thrift.protocol.TMap _map721 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + _val719 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key722; + @org.apache.thrift.annotation.Nullable java.util.Set _val723; + for (int _i724 = 0; _i724 < _map721.size; ++_i724) { - _elem744 = new com.cinchapi.concourse.thrift.TObject(); - _elem744.read(iprot); - _val741.add(_elem744); + _key722 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + { + org.apache.thrift.protocol.TSet _set725 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val723 = new java.util.LinkedHashSet(2*_set725.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem726; + for (int _i727 = 0; _i727 < _set725.size; ++_i727) + { + _elem726 = new com.cinchapi.concourse.thrift.TObject(); + _elem726.read(iprot); + _val723.add(_elem726); + } + } + if (_key722 != null) + { + _val719.put(_key722, _val723); + } } } - if (_key740 != null) - { - struct.success.put(_key740, _val741); - } + struct.success.put(_key718, _val719); } } struct.setSuccessIsSet(true); @@ -151290,10 +150457,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_r struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -151302,22 +150474,22 @@ private static S scheme(org.apache. } } - public static class diffKeyRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartstr_args"); + public static class diffKeyRecordStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStart_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStart_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStart_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -151401,6 +150573,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -151410,7 +150583,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -151418,16 +150591,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStart_args.class, metaDataMap); } - public diffKeyRecordStartstr_args() { + public diffKeyRecordStart_args() { } - public diffKeyRecordStartstr_args( + public diffKeyRecordStart_args( java.lang.String key, long record, - java.lang.String start, + long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -151437,6 +150610,7 @@ public diffKeyRecordStartstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -151445,15 +150619,13 @@ public diffKeyRecordStartstr_args( /** * Performs a deep copy on other. */ - public diffKeyRecordStartstr_args(diffKeyRecordStartstr_args other) { + public diffKeyRecordStart_args(diffKeyRecordStart_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } + this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -151466,8 +150638,8 @@ public diffKeyRecordStartstr_args(diffKeyRecordStartstr_args other) { } @Override - public diffKeyRecordStartstr_args deepCopy() { - return new diffKeyRecordStartstr_args(this); + public diffKeyRecordStart_args deepCopy() { + return new diffKeyRecordStart_args(this); } @Override @@ -151475,7 +150647,8 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.start = null; + setStartIsSet(false); + this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -151486,7 +150659,7 @@ public java.lang.String getKey() { return this.key; } - public diffKeyRecordStartstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public diffKeyRecordStart_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -151510,7 +150683,7 @@ public long getRecord() { return this.record; } - public diffKeyRecordStartstr_args setRecord(long record) { + public diffKeyRecordStart_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -151529,29 +150702,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public diffKeyRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public diffKeyRecordStart_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -151559,7 +150730,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffKeyRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffKeyRecordStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -151584,7 +150755,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffKeyRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffKeyRecordStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -151609,7 +150780,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffKeyRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffKeyRecordStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -151652,7 +150823,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -151735,12 +150906,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyRecordStartstr_args) - return this.equals((diffKeyRecordStartstr_args)that); + if (that instanceof diffKeyRecordStart_args) + return this.equals((diffKeyRecordStart_args)that); return false; } - public boolean equals(diffKeyRecordStartstr_args that) { + public boolean equals(diffKeyRecordStart_args that) { if (that == null) return false; if (this == that) @@ -151764,12 +150935,12 @@ public boolean equals(diffKeyRecordStartstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } @@ -151813,9 +150984,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -151833,7 +151002,7 @@ public int hashCode() { } @Override - public int compareTo(diffKeyRecordStartstr_args other) { + public int compareTo(diffKeyRecordStart_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -151921,7 +151090,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStart_args("); boolean first = true; sb.append("key:"); @@ -151937,11 +151106,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -152000,17 +151165,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartstr_argsStandardScheme getScheme() { - return new diffKeyRecordStartstr_argsStandardScheme(); + public diffKeyRecordStart_argsStandardScheme getScheme() { + return new diffKeyRecordStart_argsStandardScheme(); } } - private static class diffKeyRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyRecordStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -152037,8 +151202,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -152082,7 +151247,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -152094,11 +151259,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -152120,17 +151283,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart } - private static class diffKeyRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartstr_argsTupleScheme getScheme() { - return new diffKeyRecordStartstr_argsTupleScheme(); + public diffKeyRecordStart_argsTupleScheme getScheme() { + return new diffKeyRecordStart_argsTupleScheme(); } } - private static class diffKeyRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyRecordStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -152159,7 +151322,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStarts oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -152173,7 +151336,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStarts } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -152185,7 +151348,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartst struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(3)) { @@ -152210,31 +151373,28 @@ private static S scheme(org.apache. } } - public static class diffKeyRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartstr_result"); + public static class diffKeyRecordStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStart_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStart_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStart_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -152258,8 +151418,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -152316,35 +151474,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStart_result.class, metaDataMap); } - public diffKeyRecordStartstr_result() { + public diffKeyRecordStart_result() { } - public diffKeyRecordStartstr_result( + public diffKeyRecordStart_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffKeyRecordStartstr_result(diffKeyRecordStartstr_result other) { + public diffKeyRecordStart_result(diffKeyRecordStart_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -152370,16 +151524,13 @@ public diffKeyRecordStartstr_result(diffKeyRecordStartstr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public diffKeyRecordStartstr_result deepCopy() { - return new diffKeyRecordStartstr_result(this); + public diffKeyRecordStart_result deepCopy() { + return new diffKeyRecordStart_result(this); } @Override @@ -152388,7 +151539,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -152407,7 +151557,7 @@ public java.util.Map> success) { + public diffKeyRecordStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -152432,7 +151582,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffKeyRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffKeyRecordStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -152457,7 +151607,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffKeyRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffKeyRecordStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -152478,11 +151628,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public diffKeyRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public diffKeyRecordStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -152502,31 +151652,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public diffKeyRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -152558,15 +151683,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -152589,9 +151706,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -152612,20 +151726,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyRecordStartstr_result) - return this.equals((diffKeyRecordStartstr_result)that); + if (that instanceof diffKeyRecordStart_result) + return this.equals((diffKeyRecordStart_result)that); return false; } - public boolean equals(diffKeyRecordStartstr_result that) { + public boolean equals(diffKeyRecordStart_result that) { if (that == null) return false; if (this == that) @@ -152667,15 +151779,6 @@ public boolean equals(diffKeyRecordStartstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -152699,15 +151802,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(diffKeyRecordStartstr_result other) { + public int compareTo(diffKeyRecordStart_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -152754,16 +151853,6 @@ public int compareTo(diffKeyRecordStartstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -152784,7 +151873,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStart_result("); boolean first = true; sb.append("success:"); @@ -152818,14 +151907,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -152851,17 +151932,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartstr_resultStandardScheme getScheme() { - return new diffKeyRecordStartstr_resultStandardScheme(); + public diffKeyRecordStart_resultStandardScheme getScheme() { + return new diffKeyRecordStart_resultStandardScheme(); } } - private static class diffKeyRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyRecordStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -152874,28 +151955,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map746 = iprot.readMapBegin(); + org.apache.thrift.protocol.TMap _map728 = iprot.readMapBegin(); struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key747; - @org.apache.thrift.annotation.Nullable java.util.Set _val748; - for (int _i749 = 0; _i749 < _map746.size; ++_i749) + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key729; + @org.apache.thrift.annotation.Nullable java.util.Set _val730; + for (int _i731 = 0; _i731 < _map728.size; ++_i731) { - _key747 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key729 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set750 = iprot.readSetBegin(); - _val748 = new java.util.LinkedHashSet(2*_set750.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem751; - for (int _i752 = 0; _i752 < _set750.size; ++_i752) + org.apache.thrift.protocol.TSet _set732 = iprot.readSetBegin(); + _val730 = new java.util.LinkedHashSet(2*_set732.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem733; + for (int _i734 = 0; _i734 < _set732.size; ++_i734) { - _elem751 = new com.cinchapi.concourse.thrift.TObject(); - _elem751.read(iprot); - _val748.add(_elem751); + _elem733 = new com.cinchapi.concourse.thrift.TObject(); + _elem733.read(iprot); + _val730.add(_elem733); } iprot.readSetEnd(); } - if (_key747 != null) + if (_key729 != null) { - struct.success.put(_key747, _val748); + struct.success.put(_key729, _val730); } } iprot.readMapEnd(); @@ -152925,22 +152006,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -152953,7 +152025,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -152961,14 +152033,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter753 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter735 : struct.success.entrySet()) { - oprot.writeI32(_iter753.getKey().getValue()); + oprot.writeI32(_iter735.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter753.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter754 : _iter753.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter735.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter736 : _iter735.getValue()) { - _iter754.write(oprot); + _iter736.write(oprot); } oprot.writeSetEnd(); } @@ -152992,28 +152064,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffKeyRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartstr_resultTupleScheme getScheme() { - return new diffKeyRecordStartstr_resultTupleScheme(); + public diffKeyRecordStart_resultTupleScheme getScheme() { + return new diffKeyRecordStart_resultTupleScheme(); } } - private static class diffKeyRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyRecordStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -153028,21 +152095,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStarts if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter755 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter737 : struct.success.entrySet()) { - oprot.writeI32(_iter755.getKey().getValue()); + oprot.writeI32(_iter737.getKey().getValue()); { - oprot.writeI32(_iter755.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter756 : _iter755.getValue()) + oprot.writeI32(_iter737.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter738 : _iter737.getValue()) { - _iter756.write(oprot); + _iter738.write(oprot); } } } @@ -153057,38 +152121,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStarts if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map757 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + org.apache.thrift.protocol.TMap _map739 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key758; - @org.apache.thrift.annotation.Nullable java.util.Set _val759; - for (int _i760 = 0; _i760 < _map757.size; ++_i760) + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key740; + @org.apache.thrift.annotation.Nullable java.util.Set _val741; + for (int _i742 = 0; _i742 < _map739.size; ++_i742) { - _key758 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key740 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set761 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val759 = new java.util.LinkedHashSet(2*_set761.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem762; - for (int _i763 = 0; _i763 < _set761.size; ++_i763) + org.apache.thrift.protocol.TSet _set743 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val741 = new java.util.LinkedHashSet(2*_set743.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem744; + for (int _i745 = 0; _i745 < _set743.size; ++_i745) { - _elem762 = new com.cinchapi.concourse.thrift.TObject(); - _elem762.read(iprot); - _val759.add(_elem762); + _elem744 = new com.cinchapi.concourse.thrift.TObject(); + _elem744.read(iprot); + _val741.add(_elem744); } } - if (_key758 != null) + if (_key740 != null) { - struct.success.put(_key758, _val759); + struct.success.put(_key740, _val741); } } } @@ -153105,15 +152166,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartst struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -153122,24 +152178,22 @@ private static S scheme(org.apache. } } - public static class diffKeyRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartEnd_args"); + public static class diffKeyRecordStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartstr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartEnd_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartEnd_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartstr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public long start; // required - public long tend; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -153149,10 +152203,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORD((short)2, "record"), START((short)3, "start"), - TEND((short)4, "tend"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -153174,13 +152227,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORD; case 3: // START return START; - case 4: // TEND - return TEND; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -153226,8 +152277,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __START_ISSET_ID = 1; - private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -153237,9 +152286,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -153247,17 +152294,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartEnd_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartstr_args.class, metaDataMap); } - public diffKeyRecordStartEnd_args() { + public diffKeyRecordStartstr_args() { } - public diffKeyRecordStartEnd_args( + public diffKeyRecordStartstr_args( java.lang.String key, long record, - long start, - long tend, + java.lang.String start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -153267,9 +152313,6 @@ public diffKeyRecordStartEnd_args( this.record = record; setRecordIsSet(true); this.start = start; - setStartIsSet(true); - this.tend = tend; - setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -153278,14 +152321,15 @@ public diffKeyRecordStartEnd_args( /** * Performs a deep copy on other. */ - public diffKeyRecordStartEnd_args(diffKeyRecordStartEnd_args other) { + public diffKeyRecordStartstr_args(diffKeyRecordStartstr_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - this.start = other.start; - this.tend = other.tend; + if (other.isSetStart()) { + this.start = other.start; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -153298,8 +152342,8 @@ public diffKeyRecordStartEnd_args(diffKeyRecordStartEnd_args other) { } @Override - public diffKeyRecordStartEnd_args deepCopy() { - return new diffKeyRecordStartEnd_args(this); + public diffKeyRecordStartstr_args deepCopy() { + return new diffKeyRecordStartstr_args(this); } @Override @@ -153307,10 +152351,7 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - setStartIsSet(false); - this.start = 0; - setTendIsSet(false); - this.tend = 0; + this.start = null; this.creds = null; this.transaction = null; this.environment = null; @@ -153321,7 +152362,7 @@ public java.lang.String getKey() { return this.key; } - public diffKeyRecordStartEnd_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public diffKeyRecordStartstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -153345,7 +152386,7 @@ public long getRecord() { return this.record; } - public diffKeyRecordStartEnd_args setRecord(long record) { + public diffKeyRecordStartstr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -153364,50 +152405,29 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getStart() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { return this.start; } - public diffKeyRecordStartEnd_args setStart(long start) { + public diffKeyRecordStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { this.start = start; - setStartIsSet(true); return this; } public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + this.start = null; } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + return this.start != null; } public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - - public long getTend() { - return this.tend; - } - - public diffKeyRecordStartEnd_args setTend(long tend) { - this.tend = tend; - setTendIsSet(true); - return this; - } - - public void unsetTend() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); - } - - /** Returns true if field tend is set (has been assigned a value) and false otherwise */ - public boolean isSetTend() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); - } - - public void setTendIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); + if (!value) { + this.start = null; + } } @org.apache.thrift.annotation.Nullable @@ -153415,7 +152435,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffKeyRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffKeyRecordStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -153440,7 +152460,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffKeyRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffKeyRecordStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -153465,7 +152485,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffKeyRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffKeyRecordStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -153508,15 +152528,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.Long)value); - } - break; - - case TEND: - if (value == null) { - unsetTend(); - } else { - setTend((java.lang.Long)value); + setStart((java.lang.String)value); } break; @@ -153560,9 +152572,6 @@ public java.lang.Object getFieldValue(_Fields field) { case START: return getStart(); - case TEND: - return getTend(); - case CREDS: return getCreds(); @@ -153590,8 +152599,6 @@ public boolean isSet(_Fields field) { return isSetRecord(); case START: return isSetStart(); - case TEND: - return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -153604,12 +152611,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyRecordStartEnd_args) - return this.equals((diffKeyRecordStartEnd_args)that); + if (that instanceof diffKeyRecordStartstr_args) + return this.equals((diffKeyRecordStartstr_args)that); return false; } - public boolean equals(diffKeyRecordStartEnd_args that) { + public boolean equals(diffKeyRecordStartstr_args that) { if (that == null) return false; if (this == that) @@ -153633,21 +152640,12 @@ public boolean equals(diffKeyRecordStartEnd_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (this.start != that.start) - return false; - } - - boolean this_present_tend = true; - boolean that_present_tend = true; - if (this_present_tend || that_present_tend) { - if (!(this_present_tend && that_present_tend)) - return false; - if (this.tend != that.tend) + if (!this.start.equals(that.start)) return false; } @@ -153691,9 +152689,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -153711,7 +152709,7 @@ public int hashCode() { } @Override - public int compareTo(diffKeyRecordStartEnd_args other) { + public int compareTo(diffKeyRecordStartstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -153748,16 +152746,6 @@ public int compareTo(diffKeyRecordStartEnd_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTend()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -153809,7 +152797,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartEnd_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartstr_args("); boolean first = true; sb.append("key:"); @@ -153825,11 +152813,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); - sb.append("tend:"); - sb.append(this.tend); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -153888,17 +152876,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartEnd_argsStandardScheme getScheme() { - return new diffKeyRecordStartEnd_argsStandardScheme(); + public diffKeyRecordStartstr_argsStandardScheme getScheme() { + return new diffKeyRecordStartstr_argsStandardScheme(); } } - private static class diffKeyRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyRecordStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -153925,22 +152913,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartE } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -153949,7 +152929,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartE org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -153958,7 +152938,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartE org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -153978,7 +152958,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartE } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -153990,12 +152970,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeI64(struct.tend); - oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -154017,17 +152996,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart } - private static class diffKeyRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartEnd_argsTupleScheme getScheme() { - return new diffKeyRecordStartEnd_argsTupleScheme(); + public diffKeyRecordStartstr_argsTupleScheme getScheme() { + return new diffKeyRecordStartstr_argsTupleScheme(); } } - private static class diffKeyRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyRecordStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -154039,19 +153018,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartE if (struct.isSetStart()) { optionals.set(2); } - if (struct.isSetTend()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -154059,10 +153035,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartE oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } - if (struct.isSetTend()) { - oprot.writeI64(struct.tend); + oprot.writeString(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -154076,9 +153049,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartE } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -154088,24 +153061,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEn struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readI64(); + struct.start = iprot.readString(); struct.setStartIsSet(true); } if (incoming.get(3)) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -154117,28 +153086,31 @@ private static S scheme(org.apache. } } - public static class diffKeyRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartEnd_result"); + public static class diffKeyRecordStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartEnd_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartEnd_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartstr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -154162,6 +153134,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -154218,31 +153192,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartEnd_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartstr_result.class, metaDataMap); } - public diffKeyRecordStartEnd_result() { + public diffKeyRecordStartstr_result() { } - public diffKeyRecordStartEnd_result( + public diffKeyRecordStartstr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffKeyRecordStartEnd_result(diffKeyRecordStartEnd_result other) { + public diffKeyRecordStartstr_result(diffKeyRecordStartstr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -154268,13 +153246,16 @@ public diffKeyRecordStartEnd_result(diffKeyRecordStartEnd_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public diffKeyRecordStartEnd_result deepCopy() { - return new diffKeyRecordStartEnd_result(this); + public diffKeyRecordStartstr_result deepCopy() { + return new diffKeyRecordStartstr_result(this); } @Override @@ -154283,6 +153264,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -154301,7 +153283,7 @@ public java.util.Map> success) { + public diffKeyRecordStartstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -154326,7 +153308,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffKeyRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffKeyRecordStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -154351,7 +153333,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffKeyRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffKeyRecordStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -154372,11 +153354,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public diffKeyRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public diffKeyRecordStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -154396,6 +153378,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public diffKeyRecordStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -154427,7 +153434,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -154450,6 +153465,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -154470,18 +153488,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyRecordStartEnd_result) - return this.equals((diffKeyRecordStartEnd_result)that); + if (that instanceof diffKeyRecordStartstr_result) + return this.equals((diffKeyRecordStartstr_result)that); return false; } - public boolean equals(diffKeyRecordStartEnd_result that) { + public boolean equals(diffKeyRecordStartstr_result that) { if (that == null) return false; if (this == that) @@ -154523,6 +153543,15 @@ public boolean equals(diffKeyRecordStartEnd_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -154546,11 +153575,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(diffKeyRecordStartEnd_result other) { + public int compareTo(diffKeyRecordStartstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -154597,6 +153630,16 @@ public int compareTo(diffKeyRecordStartEnd_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -154617,7 +153660,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartEnd_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartstr_result("); boolean first = true; sb.append("success:"); @@ -154651,6 +153694,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -154676,17 +153727,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartEnd_resultStandardScheme getScheme() { - return new diffKeyRecordStartEnd_resultStandardScheme(); + public diffKeyRecordStartstr_resultStandardScheme getScheme() { + return new diffKeyRecordStartstr_resultStandardScheme(); } } - private static class diffKeyRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyRecordStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -154699,28 +153750,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartE case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map764 = iprot.readMapBegin(); + org.apache.thrift.protocol.TMap _map746 = iprot.readMapBegin(); struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key765; - @org.apache.thrift.annotation.Nullable java.util.Set _val766; - for (int _i767 = 0; _i767 < _map764.size; ++_i767) + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key747; + @org.apache.thrift.annotation.Nullable java.util.Set _val748; + for (int _i749 = 0; _i749 < _map746.size; ++_i749) { - _key765 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key747 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set768 = iprot.readSetBegin(); - _val766 = new java.util.LinkedHashSet(2*_set768.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem769; - for (int _i770 = 0; _i770 < _set768.size; ++_i770) + org.apache.thrift.protocol.TSet _set750 = iprot.readSetBegin(); + _val748 = new java.util.LinkedHashSet(2*_set750.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem751; + for (int _i752 = 0; _i752 < _set750.size; ++_i752) { - _elem769 = new com.cinchapi.concourse.thrift.TObject(); - _elem769.read(iprot); - _val766.add(_elem769); + _elem751 = new com.cinchapi.concourse.thrift.TObject(); + _elem751.read(iprot); + _val748.add(_elem751); } iprot.readSetEnd(); } - if (_key765 != null) + if (_key747 != null) { - struct.success.put(_key765, _val766); + struct.success.put(_key747, _val748); } } iprot.readMapEnd(); @@ -154750,13 +153801,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartE break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -154769,7 +153829,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartE } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -154777,14 +153837,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter771 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter753 : struct.success.entrySet()) { - oprot.writeI32(_iter771.getKey().getValue()); + oprot.writeI32(_iter753.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter771.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter772 : _iter771.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter753.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter754 : _iter753.getValue()) { - _iter772.write(oprot); + _iter754.write(oprot); } oprot.writeSetEnd(); } @@ -154808,23 +153868,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffKeyRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartEnd_resultTupleScheme getScheme() { - return new diffKeyRecordStartEnd_resultTupleScheme(); + public diffKeyRecordStartstr_resultTupleScheme getScheme() { + return new diffKeyRecordStartstr_resultTupleScheme(); } } - private static class diffKeyRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyRecordStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -154839,18 +153904,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartE if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter773 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter755 : struct.success.entrySet()) { - oprot.writeI32(_iter773.getKey().getValue()); + oprot.writeI32(_iter755.getKey().getValue()); { - oprot.writeI32(_iter773.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter774 : _iter773.getValue()) + oprot.writeI32(_iter755.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter756 : _iter755.getValue()) { - _iter774.write(oprot); + _iter756.write(oprot); } } } @@ -154865,35 +153933,38 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartE if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map775 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + org.apache.thrift.protocol.TMap _map757 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key776; - @org.apache.thrift.annotation.Nullable java.util.Set _val777; - for (int _i778 = 0; _i778 < _map775.size; ++_i778) + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key758; + @org.apache.thrift.annotation.Nullable java.util.Set _val759; + for (int _i760 = 0; _i760 < _map757.size; ++_i760) { - _key776 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key758 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set779 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val777 = new java.util.LinkedHashSet(2*_set779.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem780; - for (int _i781 = 0; _i781 < _set779.size; ++_i781) + org.apache.thrift.protocol.TSet _set761 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val759 = new java.util.LinkedHashSet(2*_set761.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem762; + for (int _i763 = 0; _i763 < _set761.size; ++_i763) { - _elem780 = new com.cinchapi.concourse.thrift.TObject(); - _elem780.read(iprot); - _val777.add(_elem780); + _elem762 = new com.cinchapi.concourse.thrift.TObject(); + _elem762.read(iprot); + _val759.add(_elem762); } } - if (_key776 != null) + if (_key758 != null) { - struct.success.put(_key776, _val777); + struct.success.put(_key758, _val759); } } } @@ -154910,10 +153981,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEn struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -154922,24 +153998,24 @@ private static S scheme(org.apache. } } - public static class diffKeyRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartstrEndstr_args"); + public static class diffKeyRecordStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartEnd_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartstrEndstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartstrEndstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartEnd_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartEnd_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required - public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required + public long start; // required + public long tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -155026,6 +154102,8 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __START_ISSET_ID = 1; + private static final int __TEND_ISSET_ID = 2; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -155035,9 +154113,9 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -155045,17 +154123,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartstrEndstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartEnd_args.class, metaDataMap); } - public diffKeyRecordStartstrEndstr_args() { + public diffKeyRecordStartEnd_args() { } - public diffKeyRecordStartstrEndstr_args( + public diffKeyRecordStartEnd_args( java.lang.String key, long record, - java.lang.String start, - java.lang.String tend, + long start, + long tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -155065,7 +154143,9 @@ public diffKeyRecordStartstrEndstr_args( this.record = record; setRecordIsSet(true); this.start = start; + setStartIsSet(true); this.tend = tend; + setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -155074,18 +154154,14 @@ public diffKeyRecordStartstrEndstr_args( /** * Performs a deep copy on other. */ - public diffKeyRecordStartstrEndstr_args(diffKeyRecordStartstrEndstr_args other) { + public diffKeyRecordStartEnd_args(diffKeyRecordStartEnd_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetStart()) { - this.start = other.start; - } - if (other.isSetTend()) { - this.tend = other.tend; - } + this.start = other.start; + this.tend = other.tend; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -155098,8 +154174,8 @@ public diffKeyRecordStartstrEndstr_args(diffKeyRecordStartstrEndstr_args other) } @Override - public diffKeyRecordStartstrEndstr_args deepCopy() { - return new diffKeyRecordStartstrEndstr_args(this); + public diffKeyRecordStartEnd_args deepCopy() { + return new diffKeyRecordStartEnd_args(this); } @Override @@ -155107,8 +154183,10 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.start = null; - this.tend = null; + setStartIsSet(false); + this.start = 0; + setTendIsSet(false); + this.tend = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -155119,7 +154197,7 @@ public java.lang.String getKey() { return this.key; } - public diffKeyRecordStartstrEndstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public diffKeyRecordStartEnd_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -155143,7 +154221,7 @@ public long getRecord() { return this.record; } - public diffKeyRecordStartstrEndstr_args setRecord(long record) { + public diffKeyRecordStartEnd_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -155162,54 +154240,50 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public diffKeyRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public diffKeyRecordStartEnd_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTend() { + public long getTend() { return this.tend; } - public diffKeyRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + public diffKeyRecordStartEnd_args setTend(long tend) { this.tend = tend; + setTendIsSet(true); return this; } public void unsetTend() { - this.tend = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); } /** Returns true if field tend is set (has been assigned a value) and false otherwise */ public boolean isSetTend() { - return this.tend != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); } public void setTendIsSet(boolean value) { - if (!value) { - this.tend = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -155217,7 +154291,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffKeyRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffKeyRecordStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -155242,7 +154316,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffKeyRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffKeyRecordStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -155267,7 +154341,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffKeyRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffKeyRecordStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -155310,7 +154384,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -155318,7 +154392,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTend(); } else { - setTend((java.lang.String)value); + setTend((java.lang.Long)value); } break; @@ -155406,12 +154480,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyRecordStartstrEndstr_args) - return this.equals((diffKeyRecordStartstrEndstr_args)that); + if (that instanceof diffKeyRecordStartEnd_args) + return this.equals((diffKeyRecordStartEnd_args)that); return false; } - public boolean equals(diffKeyRecordStartstrEndstr_args that) { + public boolean equals(diffKeyRecordStartEnd_args that) { if (that == null) return false; if (this == that) @@ -155435,21 +154509,21 @@ public boolean equals(diffKeyRecordStartstrEndstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } - boolean this_present_tend = true && this.isSetTend(); - boolean that_present_tend = true && that.isSetTend(); + boolean this_present_tend = true; + boolean that_present_tend = true; if (this_present_tend || that_present_tend) { if (!(this_present_tend && that_present_tend)) return false; - if (!this.tend.equals(that.tend)) + if (this.tend != that.tend) return false; } @@ -155493,13 +154567,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); - if (isSetTend()) - hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -155517,7 +154587,7 @@ public int hashCode() { } @Override - public int compareTo(diffKeyRecordStartstrEndstr_args other) { + public int compareTo(diffKeyRecordStartEnd_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -155615,7 +154685,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartstrEndstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartEnd_args("); boolean first = true; sb.append("key:"); @@ -155631,19 +154701,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("tend:"); - if (this.tend == null) { - sb.append("null"); - } else { - sb.append(this.tend); - } + sb.append(this.tend); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -155702,17 +154764,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartstrEndstr_argsStandardScheme getScheme() { - return new diffKeyRecordStartstrEndstr_argsStandardScheme(); + public diffKeyRecordStartEnd_argsStandardScheme getScheme() { + return new diffKeyRecordStartEnd_argsStandardScheme(); } } - private static class diffKeyRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyRecordStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -155739,16 +154801,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts } break; case 3: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 4: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tend = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -155792,7 +154854,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -155804,16 +154866,12 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } - if (struct.tend != null) { - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeString(struct.tend); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeI64(struct.tend); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -155835,17 +154893,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart } - private static class diffKeyRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartstrEndstr_argsTupleScheme getScheme() { - return new diffKeyRecordStartstrEndstr_argsTupleScheme(); + public diffKeyRecordStartEnd_argsTupleScheme getScheme() { + return new diffKeyRecordStartEnd_argsTupleScheme(); } } - private static class diffKeyRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyRecordStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -155877,10 +154935,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStarts oprot.writeI64(struct.record); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetTend()) { - oprot.writeString(struct.tend); + oprot.writeI64(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -155894,7 +154952,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStarts } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -155906,11 +154964,11 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartst struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(3)) { - struct.tend = iprot.readString(); + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } if (incoming.get(4)) { @@ -155935,31 +154993,28 @@ private static S scheme(org.apache. } } - public static class diffKeyRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartstrEndstr_result"); + public static class diffKeyRecordStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartEnd_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartstrEndstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartstrEndstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartEnd_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartEnd_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -155983,8 +155038,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -156041,35 +155094,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartstrEndstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartEnd_result.class, metaDataMap); } - public diffKeyRecordStartstrEndstr_result() { + public diffKeyRecordStartEnd_result() { } - public diffKeyRecordStartstrEndstr_result( + public diffKeyRecordStartEnd_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffKeyRecordStartstrEndstr_result(diffKeyRecordStartstrEndstr_result other) { + public diffKeyRecordStartEnd_result(diffKeyRecordStartEnd_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -156095,16 +155144,13 @@ public diffKeyRecordStartstrEndstr_result(diffKeyRecordStartstrEndstr_result oth this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public diffKeyRecordStartstrEndstr_result deepCopy() { - return new diffKeyRecordStartstrEndstr_result(this); + public diffKeyRecordStartEnd_result deepCopy() { + return new diffKeyRecordStartEnd_result(this); } @Override @@ -156113,7 +155159,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -156132,7 +155177,7 @@ public java.util.Map> success) { + public diffKeyRecordStartEnd_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -156157,7 +155202,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffKeyRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffKeyRecordStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -156182,7 +155227,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffKeyRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffKeyRecordStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -156203,11 +155248,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public diffKeyRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public diffKeyRecordStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -156227,31 +155272,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public diffKeyRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -156283,15 +155303,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -156314,9 +155326,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -156337,20 +155346,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyRecordStartstrEndstr_result) - return this.equals((diffKeyRecordStartstrEndstr_result)that); + if (that instanceof diffKeyRecordStartEnd_result) + return this.equals((diffKeyRecordStartEnd_result)that); return false; } - public boolean equals(diffKeyRecordStartstrEndstr_result that) { + public boolean equals(diffKeyRecordStartEnd_result that) { if (that == null) return false; if (this == that) @@ -156392,15 +155399,6 @@ public boolean equals(diffKeyRecordStartstrEndstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -156424,15 +155422,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(diffKeyRecordStartstrEndstr_result other) { + public int compareTo(diffKeyRecordStartEnd_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -156479,16 +155473,6 @@ public int compareTo(diffKeyRecordStartstrEndstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -156509,7 +155493,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartstrEndstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartEnd_result("); boolean first = true; sb.append("success:"); @@ -156543,14 +155527,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -156576,17 +155552,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartstrEndstr_resultStandardScheme getScheme() { - return new diffKeyRecordStartstrEndstr_resultStandardScheme(); + public diffKeyRecordStartEnd_resultStandardScheme getScheme() { + return new diffKeyRecordStartEnd_resultStandardScheme(); } } - private static class diffKeyRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyRecordStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -156599,28 +155575,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map782 = iprot.readMapBegin(); + org.apache.thrift.protocol.TMap _map764 = iprot.readMapBegin(); struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key783; - @org.apache.thrift.annotation.Nullable java.util.Set _val784; - for (int _i785 = 0; _i785 < _map782.size; ++_i785) + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key765; + @org.apache.thrift.annotation.Nullable java.util.Set _val766; + for (int _i767 = 0; _i767 < _map764.size; ++_i767) { - _key783 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key765 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set786 = iprot.readSetBegin(); - _val784 = new java.util.LinkedHashSet(2*_set786.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem787; - for (int _i788 = 0; _i788 < _set786.size; ++_i788) + org.apache.thrift.protocol.TSet _set768 = iprot.readSetBegin(); + _val766 = new java.util.LinkedHashSet(2*_set768.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem769; + for (int _i770 = 0; _i770 < _set768.size; ++_i770) { - _elem787 = new com.cinchapi.concourse.thrift.TObject(); - _elem787.read(iprot); - _val784.add(_elem787); + _elem769 = new com.cinchapi.concourse.thrift.TObject(); + _elem769.read(iprot); + _val766.add(_elem769); } iprot.readSetEnd(); } - if (_key783 != null) + if (_key765 != null) { - struct.success.put(_key783, _val784); + struct.success.put(_key765, _val766); } } iprot.readMapEnd(); @@ -156650,22 +155626,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -156678,7 +155645,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStarts } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -156686,14 +155653,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter789 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter771 : struct.success.entrySet()) { - oprot.writeI32(_iter789.getKey().getValue()); + oprot.writeI32(_iter771.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter789.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter790 : _iter789.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter771.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter772 : _iter771.getValue()) { - _iter790.write(oprot); + _iter772.write(oprot); } oprot.writeSetEnd(); } @@ -156717,28 +155684,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStart struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffKeyRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyRecordStartstrEndstr_resultTupleScheme getScheme() { - return new diffKeyRecordStartstrEndstr_resultTupleScheme(); + public diffKeyRecordStartEnd_resultTupleScheme getScheme() { + return new diffKeyRecordStartEnd_resultTupleScheme(); } } - private static class diffKeyRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyRecordStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -156753,21 +155715,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStarts if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter791 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter773 : struct.success.entrySet()) { - oprot.writeI32(_iter791.getKey().getValue()); + oprot.writeI32(_iter773.getKey().getValue()); { - oprot.writeI32(_iter791.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter792 : _iter791.getValue()) + oprot.writeI32(_iter773.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter774 : _iter773.getValue()) { - _iter792.write(oprot); + _iter774.write(oprot); } } } @@ -156782,38 +155741,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStarts if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map793 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + org.apache.thrift.protocol.TMap _map775 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key794; - @org.apache.thrift.annotation.Nullable java.util.Set _val795; - for (int _i796 = 0; _i796 < _map793.size; ++_i796) + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key776; + @org.apache.thrift.annotation.Nullable java.util.Set _val777; + for (int _i778 = 0; _i778 < _map775.size; ++_i778) { - _key794 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key776 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set797 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val795 = new java.util.LinkedHashSet(2*_set797.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem798; - for (int _i799 = 0; _i799 < _set797.size; ++_i799) + org.apache.thrift.protocol.TSet _set779 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val777 = new java.util.LinkedHashSet(2*_set779.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem780; + for (int _i781 = 0; _i781 < _set779.size; ++_i781) { - _elem798 = new com.cinchapi.concourse.thrift.TObject(); - _elem798.read(iprot); - _val795.add(_elem798); + _elem780 = new com.cinchapi.concourse.thrift.TObject(); + _elem780.read(iprot); + _val777.add(_elem780); } } - if (_key794 != null) + if (_key776 != null) { - struct.success.put(_key794, _val795); + struct.success.put(_key776, _val777); } } } @@ -156830,15 +155786,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartst struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -156847,20 +155798,24 @@ private static S scheme(org.apache. } } - public static class diffKeyStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStart_args"); + public static class diffKeyRecordStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartstrEndstr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStart_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStart_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartstrEndstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartstrEndstr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long start; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -156868,10 +155823,12 @@ public static class diffKeyStart_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -156889,13 +155846,17 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEY return KEY; - case 2: // START + case 2: // RECORD + return RECORD; + case 3: // START return START; - case 3: // CREDS + case 4: // TEND + return TEND; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -156940,15 +155901,19 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __START_ISSET_ID = 0; + private static final int __RECORD_ISSET_ID = 0; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -156956,23 +155921,27 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStart_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartstrEndstr_args.class, metaDataMap); } - public diffKeyStart_args() { + public diffKeyRecordStartstrEndstr_args() { } - public diffKeyStart_args( + public diffKeyRecordStartstrEndstr_args( java.lang.String key, - long start, + long record, + java.lang.String start, + java.lang.String tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.key = key; + this.record = record; + setRecordIsSet(true); this.start = start; - setStartIsSet(true); + this.tend = tend; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -156981,12 +155950,18 @@ public diffKeyStart_args( /** * Performs a deep copy on other. */ - public diffKeyStart_args(diffKeyStart_args other) { + public diffKeyRecordStartstrEndstr_args(diffKeyRecordStartstrEndstr_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } - this.start = other.start; + this.record = other.record; + if (other.isSetStart()) { + this.start = other.start; + } + if (other.isSetTend()) { + this.tend = other.tend; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -156999,15 +155974,17 @@ public diffKeyStart_args(diffKeyStart_args other) { } @Override - public diffKeyStart_args deepCopy() { - return new diffKeyStart_args(this); + public diffKeyRecordStartstrEndstr_args deepCopy() { + return new diffKeyRecordStartstrEndstr_args(this); } @Override public void clear() { this.key = null; - setStartIsSet(false); - this.start = 0; + setRecordIsSet(false); + this.record = 0; + this.start = null; + this.tend = null; this.creds = null; this.transaction = null; this.environment = null; @@ -157018,7 +155995,7 @@ public java.lang.String getKey() { return this.key; } - public diffKeyStart_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public diffKeyRecordStartstrEndstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -157038,27 +156015,77 @@ public void setKeyIsSet(boolean value) { } } - public long getStart() { + public long getRecord() { + return this.record; + } + + public diffKeyRecordStartstrEndstr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { return this.start; } - public diffKeyStart_args setStart(long start) { + public diffKeyRecordStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { this.start = start; - setStartIsSet(true); return this; } public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + this.start = null; } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + return this.start != null; } public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); + if (!value) { + this.start = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTend() { + return this.tend; + } + + public diffKeyRecordStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + this.tend = tend; + return this; + } + + public void unsetTend() { + this.tend = null; + } + + /** Returns true if field tend is set (has been assigned a value) and false otherwise */ + public boolean isSetTend() { + return this.tend != null; + } + + public void setTendIsSet(boolean value) { + if (!value) { + this.tend = null; + } } @org.apache.thrift.annotation.Nullable @@ -157066,7 +156093,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffKeyStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffKeyRecordStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -157091,7 +156118,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffKeyStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffKeyRecordStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -157116,7 +156143,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffKeyStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffKeyRecordStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -157147,11 +156174,27 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + case START: if (value == null) { unsetStart(); } else { - setStart((java.lang.Long)value); + setStart((java.lang.String)value); + } + break; + + case TEND: + if (value == null) { + unsetTend(); + } else { + setTend((java.lang.String)value); } break; @@ -157189,9 +156232,15 @@ public java.lang.Object getFieldValue(_Fields field) { case KEY: return getKey(); + case RECORD: + return getRecord(); + case START: return getStart(); + case TEND: + return getTend(); + case CREDS: return getCreds(); @@ -157215,8 +156264,12 @@ public boolean isSet(_Fields field) { switch (field) { case KEY: return isSetKey(); + case RECORD: + return isSetRecord(); case START: return isSetStart(); + case TEND: + return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -157229,12 +156282,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyStart_args) - return this.equals((diffKeyStart_args)that); + if (that instanceof diffKeyRecordStartstrEndstr_args) + return this.equals((diffKeyRecordStartstrEndstr_args)that); return false; } - public boolean equals(diffKeyStart_args that) { + public boolean equals(diffKeyRecordStartstrEndstr_args that) { if (that == null) return false; if (this == that) @@ -157249,12 +156302,30 @@ public boolean equals(diffKeyStart_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (this.start != that.start) + if (!this.start.equals(that.start)) + return false; + } + + boolean this_present_tend = true && this.isSetTend(); + boolean that_present_tend = true && that.isSetTend(); + if (this_present_tend || that_present_tend) { + if (!(this_present_tend && that_present_tend)) + return false; + if (!this.tend.equals(that.tend)) return false; } @@ -157296,7 +156367,15 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); + if (isSetTend()) + hashCode = hashCode * 8191 + tend.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -157314,7 +156393,7 @@ public int hashCode() { } @Override - public int compareTo(diffKeyStart_args other) { + public int compareTo(diffKeyRecordStartstrEndstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -157331,6 +156410,16 @@ public int compareTo(diffKeyStart_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); if (lastComparison != 0) { return lastComparison; @@ -157341,6 +156430,16 @@ public int compareTo(diffKeyStart_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTend()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -157392,7 +156491,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStart_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartstrEndstr_args("); boolean first = true; sb.append("key:"); @@ -157403,8 +156502,24 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); sb.append("start:"); - sb.append(this.start); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } + first = false; + if (!first) sb.append(", "); + sb.append("tend:"); + if (this.tend == null) { + sb.append("null"); + } else { + sb.append(this.tend); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -157463,17 +156578,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStart_argsStandardScheme getScheme() { - return new diffKeyStart_argsStandardScheme(); + public diffKeyRecordStartstrEndstr_argsStandardScheme getScheme() { + return new diffKeyRecordStartstrEndstr_argsStandardScheme(); } } - private static class diffKeyStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyRecordStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -157491,15 +156606,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // START + case 2: // RECORD if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // START + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 4: // TEND + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -157508,7 +156639,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -157517,7 +156648,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -157537,7 +156668,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -157546,9 +156677,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStart_args oprot.writeString(struct.key); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } + if (struct.tend != null) { + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeString(struct.tend); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -157570,40 +156711,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStart_args } - private static class diffKeyStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStart_argsTupleScheme getScheme() { - return new diffKeyStart_argsTupleScheme(); + public diffKeyRecordStartstrEndstr_argsTupleScheme getScheme() { + return new diffKeyRecordStartstrEndstr_argsTupleScheme(); } } - private static class diffKeyStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyRecordStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetStart()) { + if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetStart()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetTend()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } if (struct.isSetStart()) { - oprot.writeI64(struct.start); + oprot.writeString(struct.start); + } + if (struct.isSetTend()) { + oprot.writeString(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -157617,28 +156770,36 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readI64(); - struct.setStartIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(2)) { + struct.start = iprot.readString(); + struct.setStartIsSet(true); + } + if (incoming.get(3)) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -157650,28 +156811,31 @@ private static S scheme(org.apache. } } - public static class diffKeyStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStart_result"); + public static class diffKeyRecordStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyRecordStartstrEndstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStart_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStart_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyRecordStartstrEndstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyRecordStartstrEndstr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -157695,6 +156859,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -157743,61 +156909,55 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, com.cinchapi.concourse.thrift.Diff.class), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); + new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, com.cinchapi.concourse.thrift.Diff.class), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStart_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyRecordStartstrEndstr_result.class, metaDataMap); } - public diffKeyStart_result() { + public diffKeyRecordStartstrEndstr_result() { } - public diffKeyStart_result( - java.util.Map>> success, + public diffKeyRecordStartstrEndstr_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffKeyStart_result(diffKeyStart_result other) { + public diffKeyRecordStartstrEndstr_result(diffKeyRecordStartstrEndstr_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - com.cinchapi.concourse.thrift.TObject other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - com.cinchapi.concourse.thrift.TObject __this__success_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_key); - - java.util.Map> __this__success_copy_value = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - com.cinchapi.concourse.thrift.Diff other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + java.util.Map> __this__success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { - com.cinchapi.concourse.thrift.Diff __this__success_copy_value_copy_key = other_element_value_element_key; + com.cinchapi.concourse.thrift.Diff other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + com.cinchapi.concourse.thrift.Diff __this__success_copy_key = other_element_key; - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { + __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -157811,13 +156971,16 @@ public diffKeyStart_result(diffKeyStart_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public diffKeyStart_result deepCopy() { - return new diffKeyStart_result(this); + public diffKeyRecordStartstrEndstr_result deepCopy() { + return new diffKeyRecordStartstrEndstr_result(this); } @Override @@ -157826,25 +156989,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(com.cinchapi.concourse.thrift.TObject key, java.util.Map> val) { + public void putToSuccess(com.cinchapi.concourse.thrift.Diff key, java.util.Set val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public diffKeyStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public diffKeyRecordStartstrEndstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -157869,7 +157033,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffKeyStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffKeyRecordStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -157894,7 +157058,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffKeyStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffKeyRecordStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -157915,11 +157079,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public diffKeyStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public diffKeyRecordStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -157939,6 +157103,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public diffKeyRecordStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -157946,7 +157135,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.Map>)value); } break; @@ -157970,7 +157159,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -157993,6 +157190,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -158013,18 +157213,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyStart_result) - return this.equals((diffKeyStart_result)that); + if (that instanceof diffKeyRecordStartstrEndstr_result) + return this.equals((diffKeyRecordStartstrEndstr_result)that); return false; } - public boolean equals(diffKeyStart_result that) { + public boolean equals(diffKeyRecordStartstrEndstr_result that) { if (that == null) return false; if (this == that) @@ -158066,6 +157268,15 @@ public boolean equals(diffKeyStart_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -158089,11 +157300,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(diffKeyStart_result other) { + public int compareTo(diffKeyRecordStartstrEndstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -158140,6 +157355,16 @@ public int compareTo(diffKeyStart_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -158160,7 +157385,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStart_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyRecordStartstrEndstr_result("); boolean first = true; sb.append("success:"); @@ -158194,6 +157419,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -158219,17 +157452,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStart_resultStandardScheme getScheme() { - return new diffKeyStart_resultStandardScheme(); + public diffKeyRecordStartstrEndstr_resultStandardScheme getScheme() { + return new diffKeyRecordStartstrEndstr_resultStandardScheme(); } } - private static class diffKeyStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyRecordStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -158242,41 +157475,29 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map800 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map800.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key801; - @org.apache.thrift.annotation.Nullable java.util.Map> _val802; - for (int _i803 = 0; _i803 < _map800.size; ++_i803) + org.apache.thrift.protocol.TMap _map782 = iprot.readMapBegin(); + struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key783; + @org.apache.thrift.annotation.Nullable java.util.Set _val784; + for (int _i785 = 0; _i785 < _map782.size; ++_i785) { - _key801 = new com.cinchapi.concourse.thrift.TObject(); - _key801.read(iprot); + _key783 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TMap _map804 = iprot.readMapBegin(); - _val802 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key805; - @org.apache.thrift.annotation.Nullable java.util.Set _val806; - for (int _i807 = 0; _i807 < _map804.size; ++_i807) + org.apache.thrift.protocol.TSet _set786 = iprot.readSetBegin(); + _val784 = new java.util.LinkedHashSet(2*_set786.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem787; + for (int _i788 = 0; _i788 < _set786.size; ++_i788) { - _key805 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); - { - org.apache.thrift.protocol.TSet _set808 = iprot.readSetBegin(); - _val806 = new java.util.LinkedHashSet(2*_set808.size); - long _elem809; - for (int _i810 = 0; _i810 < _set808.size; ++_i810) - { - _elem809 = iprot.readI64(); - _val806.add(_elem809); - } - iprot.readSetEnd(); - } - if (_key805 != null) - { - _val802.put(_key805, _val806); - } + _elem787 = new com.cinchapi.concourse.thrift.TObject(); + _elem787.read(iprot); + _val784.add(_elem787); } - iprot.readMapEnd(); + iprot.readSetEnd(); + } + if (_key783 != null) + { + struct.success.put(_key783, _val784); } - struct.success.put(_key801, _val802); } iprot.readMapEnd(); } @@ -158305,13 +157526,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -158324,32 +157554,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter811 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter789 : struct.success.entrySet()) { - _iter811.getKey().write(oprot); + oprot.writeI32(_iter789.getKey().getValue()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter811.getValue().size())); - for (java.util.Map.Entry> _iter812 : _iter811.getValue().entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter789.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter790 : _iter789.getValue()) { - oprot.writeI32(_iter812.getKey().getValue()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter812.getValue().size())); - for (long _iter813 : _iter812.getValue()) - { - oprot.writeI64(_iter813); - } - oprot.writeSetEnd(); - } + _iter790.write(oprot); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } } oprot.writeMapEnd(); @@ -158371,23 +157593,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStart_resul struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffKeyStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyRecordStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStart_resultTupleScheme getScheme() { - return new diffKeyStart_resultTupleScheme(); + public diffKeyRecordStartstrEndstr_resultTupleScheme getScheme() { + return new diffKeyRecordStartstrEndstr_resultTupleScheme(); } } - private static class diffKeyStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyRecordStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -158402,25 +157629,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_result if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter814 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter791 : struct.success.entrySet()) { - _iter814.getKey().write(oprot); + oprot.writeI32(_iter791.getKey().getValue()); { - oprot.writeI32(_iter814.getValue().size()); - for (java.util.Map.Entry> _iter815 : _iter814.getValue().entrySet()) + oprot.writeI32(_iter791.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter792 : _iter791.getValue()) { - oprot.writeI32(_iter815.getKey().getValue()); - { - oprot.writeI32(_iter815.getValue().size()); - for (long _iter816 : _iter815.getValue()) - { - oprot.writeI64(_iter816); - } - } + _iter792.write(oprot); } } } @@ -158435,47 +157658,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_result if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyRecordStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map817 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map817.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key818; - @org.apache.thrift.annotation.Nullable java.util.Map> _val819; - for (int _i820 = 0; _i820 < _map817.size; ++_i820) + org.apache.thrift.protocol.TMap _map793 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key794; + @org.apache.thrift.annotation.Nullable java.util.Set _val795; + for (int _i796 = 0; _i796 < _map793.size; ++_i796) { - _key818 = new com.cinchapi.concourse.thrift.TObject(); - _key818.read(iprot); + _key794 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TMap _map821 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - _val819 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key822; - @org.apache.thrift.annotation.Nullable java.util.Set _val823; - for (int _i824 = 0; _i824 < _map821.size; ++_i824) + org.apache.thrift.protocol.TSet _set797 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val795 = new java.util.LinkedHashSet(2*_set797.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem798; + for (int _i799 = 0; _i799 < _set797.size; ++_i799) { - _key822 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); - { - org.apache.thrift.protocol.TSet _set825 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val823 = new java.util.LinkedHashSet(2*_set825.size); - long _elem826; - for (int _i827 = 0; _i827 < _set825.size; ++_i827) - { - _elem826 = iprot.readI64(); - _val823.add(_elem826); - } - } - if (_key822 != null) - { - _val819.put(_key822, _val823); - } + _elem798 = new com.cinchapi.concourse.thrift.TObject(); + _elem798.read(iprot); + _val795.add(_elem798); } } - struct.success.put(_key818, _val819); + if (_key794 != null) + { + struct.success.put(_key794, _val795); + } } } struct.setSuccessIsSet(true); @@ -158491,10 +157706,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_result struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -158503,20 +157723,20 @@ private static S scheme(org.apache. } } - public static class diffKeyStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartstr_args"); + public static class diffKeyStart_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStart_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStart_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStart_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public long start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -158596,13 +157816,15 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __START_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -158610,15 +157832,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStart_args.class, metaDataMap); } - public diffKeyStartstr_args() { + public diffKeyStart_args() { } - public diffKeyStartstr_args( + public diffKeyStart_args( java.lang.String key, - java.lang.String start, + long start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -158626,6 +157848,7 @@ public diffKeyStartstr_args( this(); this.key = key; this.start = start; + setStartIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -158634,13 +157857,12 @@ public diffKeyStartstr_args( /** * Performs a deep copy on other. */ - public diffKeyStartstr_args(diffKeyStartstr_args other) { + public diffKeyStart_args(diffKeyStart_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } - if (other.isSetStart()) { - this.start = other.start; - } + this.start = other.start; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -158653,14 +157875,15 @@ public diffKeyStartstr_args(diffKeyStartstr_args other) { } @Override - public diffKeyStartstr_args deepCopy() { - return new diffKeyStartstr_args(this); + public diffKeyStart_args deepCopy() { + return new diffKeyStart_args(this); } @Override public void clear() { this.key = null; - this.start = null; + setStartIsSet(false); + this.start = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -158671,7 +157894,7 @@ public java.lang.String getKey() { return this.key; } - public diffKeyStartstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public diffKeyStart_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -158691,29 +157914,27 @@ public void setKeyIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public diffKeyStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public diffKeyStart_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -158721,7 +157942,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffKeyStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffKeyStart_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -158746,7 +157967,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffKeyStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffKeyStart_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -158771,7 +157992,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffKeyStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffKeyStart_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -158806,7 +158027,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -158884,12 +158105,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyStartstr_args) - return this.equals((diffKeyStartstr_args)that); + if (that instanceof diffKeyStart_args) + return this.equals((diffKeyStart_args)that); return false; } - public boolean equals(diffKeyStartstr_args that) { + public boolean equals(diffKeyStart_args that) { if (that == null) return false; if (this == that) @@ -158904,12 +158125,12 @@ public boolean equals(diffKeyStartstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } @@ -158951,9 +158172,7 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -158971,7 +158190,7 @@ public int hashCode() { } @Override - public int compareTo(diffKeyStartstr_args other) { + public int compareTo(diffKeyStart_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -159049,7 +158268,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStart_args("); boolean first = true; sb.append("key:"); @@ -159061,11 +158280,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -159116,23 +158331,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 diffKeyStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStart_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartstr_argsStandardScheme getScheme() { - return new diffKeyStartstr_argsStandardScheme(); + public diffKeyStart_argsStandardScheme getScheme() { + return new diffKeyStart_argsStandardScheme(); } } - private static class diffKeyStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyStart_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -159151,8 +158368,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_arg } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -159196,7 +158413,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStart_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -159205,11 +158422,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstr_ar oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -159231,17 +158446,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstr_ar } - private static class diffKeyStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStart_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartstr_argsTupleScheme getScheme() { - return new diffKeyStartstr_argsTupleScheme(); + public diffKeyStart_argsTupleScheme getScheme() { + return new diffKeyStart_argsTupleScheme(); } } - private static class diffKeyStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyStart_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -159264,7 +158479,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_arg oprot.writeString(struct.key); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -159278,7 +158493,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -159286,7 +158501,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_args struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(2)) { @@ -159311,31 +158526,28 @@ private static S scheme(org.apache. } } - public static class diffKeyStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartstr_result"); + public static class diffKeyStart_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStart_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStart_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStart_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -159359,8 +158571,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -159419,35 +158629,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStart_result.class, metaDataMap); } - public diffKeyStartstr_result() { + public diffKeyStart_result() { } - public diffKeyStartstr_result( + public diffKeyStart_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffKeyStartstr_result(diffKeyStartstr_result other) { + public diffKeyStart_result(diffKeyStart_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -159481,16 +158687,13 @@ public diffKeyStartstr_result(diffKeyStartstr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public diffKeyStartstr_result deepCopy() { - return new diffKeyStartstr_result(this); + public diffKeyStart_result deepCopy() { + return new diffKeyStart_result(this); } @Override @@ -159499,7 +158702,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -159518,7 +158720,7 @@ public java.util.Map>> success) { + public diffKeyStart_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -159543,7 +158745,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffKeyStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffKeyStart_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -159568,7 +158770,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffKeyStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffKeyStart_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -159589,11 +158791,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public diffKeyStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public diffKeyStart_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -159613,31 +158815,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public diffKeyStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -159669,15 +158846,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -159700,9 +158869,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -159723,20 +158889,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyStartstr_result) - return this.equals((diffKeyStartstr_result)that); + if (that instanceof diffKeyStart_result) + return this.equals((diffKeyStart_result)that); return false; } - public boolean equals(diffKeyStartstr_result that) { + public boolean equals(diffKeyStart_result that) { if (that == null) return false; if (this == that) @@ -159778,15 +158942,6 @@ public boolean equals(diffKeyStartstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -159810,15 +158965,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(diffKeyStartstr_result other) { + public int compareTo(diffKeyStart_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -159865,16 +159016,6 @@ public int compareTo(diffKeyStartstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -159895,7 +159036,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStart_result("); boolean first = true; sb.append("success:"); @@ -159929,14 +159070,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -159962,17 +159095,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStart_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartstr_resultStandardScheme getScheme() { - return new diffKeyStartstr_resultStandardScheme(); + public diffKeyStart_resultStandardScheme getScheme() { + return new diffKeyStart_resultStandardScheme(); } } - private static class diffKeyStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyStart_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -159985,41 +159118,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map828 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map828.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key829; - @org.apache.thrift.annotation.Nullable java.util.Map> _val830; - for (int _i831 = 0; _i831 < _map828.size; ++_i831) + org.apache.thrift.protocol.TMap _map800 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map800.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key801; + @org.apache.thrift.annotation.Nullable java.util.Map> _val802; + for (int _i803 = 0; _i803 < _map800.size; ++_i803) { - _key829 = new com.cinchapi.concourse.thrift.TObject(); - _key829.read(iprot); + _key801 = new com.cinchapi.concourse.thrift.TObject(); + _key801.read(iprot); { - org.apache.thrift.protocol.TMap _map832 = iprot.readMapBegin(); - _val830 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key833; - @org.apache.thrift.annotation.Nullable java.util.Set _val834; - for (int _i835 = 0; _i835 < _map832.size; ++_i835) + org.apache.thrift.protocol.TMap _map804 = iprot.readMapBegin(); + _val802 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key805; + @org.apache.thrift.annotation.Nullable java.util.Set _val806; + for (int _i807 = 0; _i807 < _map804.size; ++_i807) { - _key833 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key805 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set836 = iprot.readSetBegin(); - _val834 = new java.util.LinkedHashSet(2*_set836.size); - long _elem837; - for (int _i838 = 0; _i838 < _set836.size; ++_i838) + org.apache.thrift.protocol.TSet _set808 = iprot.readSetBegin(); + _val806 = new java.util.LinkedHashSet(2*_set808.size); + long _elem809; + for (int _i810 = 0; _i810 < _set808.size; ++_i810) { - _elem837 = iprot.readI64(); - _val834.add(_elem837); + _elem809 = iprot.readI64(); + _val806.add(_elem809); } iprot.readSetEnd(); } - if (_key833 != null) + if (_key805 != null) { - _val830.put(_key833, _val834); + _val802.put(_key805, _val806); } } iprot.readMapEnd(); } - struct.success.put(_key829, _val830); + struct.success.put(_key801, _val802); } iprot.readMapEnd(); } @@ -160048,22 +159181,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_res break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -160076,7 +159200,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStart_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -160084,19 +159208,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstr_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter839 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter811 : struct.success.entrySet()) { - _iter839.getKey().write(oprot); + _iter811.getKey().write(oprot); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter839.getValue().size())); - for (java.util.Map.Entry> _iter840 : _iter839.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter811.getValue().size())); + for (java.util.Map.Entry> _iter812 : _iter811.getValue().entrySet()) { - oprot.writeI32(_iter840.getKey().getValue()); + oprot.writeI32(_iter812.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter840.getValue().size())); - for (long _iter841 : _iter840.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter812.getValue().size())); + for (long _iter813 : _iter812.getValue()) { - oprot.writeI64(_iter841); + oprot.writeI64(_iter813); } oprot.writeSetEnd(); } @@ -160123,28 +159247,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstr_re struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffKeyStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStart_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartstr_resultTupleScheme getScheme() { - return new diffKeyStartstr_resultTupleScheme(); + public diffKeyStart_resultTupleScheme getScheme() { + return new diffKeyStart_resultTupleScheme(); } } - private static class diffKeyStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyStart_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -160159,26 +159278,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_res if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter842 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter814 : struct.success.entrySet()) { - _iter842.getKey().write(oprot); + _iter814.getKey().write(oprot); { - oprot.writeI32(_iter842.getValue().size()); - for (java.util.Map.Entry> _iter843 : _iter842.getValue().entrySet()) + oprot.writeI32(_iter814.getValue().size()); + for (java.util.Map.Entry> _iter815 : _iter814.getValue().entrySet()) { - oprot.writeI32(_iter843.getKey().getValue()); + oprot.writeI32(_iter815.getKey().getValue()); { - oprot.writeI32(_iter843.getValue().size()); - for (long _iter844 : _iter843.getValue()) + oprot.writeI32(_iter815.getValue().size()); + for (long _iter816 : _iter815.getValue()) { - oprot.writeI64(_iter844); + oprot.writeI64(_iter816); } } } @@ -160195,50 +159311,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_res if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStart_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map845 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map845.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key846; - @org.apache.thrift.annotation.Nullable java.util.Map> _val847; - for (int _i848 = 0; _i848 < _map845.size; ++_i848) + org.apache.thrift.protocol.TMap _map817 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map817.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key818; + @org.apache.thrift.annotation.Nullable java.util.Map> _val819; + for (int _i820 = 0; _i820 < _map817.size; ++_i820) { - _key846 = new com.cinchapi.concourse.thrift.TObject(); - _key846.read(iprot); + _key818 = new com.cinchapi.concourse.thrift.TObject(); + _key818.read(iprot); { - org.apache.thrift.protocol.TMap _map849 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - _val847 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key850; - @org.apache.thrift.annotation.Nullable java.util.Set _val851; - for (int _i852 = 0; _i852 < _map849.size; ++_i852) + org.apache.thrift.protocol.TMap _map821 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + _val819 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key822; + @org.apache.thrift.annotation.Nullable java.util.Set _val823; + for (int _i824 = 0; _i824 < _map821.size; ++_i824) { - _key850 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key822 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set853 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val851 = new java.util.LinkedHashSet(2*_set853.size); - long _elem854; - for (int _i855 = 0; _i855 < _set853.size; ++_i855) + org.apache.thrift.protocol.TSet _set825 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val823 = new java.util.LinkedHashSet(2*_set825.size); + long _elem826; + for (int _i827 = 0; _i827 < _set825.size; ++_i827) { - _elem854 = iprot.readI64(); - _val851.add(_elem854); + _elem826 = iprot.readI64(); + _val823.add(_elem826); } } - if (_key850 != null) + if (_key822 != null) { - _val847.put(_key850, _val851); + _val819.put(_key822, _val823); } } } - struct.success.put(_key846, _val847); + struct.success.put(_key818, _val819); } } struct.setSuccessIsSet(true); @@ -160254,15 +159367,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_resu struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -160271,22 +159379,20 @@ private static S scheme(org.apache. } } - public static class diffKeyStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartEnd_args"); + public static class diffKeyStartstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartstr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartEnd_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartEnd_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartstr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long start; // required - public long tend; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -160295,10 +159401,9 @@ public static class diffKeyStartEnd_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -160318,13 +159423,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // START return START; - case 3: // TEND - return TEND; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -160369,18 +159472,13 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __START_ISSET_ID = 0; - private static final int __TEND_ISSET_ID = 1; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -160388,16 +159486,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartEnd_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartstr_args.class, metaDataMap); } - public diffKeyStartEnd_args() { + public diffKeyStartstr_args() { } - public diffKeyStartEnd_args( + public diffKeyStartstr_args( java.lang.String key, - long start, - long tend, + java.lang.String start, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -160405,9 +159502,6 @@ public diffKeyStartEnd_args( this(); this.key = key; this.start = start; - setStartIsSet(true); - this.tend = tend; - setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -160416,13 +159510,13 @@ public diffKeyStartEnd_args( /** * Performs a deep copy on other. */ - public diffKeyStartEnd_args(diffKeyStartEnd_args other) { - __isset_bitfield = other.__isset_bitfield; + public diffKeyStartstr_args(diffKeyStartstr_args other) { if (other.isSetKey()) { this.key = other.key; } - this.start = other.start; - this.tend = other.tend; + if (other.isSetStart()) { + this.start = other.start; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -160435,17 +159529,14 @@ public diffKeyStartEnd_args(diffKeyStartEnd_args other) { } @Override - public diffKeyStartEnd_args deepCopy() { - return new diffKeyStartEnd_args(this); + public diffKeyStartstr_args deepCopy() { + return new diffKeyStartstr_args(this); } @Override public void clear() { this.key = null; - setStartIsSet(false); - this.start = 0; - setTendIsSet(false); - this.tend = 0; + this.start = null; this.creds = null; this.transaction = null; this.environment = null; @@ -160456,7 +159547,7 @@ public java.lang.String getKey() { return this.key; } - public diffKeyStartEnd_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public diffKeyStartstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -160476,50 +159567,29 @@ public void setKeyIsSet(boolean value) { } } - public long getStart() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getStart() { return this.start; } - public diffKeyStartEnd_args setStart(long start) { + public diffKeyStartstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { this.start = start; - setStartIsSet(true); return this; } public void unsetStart() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); + this.start = null; } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); + return this.start != null; } public void setStartIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); - } - - public long getTend() { - return this.tend; - } - - public diffKeyStartEnd_args setTend(long tend) { - this.tend = tend; - setTendIsSet(true); - return this; - } - - public void unsetTend() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); - } - - /** Returns true if field tend is set (has been assigned a value) and false otherwise */ - public boolean isSetTend() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); - } - - public void setTendIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); + if (!value) { + this.start = null; + } } @org.apache.thrift.annotation.Nullable @@ -160527,7 +159597,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffKeyStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffKeyStartstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -160552,7 +159622,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffKeyStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffKeyStartstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -160577,7 +159647,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffKeyStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffKeyStartstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -160612,15 +159682,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.Long)value); - } - break; - - case TEND: - if (value == null) { - unsetTend(); - } else { - setTend((java.lang.Long)value); + setStart((java.lang.String)value); } break; @@ -160661,9 +159723,6 @@ public java.lang.Object getFieldValue(_Fields field) { case START: return getStart(); - case TEND: - return getTend(); - case CREDS: return getCreds(); @@ -160689,8 +159748,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case START: return isSetStart(); - case TEND: - return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -160703,12 +159760,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyStartEnd_args) - return this.equals((diffKeyStartEnd_args)that); + if (that instanceof diffKeyStartstr_args) + return this.equals((diffKeyStartstr_args)that); return false; } - public boolean equals(diffKeyStartEnd_args that) { + public boolean equals(diffKeyStartstr_args that) { if (that == null) return false; if (this == that) @@ -160723,21 +159780,12 @@ public boolean equals(diffKeyStartEnd_args that) { return false; } - boolean this_present_start = true; - boolean that_present_start = true; + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (this.start != that.start) - return false; - } - - boolean this_present_tend = true; - boolean that_present_tend = true; - if (this_present_tend || that_present_tend) { - if (!(this_present_tend && that_present_tend)) - return false; - if (this.tend != that.tend) + if (!this.start.equals(that.start)) return false; } @@ -160779,9 +159827,9 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -160799,7 +159847,7 @@ public int hashCode() { } @Override - public int compareTo(diffKeyStartEnd_args other) { + public int compareTo(diffKeyStartstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -160826,16 +159874,6 @@ public int compareTo(diffKeyStartEnd_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTend()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -160887,7 +159925,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartEnd_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartstr_args("); boolean first = true; sb.append("key:"); @@ -160899,11 +159937,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - sb.append(this.start); - first = false; - if (!first) sb.append(", "); - sb.append("tend:"); - sb.append(this.tend); + if (this.start == null) { + sb.append("null"); + } else { + sb.append(this.start); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -160954,25 +159992,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 diffKeyStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartEnd_argsStandardScheme getScheme() { - return new diffKeyStartEnd_argsStandardScheme(); + public diffKeyStartstr_argsStandardScheme getScheme() { + return new diffKeyStartstr_argsStandardScheme(); } } - private static class diffKeyStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyStartstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -160991,22 +160027,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_arg } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.start = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.start = iprot.readString(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -161015,7 +160043,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -161024,7 +160052,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -161044,7 +160072,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -161053,12 +160081,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartEnd_ar oprot.writeString(struct.key); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeI64(struct.start); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeI64(struct.tend); - oprot.writeFieldEnd(); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -161080,17 +160107,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartEnd_ar } - private static class diffKeyStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartEnd_argsTupleScheme getScheme() { - return new diffKeyStartEnd_argsTupleScheme(); + public diffKeyStartstr_argsTupleScheme getScheme() { + return new diffKeyStartstr_argsTupleScheme(); } } - private static class diffKeyStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyStartstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -161099,27 +160126,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_arg if (struct.isSetStart()) { optionals.set(1); } - if (struct.isSetTend()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetStart()) { - oprot.writeI64(struct.start); - } - if (struct.isSetTend()) { - oprot.writeI64(struct.tend); + oprot.writeString(struct.start); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -161133,32 +160154,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readI64(); + struct.start = iprot.readString(); struct.setStartIsSet(true); } if (incoming.get(2)) { - struct.tend = iprot.readI64(); - struct.setTendIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -161170,28 +160187,31 @@ private static S scheme(org.apache. } } - public static class diffKeyStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartEnd_result"); + public static class diffKeyStartstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartstr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartEnd_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartEnd_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartstr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -161215,6 +160235,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -161273,31 +160295,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartEnd_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartstr_result.class, metaDataMap); } - public diffKeyStartEnd_result() { + public diffKeyStartstr_result() { } - public diffKeyStartEnd_result( + public diffKeyStartstr_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffKeyStartEnd_result(diffKeyStartEnd_result other) { + public diffKeyStartstr_result(diffKeyStartstr_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -161331,13 +160357,16 @@ public diffKeyStartEnd_result(diffKeyStartEnd_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public diffKeyStartEnd_result deepCopy() { - return new diffKeyStartEnd_result(this); + public diffKeyStartstr_result deepCopy() { + return new diffKeyStartstr_result(this); } @Override @@ -161346,6 +160375,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -161364,7 +160394,7 @@ public java.util.Map>> success) { + public diffKeyStartstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -161389,7 +160419,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffKeyStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffKeyStartstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -161414,7 +160444,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffKeyStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffKeyStartstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -161435,11 +160465,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public diffKeyStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public diffKeyStartstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -161459,6 +160489,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public diffKeyStartstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -161490,7 +160545,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -161513,6 +160576,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -161533,18 +160599,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyStartEnd_result) - return this.equals((diffKeyStartEnd_result)that); + if (that instanceof diffKeyStartstr_result) + return this.equals((diffKeyStartstr_result)that); return false; } - public boolean equals(diffKeyStartEnd_result that) { + public boolean equals(diffKeyStartstr_result that) { if (that == null) return false; if (this == that) @@ -161586,6 +160654,15 @@ public boolean equals(diffKeyStartEnd_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -161609,11 +160686,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(diffKeyStartEnd_result other) { + public int compareTo(diffKeyStartstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -161660,6 +160741,16 @@ public int compareTo(diffKeyStartEnd_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -161680,7 +160771,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartEnd_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartstr_result("); boolean first = true; sb.append("success:"); @@ -161714,6 +160805,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -161739,17 +160838,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartEnd_resultStandardScheme getScheme() { - return new diffKeyStartEnd_resultStandardScheme(); + public diffKeyStartstr_resultStandardScheme getScheme() { + return new diffKeyStartstr_resultStandardScheme(); } } - private static class diffKeyStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyStartstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -161762,41 +160861,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map856 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map856.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key857; - @org.apache.thrift.annotation.Nullable java.util.Map> _val858; - for (int _i859 = 0; _i859 < _map856.size; ++_i859) + org.apache.thrift.protocol.TMap _map828 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map828.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key829; + @org.apache.thrift.annotation.Nullable java.util.Map> _val830; + for (int _i831 = 0; _i831 < _map828.size; ++_i831) { - _key857 = new com.cinchapi.concourse.thrift.TObject(); - _key857.read(iprot); + _key829 = new com.cinchapi.concourse.thrift.TObject(); + _key829.read(iprot); { - org.apache.thrift.protocol.TMap _map860 = iprot.readMapBegin(); - _val858 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key861; - @org.apache.thrift.annotation.Nullable java.util.Set _val862; - for (int _i863 = 0; _i863 < _map860.size; ++_i863) + org.apache.thrift.protocol.TMap _map832 = iprot.readMapBegin(); + _val830 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key833; + @org.apache.thrift.annotation.Nullable java.util.Set _val834; + for (int _i835 = 0; _i835 < _map832.size; ++_i835) { - _key861 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key833 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set864 = iprot.readSetBegin(); - _val862 = new java.util.LinkedHashSet(2*_set864.size); - long _elem865; - for (int _i866 = 0; _i866 < _set864.size; ++_i866) + org.apache.thrift.protocol.TSet _set836 = iprot.readSetBegin(); + _val834 = new java.util.LinkedHashSet(2*_set836.size); + long _elem837; + for (int _i838 = 0; _i838 < _set836.size; ++_i838) { - _elem865 = iprot.readI64(); - _val862.add(_elem865); + _elem837 = iprot.readI64(); + _val834.add(_elem837); } iprot.readSetEnd(); } - if (_key861 != null) + if (_key833 != null) { - _val858.put(_key861, _val862); + _val830.put(_key833, _val834); } } iprot.readMapEnd(); } - struct.success.put(_key857, _val858); + struct.success.put(_key829, _val830); } iprot.readMapEnd(); } @@ -161825,13 +160924,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_res break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -161844,7 +160952,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -161852,19 +160960,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartEnd_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter867 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter839 : struct.success.entrySet()) { - _iter867.getKey().write(oprot); + _iter839.getKey().write(oprot); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter867.getValue().size())); - for (java.util.Map.Entry> _iter868 : _iter867.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter839.getValue().size())); + for (java.util.Map.Entry> _iter840 : _iter839.getValue().entrySet()) { - oprot.writeI32(_iter868.getKey().getValue()); + oprot.writeI32(_iter840.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter868.getValue().size())); - for (long _iter869 : _iter868.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter840.getValue().size())); + for (long _iter841 : _iter840.getValue()) { - oprot.writeI64(_iter869); + oprot.writeI64(_iter841); } oprot.writeSetEnd(); } @@ -161891,23 +160999,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartEnd_re struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffKeyStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartEnd_resultTupleScheme getScheme() { - return new diffKeyStartEnd_resultTupleScheme(); + public diffKeyStartstr_resultTupleScheme getScheme() { + return new diffKeyStartstr_resultTupleScheme(); } } - private static class diffKeyStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyStartstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -161922,23 +161035,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_res if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter870 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter842 : struct.success.entrySet()) { - _iter870.getKey().write(oprot); + _iter842.getKey().write(oprot); { - oprot.writeI32(_iter870.getValue().size()); - for (java.util.Map.Entry> _iter871 : _iter870.getValue().entrySet()) + oprot.writeI32(_iter842.getValue().size()); + for (java.util.Map.Entry> _iter843 : _iter842.getValue().entrySet()) { - oprot.writeI32(_iter871.getKey().getValue()); + oprot.writeI32(_iter843.getKey().getValue()); { - oprot.writeI32(_iter871.getValue().size()); - for (long _iter872 : _iter871.getValue()) + oprot.writeI32(_iter843.getValue().size()); + for (long _iter844 : _iter843.getValue()) { - oprot.writeI64(_iter872); + oprot.writeI64(_iter844); } } } @@ -161955,47 +161071,50 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_res if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map873 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map873.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key874; - @org.apache.thrift.annotation.Nullable java.util.Map> _val875; - for (int _i876 = 0; _i876 < _map873.size; ++_i876) + org.apache.thrift.protocol.TMap _map845 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map845.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key846; + @org.apache.thrift.annotation.Nullable java.util.Map> _val847; + for (int _i848 = 0; _i848 < _map845.size; ++_i848) { - _key874 = new com.cinchapi.concourse.thrift.TObject(); - _key874.read(iprot); + _key846 = new com.cinchapi.concourse.thrift.TObject(); + _key846.read(iprot); { - org.apache.thrift.protocol.TMap _map877 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - _val875 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key878; - @org.apache.thrift.annotation.Nullable java.util.Set _val879; - for (int _i880 = 0; _i880 < _map877.size; ++_i880) + org.apache.thrift.protocol.TMap _map849 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + _val847 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key850; + @org.apache.thrift.annotation.Nullable java.util.Set _val851; + for (int _i852 = 0; _i852 < _map849.size; ++_i852) { - _key878 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key850 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set881 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val879 = new java.util.LinkedHashSet(2*_set881.size); - long _elem882; - for (int _i883 = 0; _i883 < _set881.size; ++_i883) + org.apache.thrift.protocol.TSet _set853 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val851 = new java.util.LinkedHashSet(2*_set853.size); + long _elem854; + for (int _i855 = 0; _i855 < _set853.size; ++_i855) { - _elem882 = iprot.readI64(); - _val879.add(_elem882); + _elem854 = iprot.readI64(); + _val851.add(_elem854); } } - if (_key878 != null) + if (_key850 != null) { - _val875.put(_key878, _val879); + _val847.put(_key850, _val851); } } } - struct.success.put(_key874, _val875); + struct.success.put(_key846, _val847); } } struct.setSuccessIsSet(true); @@ -162011,10 +161130,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_resu struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -162023,22 +161147,22 @@ private static S scheme(org.apache. } } - public static class diffKeyStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartstrEndstr_args"); + public static class diffKeyStartEnd_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartEnd_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartstrEndstr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartstrEndstr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartEnd_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartEnd_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable java.lang.String start; // required - public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required + public long start; // required + public long tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -162121,15 +161245,18 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __START_ISSET_ID = 0; + private static final int __TEND_ISSET_ID = 1; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -162137,16 +161264,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartstrEndstr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartEnd_args.class, metaDataMap); } - public diffKeyStartstrEndstr_args() { + public diffKeyStartEnd_args() { } - public diffKeyStartstrEndstr_args( + public diffKeyStartEnd_args( java.lang.String key, - java.lang.String start, - java.lang.String tend, + long start, + long tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -162154,7 +161281,9 @@ public diffKeyStartstrEndstr_args( this(); this.key = key; this.start = start; + setStartIsSet(true); this.tend = tend; + setTendIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -162163,16 +161292,13 @@ public diffKeyStartstrEndstr_args( /** * Performs a deep copy on other. */ - public diffKeyStartstrEndstr_args(diffKeyStartstrEndstr_args other) { + public diffKeyStartEnd_args(diffKeyStartEnd_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } - if (other.isSetStart()) { - this.start = other.start; - } - if (other.isSetTend()) { - this.tend = other.tend; - } + this.start = other.start; + this.tend = other.tend; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -162185,15 +161311,17 @@ public diffKeyStartstrEndstr_args(diffKeyStartstrEndstr_args other) { } @Override - public diffKeyStartstrEndstr_args deepCopy() { - return new diffKeyStartstrEndstr_args(this); + public diffKeyStartEnd_args deepCopy() { + return new diffKeyStartEnd_args(this); } @Override public void clear() { this.key = null; - this.start = null; - this.tend = null; + setStartIsSet(false); + this.start = 0; + setTendIsSet(false); + this.tend = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -162204,7 +161332,7 @@ public java.lang.String getKey() { return this.key; } - public diffKeyStartstrEndstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public diffKeyStartEnd_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -162224,54 +161352,50 @@ public void setKeyIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getStart() { + public long getStart() { return this.start; } - public diffKeyStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + public diffKeyStartEnd_args setStart(long start) { this.start = start; + setStartIsSet(true); return this; } public void unsetStart() { - this.start = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __START_ISSET_ID); } /** Returns true if field start is set (has been assigned a value) and false otherwise */ public boolean isSetStart() { - return this.start != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __START_ISSET_ID); } public void setStartIsSet(boolean value) { - if (!value) { - this.start = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __START_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTend() { + public long getTend() { return this.tend; } - public diffKeyStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + public diffKeyStartEnd_args setTend(long tend) { this.tend = tend; + setTendIsSet(true); return this; } public void unsetTend() { - this.tend = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TEND_ISSET_ID); } /** Returns true if field tend is set (has been assigned a value) and false otherwise */ public boolean isSetTend() { - return this.tend != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TEND_ISSET_ID); } public void setTendIsSet(boolean value) { - if (!value) { - this.tend = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TEND_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -162279,7 +161403,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public diffKeyStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffKeyStartEnd_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -162304,7 +161428,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public diffKeyStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffKeyStartEnd_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -162329,7 +161453,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public diffKeyStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffKeyStartEnd_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -162364,7 +161488,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetStart(); } else { - setStart((java.lang.String)value); + setStart((java.lang.Long)value); } break; @@ -162372,7 +161496,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTend(); } else { - setTend((java.lang.String)value); + setTend((java.lang.Long)value); } break; @@ -162455,12 +161579,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyStartstrEndstr_args) - return this.equals((diffKeyStartstrEndstr_args)that); + if (that instanceof diffKeyStartEnd_args) + return this.equals((diffKeyStartEnd_args)that); return false; } - public boolean equals(diffKeyStartstrEndstr_args that) { + public boolean equals(diffKeyStartEnd_args that) { if (that == null) return false; if (this == that) @@ -162475,21 +161599,21 @@ public boolean equals(diffKeyStartstrEndstr_args that) { return false; } - boolean this_present_start = true && this.isSetStart(); - boolean that_present_start = true && that.isSetStart(); + boolean this_present_start = true; + boolean that_present_start = true; if (this_present_start || that_present_start) { if (!(this_present_start && that_present_start)) return false; - if (!this.start.equals(that.start)) + if (this.start != that.start) return false; } - boolean this_present_tend = true && this.isSetTend(); - boolean that_present_tend = true && that.isSetTend(); + boolean this_present_tend = true; + boolean that_present_tend = true; if (this_present_tend || that_present_tend) { if (!(this_present_tend && that_present_tend)) return false; - if (!this.tend.equals(that.tend)) + if (this.tend != that.tend) return false; } @@ -162531,13 +161655,9 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); - if (isSetStart()) - hashCode = hashCode * 8191 + start.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(start); - hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); - if (isSetTend()) - hashCode = hashCode * 8191 + tend.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(tend); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -162555,7 +161675,7 @@ public int hashCode() { } @Override - public int compareTo(diffKeyStartstrEndstr_args other) { + public int compareTo(diffKeyStartEnd_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -162643,7 +161763,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartstrEndstr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartEnd_args("); boolean first = true; sb.append("key:"); @@ -162655,19 +161775,11 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("start:"); - if (this.start == null) { - sb.append("null"); - } else { - sb.append(this.start); - } + sb.append(this.start); first = false; if (!first) sb.append(", "); sb.append("tend:"); - if (this.tend == null) { - sb.append("null"); - } else { - sb.append(this.tend); - } + sb.append(this.tend); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -162718,23 +161830,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 diffKeyStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartEnd_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartstrEndstr_argsStandardScheme getScheme() { - return new diffKeyStartstrEndstr_argsStandardScheme(); + public diffKeyStartEnd_argsStandardScheme getScheme() { + return new diffKeyStartEnd_argsStandardScheme(); } } - private static class diffKeyStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyStartEnd_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -162753,16 +161867,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEnds } break; case 2: // START - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.start = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.start = iprot.readI64(); struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TEND - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tend = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -162806,7 +161920,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEnds } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartEnd_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -162815,16 +161929,12 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstrEnd oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.start != null) { - oprot.writeFieldBegin(START_FIELD_DESC); - oprot.writeString(struct.start); - oprot.writeFieldEnd(); - } - if (struct.tend != null) { - oprot.writeFieldBegin(TEND_FIELD_DESC); - oprot.writeString(struct.tend); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeI64(struct.start); + oprot.writeFieldEnd(); + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeI64(struct.tend); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -162846,17 +161956,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstrEnd } - private static class diffKeyStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartEnd_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartstrEndstr_argsTupleScheme getScheme() { - return new diffKeyStartstrEndstr_argsTupleScheme(); + public diffKeyStartEnd_argsTupleScheme getScheme() { + return new diffKeyStartEnd_argsTupleScheme(); } } - private static class diffKeyStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyStartEnd_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -162882,10 +161992,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEnds oprot.writeString(struct.key); } if (struct.isSetStart()) { - oprot.writeString(struct.start); + oprot.writeI64(struct.start); } if (struct.isSetTend()) { - oprot.writeString(struct.tend); + oprot.writeI64(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -162899,7 +162009,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEnds } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndstr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -162907,11 +162017,11 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndst struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.start = iprot.readString(); + struct.start = iprot.readI64(); struct.setStartIsSet(true); } if (incoming.get(2)) { - struct.tend = iprot.readString(); + struct.tend = iprot.readI64(); struct.setTendIsSet(true); } if (incoming.get(3)) { @@ -162936,31 +162046,28 @@ private static S scheme(org.apache. } } - public static class diffKeyStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartstrEndstr_result"); + public static class diffKeyStartEnd_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartEnd_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartstrEndstr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartstrEndstr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartEnd_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartEnd_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -162984,8 +162091,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -163044,35 +162149,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartstrEndstr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartEnd_result.class, metaDataMap); } - public diffKeyStartstrEndstr_result() { + public diffKeyStartEnd_result() { } - public diffKeyStartstrEndstr_result( + public diffKeyStartEnd_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public diffKeyStartstrEndstr_result(diffKeyStartstrEndstr_result other) { + public diffKeyStartEnd_result(diffKeyStartEnd_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -163106,16 +162207,13 @@ public diffKeyStartstrEndstr_result(diffKeyStartstrEndstr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public diffKeyStartstrEndstr_result deepCopy() { - return new diffKeyStartstrEndstr_result(this); + public diffKeyStartEnd_result deepCopy() { + return new diffKeyStartEnd_result(this); } @Override @@ -163124,7 +162222,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -163143,7 +162240,7 @@ public java.util.Map>> success) { + public diffKeyStartEnd_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -163168,7 +162265,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public diffKeyStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffKeyStartEnd_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -163193,7 +162290,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public diffKeyStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffKeyStartEnd_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -163214,11 +162311,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public diffKeyStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public diffKeyStartEnd_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -163238,31 +162335,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public diffKeyStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -163294,15 +162366,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -163325,9 +162389,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -163348,20 +162409,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof diffKeyStartstrEndstr_result) - return this.equals((diffKeyStartstrEndstr_result)that); + if (that instanceof diffKeyStartEnd_result) + return this.equals((diffKeyStartEnd_result)that); return false; } - public boolean equals(diffKeyStartstrEndstr_result that) { + public boolean equals(diffKeyStartEnd_result that) { if (that == null) return false; if (this == that) @@ -163403,15 +162462,6 @@ public boolean equals(diffKeyStartstrEndstr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -163435,15 +162485,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(diffKeyStartstrEndstr_result other) { + public int compareTo(diffKeyStartEnd_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -163490,16 +162536,6 @@ public int compareTo(diffKeyStartstrEndstr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -163520,7 +162556,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartstrEndstr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartEnd_result("); boolean first = true; sb.append("success:"); @@ -163554,14 +162590,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -163587,17 +162615,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class diffKeyStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartEnd_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartstrEndstr_resultStandardScheme getScheme() { - return new diffKeyStartstrEndstr_resultStandardScheme(); + public diffKeyStartEnd_resultStandardScheme getScheme() { + return new diffKeyStartEnd_resultStandardScheme(); } } - private static class diffKeyStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyStartEnd_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -163610,41 +162638,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEnds case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map884 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map884.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key885; - @org.apache.thrift.annotation.Nullable java.util.Map> _val886; - for (int _i887 = 0; _i887 < _map884.size; ++_i887) + org.apache.thrift.protocol.TMap _map856 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map856.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key857; + @org.apache.thrift.annotation.Nullable java.util.Map> _val858; + for (int _i859 = 0; _i859 < _map856.size; ++_i859) { - _key885 = new com.cinchapi.concourse.thrift.TObject(); - _key885.read(iprot); + _key857 = new com.cinchapi.concourse.thrift.TObject(); + _key857.read(iprot); { - org.apache.thrift.protocol.TMap _map888 = iprot.readMapBegin(); - _val886 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key889; - @org.apache.thrift.annotation.Nullable java.util.Set _val890; - for (int _i891 = 0; _i891 < _map888.size; ++_i891) + org.apache.thrift.protocol.TMap _map860 = iprot.readMapBegin(); + _val858 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key861; + @org.apache.thrift.annotation.Nullable java.util.Set _val862; + for (int _i863 = 0; _i863 < _map860.size; ++_i863) { - _key889 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key861 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set892 = iprot.readSetBegin(); - _val890 = new java.util.LinkedHashSet(2*_set892.size); - long _elem893; - for (int _i894 = 0; _i894 < _set892.size; ++_i894) + org.apache.thrift.protocol.TSet _set864 = iprot.readSetBegin(); + _val862 = new java.util.LinkedHashSet(2*_set864.size); + long _elem865; + for (int _i866 = 0; _i866 < _set864.size; ++_i866) { - _elem893 = iprot.readI64(); - _val890.add(_elem893); + _elem865 = iprot.readI64(); + _val862.add(_elem865); } iprot.readSetEnd(); } - if (_key889 != null) + if (_key861 != null) { - _val886.put(_key889, _val890); + _val858.put(_key861, _val862); } } iprot.readMapEnd(); } - struct.success.put(_key885, _val886); + struct.success.put(_key857, _val858); } iprot.readMapEnd(); } @@ -163673,22 +162701,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEnds break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -163701,7 +162720,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEnds } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartEnd_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -163709,19 +162728,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstrEnd oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter895 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter867 : struct.success.entrySet()) { - _iter895.getKey().write(oprot); + _iter867.getKey().write(oprot); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter895.getValue().size())); - for (java.util.Map.Entry> _iter896 : _iter895.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter867.getValue().size())); + for (java.util.Map.Entry> _iter868 : _iter867.getValue().entrySet()) { - oprot.writeI32(_iter896.getKey().getValue()); + oprot.writeI32(_iter868.getKey().getValue()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter896.getValue().size())); - for (long _iter897 : _iter896.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter868.getValue().size())); + for (long _iter869 : _iter868.getValue()) { - oprot.writeI64(_iter897); + oprot.writeI64(_iter869); } oprot.writeSetEnd(); } @@ -163748,28 +162767,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstrEnd struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class diffKeyStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartEnd_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public diffKeyStartstrEndstr_resultTupleScheme getScheme() { - return new diffKeyStartstrEndstr_resultTupleScheme(); + public diffKeyStartEnd_resultTupleScheme getScheme() { + return new diffKeyStartEnd_resultTupleScheme(); } } - private static class diffKeyStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyStartEnd_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -163784,26 +162798,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEnds if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter898 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter870 : struct.success.entrySet()) { - _iter898.getKey().write(oprot); + _iter870.getKey().write(oprot); { - oprot.writeI32(_iter898.getValue().size()); - for (java.util.Map.Entry> _iter899 : _iter898.getValue().entrySet()) + oprot.writeI32(_iter870.getValue().size()); + for (java.util.Map.Entry> _iter871 : _iter870.getValue().entrySet()) { - oprot.writeI32(_iter899.getKey().getValue()); + oprot.writeI32(_iter871.getKey().getValue()); { - oprot.writeI32(_iter899.getValue().size()); - for (long _iter900 : _iter899.getValue()) + oprot.writeI32(_iter871.getValue().size()); + for (long _iter872 : _iter871.getValue()) { - oprot.writeI64(_iter900); + oprot.writeI64(_iter872); } } } @@ -163820,50 +162831,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEnds if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndstr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartEnd_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map901 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map901.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key902; - @org.apache.thrift.annotation.Nullable java.util.Map> _val903; - for (int _i904 = 0; _i904 < _map901.size; ++_i904) + org.apache.thrift.protocol.TMap _map873 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map873.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key874; + @org.apache.thrift.annotation.Nullable java.util.Map> _val875; + for (int _i876 = 0; _i876 < _map873.size; ++_i876) { - _key902 = new com.cinchapi.concourse.thrift.TObject(); - _key902.read(iprot); + _key874 = new com.cinchapi.concourse.thrift.TObject(); + _key874.read(iprot); { - org.apache.thrift.protocol.TMap _map905 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); - _val903 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key906; - @org.apache.thrift.annotation.Nullable java.util.Set _val907; - for (int _i908 = 0; _i908 < _map905.size; ++_i908) + org.apache.thrift.protocol.TMap _map877 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + _val875 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key878; + @org.apache.thrift.annotation.Nullable java.util.Set _val879; + for (int _i880 = 0; _i880 < _map877.size; ++_i880) { - _key906 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + _key878 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TSet _set909 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val907 = new java.util.LinkedHashSet(2*_set909.size); - long _elem910; - for (int _i911 = 0; _i911 < _set909.size; ++_i911) + org.apache.thrift.protocol.TSet _set881 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val879 = new java.util.LinkedHashSet(2*_set881.size); + long _elem882; + for (int _i883 = 0; _i883 < _set881.size; ++_i883) { - _elem910 = iprot.readI64(); - _val907.add(_elem910); + _elem882 = iprot.readI64(); + _val879.add(_elem882); } } - if (_key906 != null) + if (_key878 != null) { - _val903.put(_key906, _val907); + _val875.put(_key878, _val879); } } } - struct.success.put(_key902, _val903); + struct.success.put(_key874, _val875); } } struct.setSuccessIsSet(true); @@ -163879,15 +162887,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndst struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -163896,31 +162899,31 @@ private static S scheme(org.apache. } } - public static class invokePlugin_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invokePlugin_args"); + public static class diffKeyStartstrEndstr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartstrEndstr_args"); - private static final org.apache.thrift.protocol.TField ID_FIELD_DESC = new org.apache.thrift.protocol.TField("id", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField METHOD_FIELD_DESC = new org.apache.thrift.protocol.TField("method", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField PARAMS_FIELD_DESC = new org.apache.thrift.protocol.TField("params", org.apache.thrift.protocol.TType.LIST, (short)3); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField START_FIELD_DESC = new org.apache.thrift.protocol.TField("start", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TEND_FIELD_DESC = new org.apache.thrift.protocol.TField("tend", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new invokePlugin_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new invokePlugin_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartstrEndstr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartstrEndstr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String id; // required - public @org.apache.thrift.annotation.Nullable java.lang.String method; // required - public @org.apache.thrift.annotation.Nullable java.util.List params; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable java.lang.String start; // required + public @org.apache.thrift.annotation.Nullable java.lang.String tend; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - ID((short)1, "id"), - METHOD((short)2, "method"), - PARAMS((short)3, "params"), + KEY((short)1, "key"), + START((short)2, "start"), + TEND((short)3, "tend"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -163939,12 +162942,12 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // ID - return ID; - case 2: // METHOD - return METHOD; - case 3: // PARAMS - return PARAMS; + case 1: // KEY + return KEY; + case 2: // START + return START; + case 3: // TEND + return TEND; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -163997,13 +163000,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.ID, new org.apache.thrift.meta_data.FieldMetaData("id", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.METHOD, new org.apache.thrift.meta_data.FieldMetaData("method", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.START, new org.apache.thrift.meta_data.FieldMetaData("start", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TEND, new org.apache.thrift.meta_data.FieldMetaData("tend", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PARAMS, new org.apache.thrift.meta_data.FieldMetaData("params", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ComplexTObject.class)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -164011,24 +163013,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(invokePlugin_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartstrEndstr_args.class, metaDataMap); } - public invokePlugin_args() { + public diffKeyStartstrEndstr_args() { } - public invokePlugin_args( - java.lang.String id, - java.lang.String method, - java.util.List params, + public diffKeyStartstrEndstr_args( + java.lang.String key, + java.lang.String start, + java.lang.String tend, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.id = id; - this.method = method; - this.params = params; + this.key = key; + this.start = start; + this.tend = tend; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -164037,19 +163039,15 @@ public invokePlugin_args( /** * Performs a deep copy on other. */ - public invokePlugin_args(invokePlugin_args other) { - if (other.isSetId()) { - this.id = other.id; + public diffKeyStartstrEndstr_args(diffKeyStartstrEndstr_args other) { + if (other.isSetKey()) { + this.key = other.key; } - if (other.isSetMethod()) { - this.method = other.method; + if (other.isSetStart()) { + this.start = other.start; } - if (other.isSetParams()) { - java.util.List __this__params = new java.util.ArrayList(other.params.size()); - for (com.cinchapi.concourse.thrift.ComplexTObject other_element : other.params) { - __this__params.add(new com.cinchapi.concourse.thrift.ComplexTObject(other_element)); - } - this.params = __this__params; + if (other.isSetTend()) { + this.tend = other.tend; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -164063,108 +163061,92 @@ public invokePlugin_args(invokePlugin_args other) { } @Override - public invokePlugin_args deepCopy() { - return new invokePlugin_args(this); + public diffKeyStartstrEndstr_args deepCopy() { + return new diffKeyStartstrEndstr_args(this); } @Override public void clear() { - this.id = null; - this.method = null; - this.params = null; + this.key = null; + this.start = null; + this.tend = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getId() { - return this.id; + public java.lang.String getKey() { + return this.key; } - public invokePlugin_args setId(@org.apache.thrift.annotation.Nullable java.lang.String id) { - this.id = id; + public diffKeyStartstrEndstr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetId() { - this.id = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field id is set (has been assigned a value) and false otherwise */ - public boolean isSetId() { - return this.id != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setIdIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.id = null; + this.key = null; } } @org.apache.thrift.annotation.Nullable - public java.lang.String getMethod() { - return this.method; + public java.lang.String getStart() { + return this.start; } - public invokePlugin_args setMethod(@org.apache.thrift.annotation.Nullable java.lang.String method) { - this.method = method; + public diffKeyStartstrEndstr_args setStart(@org.apache.thrift.annotation.Nullable java.lang.String start) { + this.start = start; return this; } - public void unsetMethod() { - this.method = null; + public void unsetStart() { + this.start = null; } - /** Returns true if field method is set (has been assigned a value) and false otherwise */ - public boolean isSetMethod() { - return this.method != null; + /** Returns true if field start is set (has been assigned a value) and false otherwise */ + public boolean isSetStart() { + return this.start != null; } - public void setMethodIsSet(boolean value) { + public void setStartIsSet(boolean value) { if (!value) { - this.method = null; - } - } - - public int getParamsSize() { - return (this.params == null) ? 0 : this.params.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getParamsIterator() { - return (this.params == null) ? null : this.params.iterator(); - } - - public void addToParams(com.cinchapi.concourse.thrift.ComplexTObject elem) { - if (this.params == null) { - this.params = new java.util.ArrayList(); + this.start = null; } - this.params.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.List getParams() { - return this.params; + public java.lang.String getTend() { + return this.tend; } - public invokePlugin_args setParams(@org.apache.thrift.annotation.Nullable java.util.List params) { - this.params = params; + public diffKeyStartstrEndstr_args setTend(@org.apache.thrift.annotation.Nullable java.lang.String tend) { + this.tend = tend; return this; } - public void unsetParams() { - this.params = null; + public void unsetTend() { + this.tend = null; } - /** Returns true if field params is set (has been assigned a value) and false otherwise */ - public boolean isSetParams() { - return this.params != null; + /** Returns true if field tend is set (has been assigned a value) and false otherwise */ + public boolean isSetTend() { + return this.tend != null; } - public void setParamsIsSet(boolean value) { + public void setTendIsSet(boolean value) { if (!value) { - this.params = null; + this.tend = null; } } @@ -164173,7 +163155,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public invokePlugin_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public diffKeyStartstrEndstr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -164198,7 +163180,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public invokePlugin_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public diffKeyStartstrEndstr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -164223,7 +163205,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public invokePlugin_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public diffKeyStartstrEndstr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -164246,27 +163228,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case ID: + case KEY: if (value == null) { - unsetId(); + unsetKey(); } else { - setId((java.lang.String)value); + setKey((java.lang.String)value); } break; - case METHOD: + case START: if (value == null) { - unsetMethod(); + unsetStart(); } else { - setMethod((java.lang.String)value); + setStart((java.lang.String)value); } break; - case PARAMS: + case TEND: if (value == null) { - unsetParams(); + unsetTend(); } else { - setParams((java.util.List)value); + setTend((java.lang.String)value); } break; @@ -164301,14 +163283,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case ID: - return getId(); + case KEY: + return getKey(); - case METHOD: - return getMethod(); + case START: + return getStart(); - case PARAMS: - return getParams(); + case TEND: + return getTend(); case CREDS: return getCreds(); @@ -164331,12 +163313,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case ID: - return isSetId(); - case METHOD: - return isSetMethod(); - case PARAMS: - return isSetParams(); + case KEY: + return isSetKey(); + case START: + return isSetStart(); + case TEND: + return isSetTend(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -164349,41 +163331,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof invokePlugin_args) - return this.equals((invokePlugin_args)that); + if (that instanceof diffKeyStartstrEndstr_args) + return this.equals((diffKeyStartstrEndstr_args)that); return false; } - public boolean equals(invokePlugin_args that) { + public boolean equals(diffKeyStartstrEndstr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_id = true && this.isSetId(); - boolean that_present_id = true && that.isSetId(); - if (this_present_id || that_present_id) { - if (!(this_present_id && that_present_id)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.id.equals(that.id)) + if (!this.key.equals(that.key)) return false; } - boolean this_present_method = true && this.isSetMethod(); - boolean that_present_method = true && that.isSetMethod(); - if (this_present_method || that_present_method) { - if (!(this_present_method && that_present_method)) + boolean this_present_start = true && this.isSetStart(); + boolean that_present_start = true && that.isSetStart(); + if (this_present_start || that_present_start) { + if (!(this_present_start && that_present_start)) return false; - if (!this.method.equals(that.method)) + if (!this.start.equals(that.start)) return false; } - boolean this_present_params = true && this.isSetParams(); - boolean that_present_params = true && that.isSetParams(); - if (this_present_params || that_present_params) { - if (!(this_present_params && that_present_params)) + boolean this_present_tend = true && this.isSetTend(); + boolean that_present_tend = true && that.isSetTend(); + if (this_present_tend || that_present_tend) { + if (!(this_present_tend && that_present_tend)) return false; - if (!this.params.equals(that.params)) + if (!this.tend.equals(that.tend)) return false; } @@ -164421,17 +163403,17 @@ public boolean equals(invokePlugin_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetId()) ? 131071 : 524287); - if (isSetId()) - hashCode = hashCode * 8191 + id.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetMethod()) ? 131071 : 524287); - if (isSetMethod()) - hashCode = hashCode * 8191 + method.hashCode(); + hashCode = hashCode * 8191 + ((isSetStart()) ? 131071 : 524287); + if (isSetStart()) + hashCode = hashCode * 8191 + start.hashCode(); - hashCode = hashCode * 8191 + ((isSetParams()) ? 131071 : 524287); - if (isSetParams()) - hashCode = hashCode * 8191 + params.hashCode(); + hashCode = hashCode * 8191 + ((isSetTend()) ? 131071 : 524287); + if (isSetTend()) + hashCode = hashCode * 8191 + tend.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -164449,39 +163431,39 @@ public int hashCode() { } @Override - public int compareTo(invokePlugin_args other) { + public int compareTo(diffKeyStartstrEndstr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetId()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.id, other.id); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetMethod(), other.isSetMethod()); + lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); if (lastComparison != 0) { return lastComparison; } - if (isSetMethod()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.method, other.method); + if (isSetStart()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.start, other.start); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetParams(), other.isSetParams()); + lastComparison = java.lang.Boolean.compare(isSetTend(), other.isSetTend()); if (lastComparison != 0) { return lastComparison; } - if (isSetParams()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.params, other.params); + if (isSetTend()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tend, other.tend); if (lastComparison != 0) { return lastComparison; } @@ -164537,30 +163519,30 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("invokePlugin_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartstrEndstr_args("); boolean first = true; - sb.append("id:"); - if (this.id == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.id); + sb.append(this.key); } first = false; if (!first) sb.append(", "); - sb.append("method:"); - if (this.method == null) { + sb.append("start:"); + if (this.start == null) { sb.append("null"); } else { - sb.append(this.method); + sb.append(this.start); } first = false; if (!first) sb.append(", "); - sb.append("params:"); - if (this.params == null) { + sb.append("tend:"); + if (this.tend == null) { sb.append("null"); } else { - sb.append(this.params); + sb.append(this.tend); } first = false; if (!first) sb.append(", "); @@ -164618,17 +163600,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class invokePlugin_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartstrEndstr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public invokePlugin_argsStandardScheme getScheme() { - return new invokePlugin_argsStandardScheme(); + public diffKeyStartstrEndstr_argsStandardScheme getScheme() { + return new diffKeyStartstrEndstr_argsStandardScheme(); } } - private static class invokePlugin_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyStartstrEndstr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -164638,37 +163620,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_args s break; } switch (schemeField.id) { - case 1: // ID + case 1: // KEY if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.id = iprot.readString(); - struct.setIdIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // METHOD + case 2: // START if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.method = iprot.readString(); - struct.setMethodIsSet(true); + struct.start = iprot.readString(); + struct.setStartIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PARAMS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list912 = iprot.readListBegin(); - struct.params = new java.util.ArrayList(_list912.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem913; - for (int _i914 = 0; _i914 < _list912.size; ++_i914) - { - _elem913 = new com.cinchapi.concourse.thrift.ComplexTObject(); - _elem913.read(iprot); - struct.params.add(_elem913); - } - iprot.readListEnd(); - } - struct.setParamsIsSet(true); + case 3: // TEND + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tend = iprot.readString(); + struct.setTendIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -164711,30 +163682,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, invokePlugin_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstrEndstr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.id != null) { - oprot.writeFieldBegin(ID_FIELD_DESC); - oprot.writeString(struct.id); + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.method != null) { - oprot.writeFieldBegin(METHOD_FIELD_DESC); - oprot.writeString(struct.method); + if (struct.start != null) { + oprot.writeFieldBegin(START_FIELD_DESC); + oprot.writeString(struct.start); oprot.writeFieldEnd(); } - if (struct.params != null) { - oprot.writeFieldBegin(PARAMS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.params.size())); - for (com.cinchapi.concourse.thrift.ComplexTObject _iter915 : struct.params) - { - _iter915.write(oprot); - } - oprot.writeListEnd(); - } + if (struct.tend != null) { + oprot.writeFieldBegin(TEND_FIELD_DESC); + oprot.writeString(struct.tend); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -164758,26 +163722,26 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, invokePlugin_args } - private static class invokePlugin_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartstrEndstr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public invokePlugin_argsTupleScheme getScheme() { - return new invokePlugin_argsTupleScheme(); + public diffKeyStartstrEndstr_argsTupleScheme getScheme() { + return new diffKeyStartstrEndstr_argsTupleScheme(); } } - private static class invokePlugin_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyStartstrEndstr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, invokePlugin_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetId()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetMethod()) { + if (struct.isSetStart()) { optionals.set(1); } - if (struct.isSetParams()) { + if (struct.isSetTend()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -164790,20 +163754,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, invokePlugin_args s optionals.set(5); } oprot.writeBitSet(optionals, 6); - if (struct.isSetId()) { - oprot.writeString(struct.id); + if (struct.isSetKey()) { + oprot.writeString(struct.key); } - if (struct.isSetMethod()) { - oprot.writeString(struct.method); + if (struct.isSetStart()) { + oprot.writeString(struct.start); } - if (struct.isSetParams()) { - { - oprot.writeI32(struct.params.size()); - for (com.cinchapi.concourse.thrift.ComplexTObject _iter916 : struct.params) - { - _iter916.write(oprot); - } - } + if (struct.isSetTend()) { + oprot.writeString(struct.tend); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -164817,30 +163775,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, invokePlugin_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, invokePlugin_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndstr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.id = iprot.readString(); - struct.setIdIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.method = iprot.readString(); - struct.setMethodIsSet(true); + struct.start = iprot.readString(); + struct.setStartIsSet(true); } if (incoming.get(2)) { - { - org.apache.thrift.protocol.TList _list917 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.params = new java.util.ArrayList(_list917.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem918; - for (int _i919 = 0; _i919 < _list917.size; ++_i919) - { - _elem918 = new com.cinchapi.concourse.thrift.ComplexTObject(); - _elem918.read(iprot); - struct.params.add(_elem918); - } - } - struct.setParamsIsSet(true); + struct.tend = iprot.readString(); + struct.setTendIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -164864,22 +163812,22 @@ private static S scheme(org.apache. } } - public static class invokePlugin_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invokePlugin_result"); + public static class diffKeyStartstrEndstr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("diffKeyStartstrEndstr_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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new invokePlugin_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new invokePlugin_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new diffKeyStartstrEndstr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new diffKeyStartstrEndstr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @@ -164961,27 +163909,32 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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, com.cinchapi.concourse.thrift.ComplexTObject.class))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, com.cinchapi.concourse.thrift.Diff.class), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(invokePlugin_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(diffKeyStartstrEndstr_result.class, metaDataMap); } - public invokePlugin_result() { + public diffKeyStartstrEndstr_result() { } - public invokePlugin_result( - com.cinchapi.concourse.thrift.ComplexTObject success, + public diffKeyStartstrEndstr_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.ParseException ex3, com.cinchapi.concourse.thrift.PermissionException ex4) { this(); @@ -164995,9 +163948,32 @@ public invokePlugin_result( /** * Performs a deep copy on other. */ - public invokePlugin_result(invokePlugin_result other) { + public diffKeyStartstrEndstr_result(diffKeyStartstrEndstr_result other) { if (other.isSetSuccess()) { - this.success = new com.cinchapi.concourse.thrift.ComplexTObject(other.success); + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { + + com.cinchapi.concourse.thrift.TObject other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); + + com.cinchapi.concourse.thrift.TObject __this__success_copy_key = new com.cinchapi.concourse.thrift.TObject(other_element_key); + + java.util.Map> __this__success_copy_value = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + com.cinchapi.concourse.thrift.Diff other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + com.cinchapi.concourse.thrift.Diff __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } + + __this__success.put(__this__success_copy_key, __this__success_copy_value); + } + this.success = __this__success; } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); @@ -165006,7 +163982,7 @@ public invokePlugin_result(invokePlugin_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); } if (other.isSetEx4()) { this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); @@ -165014,8 +163990,8 @@ public invokePlugin_result(invokePlugin_result other) { } @Override - public invokePlugin_result deepCopy() { - return new invokePlugin_result(this); + public diffKeyStartstrEndstr_result deepCopy() { + return new diffKeyStartstrEndstr_result(this); } @Override @@ -165027,12 +164003,23 @@ public void clear() { this.ex4 = null; } + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(com.cinchapi.concourse.thrift.TObject key, java.util.Map> val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap>>(); + } + this.success.put(key, val); + } + @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ComplexTObject getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public invokePlugin_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject success) { + public diffKeyStartstrEndstr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -165057,7 +164044,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public invokePlugin_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public diffKeyStartstrEndstr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -165082,7 +164069,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public invokePlugin_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public diffKeyStartstrEndstr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -165103,11 +164090,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public invokePlugin_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public diffKeyStartstrEndstr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -165132,7 +164119,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public invokePlugin_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public diffKeyStartstrEndstr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -165159,7 +164146,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((com.cinchapi.concourse.thrift.ComplexTObject)value); + setSuccess((java.util.Map>>)value); } break; @@ -165183,7 +164170,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); } break; @@ -165245,12 +164232,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof invokePlugin_result) - return this.equals((invokePlugin_result)that); + if (that instanceof diffKeyStartstrEndstr_result) + return this.equals((diffKeyStartstrEndstr_result)that); return false; } - public boolean equals(invokePlugin_result that) { + public boolean equals(diffKeyStartstrEndstr_result that) { if (that == null) return false; if (this == that) @@ -165332,7 +164319,7 @@ public int hashCode() { } @Override - public int compareTo(invokePlugin_result other) { + public int compareTo(diffKeyStartstrEndstr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -165409,7 +164396,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("invokePlugin_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("diffKeyStartstrEndstr_result("); boolean first = true; sb.append("success:"); @@ -165458,9 +164445,6 @@ public java.lang.String 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 { @@ -165479,17 +164463,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class invokePlugin_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartstrEndstr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public invokePlugin_resultStandardScheme getScheme() { - return new invokePlugin_resultStandardScheme(); + public diffKeyStartstrEndstr_resultStandardScheme getScheme() { + return new diffKeyStartstrEndstr_resultStandardScheme(); } } - private static class invokePlugin_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class diffKeyStartstrEndstr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, diffKeyStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -165500,9 +164484,46 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_result } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.success = new com.cinchapi.concourse.thrift.ComplexTObject(); - struct.success.read(iprot); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map884 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map884.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key885; + @org.apache.thrift.annotation.Nullable java.util.Map> _val886; + for (int _i887 = 0; _i887 < _map884.size; ++_i887) + { + _key885 = new com.cinchapi.concourse.thrift.TObject(); + _key885.read(iprot); + { + org.apache.thrift.protocol.TMap _map888 = iprot.readMapBegin(); + _val886 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key889; + @org.apache.thrift.annotation.Nullable java.util.Set _val890; + for (int _i891 = 0; _i891 < _map888.size; ++_i891) + { + _key889 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + { + org.apache.thrift.protocol.TSet _set892 = iprot.readSetBegin(); + _val890 = new java.util.LinkedHashSet(2*_set892.size); + long _elem893; + for (int _i894 = 0; _i894 < _set892.size; ++_i894) + { + _elem893 = iprot.readI64(); + _val890.add(_elem893); + } + iprot.readSetEnd(); + } + if (_key889 != null) + { + _val886.put(_key889, _val890); + } + } + iprot.readMapEnd(); + } + struct.success.put(_key885, _val886); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -165528,7 +164549,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { @@ -165556,13 +164577,36 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, invokePlugin_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, diffKeyStartstrEndstr_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.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter895 : struct.success.entrySet()) + { + _iter895.getKey().write(oprot); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, _iter895.getValue().size())); + for (java.util.Map.Entry> _iter896 : _iter895.getValue().entrySet()) + { + oprot.writeI32(_iter896.getKey().getValue()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter896.getValue().size())); + for (long _iter897 : _iter896.getValue()) + { + oprot.writeI64(_iter897); + } + oprot.writeSetEnd(); + } + } + oprot.writeMapEnd(); + } + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -165591,17 +164635,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, invokePlugin_resul } - private static class invokePlugin_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class diffKeyStartstrEndstr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public invokePlugin_resultTupleScheme getScheme() { - return new invokePlugin_resultTupleScheme(); + public diffKeyStartstrEndstr_resultTupleScheme getScheme() { + return new diffKeyStartstrEndstr_resultTupleScheme(); } } - private static class invokePlugin_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class diffKeyStartstrEndstr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, invokePlugin_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -165621,7 +164665,27 @@ public void write(org.apache.thrift.protocol.TProtocol prot, invokePlugin_result } oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - struct.success.write(oprot); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry>> _iter898 : struct.success.entrySet()) + { + _iter898.getKey().write(oprot); + { + oprot.writeI32(_iter898.getValue().size()); + for (java.util.Map.Entry> _iter899 : _iter898.getValue().entrySet()) + { + oprot.writeI32(_iter899.getKey().getValue()); + { + oprot.writeI32(_iter899.getValue().size()); + for (long _iter900 : _iter899.getValue()) + { + oprot.writeI64(_iter900); + } + } + } + } + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -165638,12 +164702,46 @@ public void write(org.apache.thrift.protocol.TProtocol prot, invokePlugin_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, invokePlugin_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, diffKeyStartstrEndstr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.success = new com.cinchapi.concourse.thrift.ComplexTObject(); - struct.success.read(iprot); + { + org.apache.thrift.protocol.TMap _map901 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRUCT, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map901.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _key902; + @org.apache.thrift.annotation.Nullable java.util.Map> _val903; + for (int _i904 = 0; _i904 < _map901.size; ++_i904) + { + _key902 = new com.cinchapi.concourse.thrift.TObject(); + _key902.read(iprot); + { + org.apache.thrift.protocol.TMap _map905 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET); + _val903 = new java.util.EnumMap>(com.cinchapi.concourse.thrift.Diff.class); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Diff _key906; + @org.apache.thrift.annotation.Nullable java.util.Set _val907; + for (int _i908 = 0; _i908 < _map905.size; ++_i908) + { + _key906 = com.cinchapi.concourse.thrift.Diff.findByValue(iprot.readI32()); + { + org.apache.thrift.protocol.TSet _set909 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val907 = new java.util.LinkedHashSet(2*_set909.size); + long _elem910; + for (int _i911 = 0; _i911 < _set909.size; ++_i911) + { + _elem910 = iprot.readI64(); + _val907.add(_elem910); + } + } + if (_key906 != null) + { + _val903.put(_key906, _val907); + } + } + } + struct.success.put(_key902, _val903); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -165657,7 +164755,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, invokePlugin_result struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } @@ -165674,25 +164772,34 @@ private static S scheme(org.apache. } } - public static class login_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("login_args"); + public static class invokePlugin_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invokePlugin_args"); - private static final org.apache.thrift.protocol.TField USERNAME_FIELD_DESC = new org.apache.thrift.protocol.TField("username", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField PASSWORD_FIELD_DESC = new org.apache.thrift.protocol.TField("password", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ID_FIELD_DESC = new org.apache.thrift.protocol.TField("id", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField METHOD_FIELD_DESC = new org.apache.thrift.protocol.TField("method", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField PARAMS_FIELD_DESC = new org.apache.thrift.protocol.TField("params", org.apache.thrift.protocol.TType.LIST, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new login_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new login_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new invokePlugin_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new invokePlugin_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer username; // required - public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer password; // required + public @org.apache.thrift.annotation.Nullable java.lang.String id; // required + public @org.apache.thrift.annotation.Nullable java.lang.String method; // required + public @org.apache.thrift.annotation.Nullable java.util.List params; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - USERNAME((short)1, "username"), - PASSWORD((short)2, "password"), - ENVIRONMENT((short)3, "environment"); + ID((short)1, "id"), + METHOD((short)2, "method"), + PARAMS((short)3, "params"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -165708,11 +164815,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // USERNAME - return USERNAME; - case 2: // PASSWORD - return PASSWORD; - case 3: // ENVIRONMENT + case 1: // ID + return ID; + case 2: // METHOD + return METHOD; + case 3: // PARAMS + return PARAMS; + case 4: // CREDS + return CREDS; + case 5: // TRANSACTION + return TRANSACTION; + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -165760,39 +164873,65 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.USERNAME, new org.apache.thrift.meta_data.FieldMetaData("username", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true))); - tmpMap.put(_Fields.PASSWORD, new org.apache.thrift.meta_data.FieldMetaData("password", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true))); + tmpMap.put(_Fields.ID, new org.apache.thrift.meta_data.FieldMetaData("id", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.METHOD, new org.apache.thrift.meta_data.FieldMetaData("method", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.PARAMS, new org.apache.thrift.meta_data.FieldMetaData("params", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ComplexTObject.class)))); + tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); + tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(login_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(invokePlugin_args.class, metaDataMap); } - public login_args() { + public invokePlugin_args() { } - public login_args( - java.nio.ByteBuffer username, - java.nio.ByteBuffer password, + public invokePlugin_args( + java.lang.String id, + java.lang.String method, + java.util.List params, + com.cinchapi.concourse.thrift.AccessToken creds, + com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.username = org.apache.thrift.TBaseHelper.copyBinary(username); - this.password = org.apache.thrift.TBaseHelper.copyBinary(password); + this.id = id; + this.method = method; + this.params = params; + this.creds = creds; + this.transaction = transaction; this.environment = environment; } /** * Performs a deep copy on other. */ - public login_args(login_args other) { - if (other.isSetUsername()) { - this.username = org.apache.thrift.TBaseHelper.copyBinary(other.username); + public invokePlugin_args(invokePlugin_args other) { + if (other.isSetId()) { + this.id = other.id; } - if (other.isSetPassword()) { - this.password = org.apache.thrift.TBaseHelper.copyBinary(other.password); + if (other.isSetMethod()) { + this.method = other.method; + } + if (other.isSetParams()) { + java.util.List __this__params = new java.util.ArrayList(other.params.size()); + for (com.cinchapi.concourse.thrift.ComplexTObject other_element : other.params) { + __this__params.add(new com.cinchapi.concourse.thrift.ComplexTObject(other_element)); + } + this.params = __this__params; + } + if (other.isSetCreds()) { + this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); + } + if (other.isSetTransaction()) { + this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); } if (other.isSetEnvironment()) { this.environment = other.environment; @@ -165800,82 +164939,158 @@ public login_args(login_args other) { } @Override - public login_args deepCopy() { - return new login_args(this); + public invokePlugin_args deepCopy() { + return new invokePlugin_args(this); } @Override public void clear() { - this.username = null; - this.password = null; + this.id = null; + this.method = null; + this.params = null; + this.creds = null; + this.transaction = null; this.environment = null; } - public byte[] getUsername() { - setUsername(org.apache.thrift.TBaseHelper.rightSize(username)); - return username == null ? null : username.array(); + @org.apache.thrift.annotation.Nullable + public java.lang.String getId() { + return this.id; } - public java.nio.ByteBuffer bufferForUsername() { - return org.apache.thrift.TBaseHelper.copyBinary(username); + public invokePlugin_args setId(@org.apache.thrift.annotation.Nullable java.lang.String id) { + this.id = id; + return this; } - public login_args setUsername(byte[] username) { - this.username = username == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(username.clone()); - return this; + public void unsetId() { + this.id = null; } - public login_args setUsername(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer username) { - this.username = org.apache.thrift.TBaseHelper.copyBinary(username); + /** Returns true if field id is set (has been assigned a value) and false otherwise */ + public boolean isSetId() { + return this.id != null; + } + + public void setIdIsSet(boolean value) { + if (!value) { + this.id = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getMethod() { + return this.method; + } + + public invokePlugin_args setMethod(@org.apache.thrift.annotation.Nullable java.lang.String method) { + this.method = method; return this; } - public void unsetUsername() { - this.username = null; + public void unsetMethod() { + this.method = null; } - /** Returns true if field username is set (has been assigned a value) and false otherwise */ - public boolean isSetUsername() { - return this.username != null; + /** Returns true if field method is set (has been assigned a value) and false otherwise */ + public boolean isSetMethod() { + return this.method != null; } - public void setUsernameIsSet(boolean value) { + public void setMethodIsSet(boolean value) { if (!value) { - this.username = null; + this.method = null; } } - public byte[] getPassword() { - setPassword(org.apache.thrift.TBaseHelper.rightSize(password)); - return password == null ? null : password.array(); + public int getParamsSize() { + return (this.params == null) ? 0 : this.params.size(); } - public java.nio.ByteBuffer bufferForPassword() { - return org.apache.thrift.TBaseHelper.copyBinary(password); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getParamsIterator() { + return (this.params == null) ? null : this.params.iterator(); } - public login_args setPassword(byte[] password) { - this.password = password == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(password.clone()); + public void addToParams(com.cinchapi.concourse.thrift.ComplexTObject elem) { + if (this.params == null) { + this.params = new java.util.ArrayList(); + } + this.params.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getParams() { + return this.params; + } + + public invokePlugin_args setParams(@org.apache.thrift.annotation.Nullable java.util.List params) { + this.params = params; return this; } - public login_args setPassword(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer password) { - this.password = org.apache.thrift.TBaseHelper.copyBinary(password); + public void unsetParams() { + this.params = null; + } + + /** Returns true if field params is set (has been assigned a value) and false otherwise */ + public boolean isSetParams() { + return this.params != null; + } + + public void setParamsIsSet(boolean value) { + if (!value) { + this.params = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.AccessToken getCreds() { + return this.creds; + } + + public invokePlugin_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + this.creds = creds; return this; } - public void unsetPassword() { - this.password = null; + public void unsetCreds() { + this.creds = null; } - /** Returns true if field password is set (has been assigned a value) and false otherwise */ - public boolean isSetPassword() { - return this.password != null; + /** Returns true if field creds is set (has been assigned a value) and false otherwise */ + public boolean isSetCreds() { + return this.creds != null; } - public void setPasswordIsSet(boolean value) { + public void setCredsIsSet(boolean value) { if (!value) { - this.password = null; + this.creds = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { + return this.transaction; + } + + public invokePlugin_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + this.transaction = transaction; + return this; + } + + public void unsetTransaction() { + this.transaction = null; + } + + /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ + public boolean isSetTransaction() { + return this.transaction != null; + } + + public void setTransactionIsSet(boolean value) { + if (!value) { + this.transaction = null; } } @@ -165884,7 +165099,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public login_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public invokePlugin_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -165907,27 +165122,43 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case USERNAME: + case ID: if (value == null) { - unsetUsername(); + unsetId(); } else { - if (value instanceof byte[]) { - setUsername((byte[])value); - } else { - setUsername((java.nio.ByteBuffer)value); - } + setId((java.lang.String)value); } break; - case PASSWORD: + case METHOD: if (value == null) { - unsetPassword(); + unsetMethod(); } else { - if (value instanceof byte[]) { - setPassword((byte[])value); - } else { - setPassword((java.nio.ByteBuffer)value); - } + setMethod((java.lang.String)value); + } + break; + + case PARAMS: + if (value == null) { + unsetParams(); + } else { + setParams((java.util.List)value); + } + break; + + case CREDS: + if (value == null) { + unsetCreds(); + } else { + setCreds((com.cinchapi.concourse.thrift.AccessToken)value); + } + break; + + case TRANSACTION: + if (value == null) { + unsetTransaction(); + } else { + setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); } break; @@ -165946,11 +165177,20 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case USERNAME: - return getUsername(); + case ID: + return getId(); - case PASSWORD: - return getPassword(); + case METHOD: + return getMethod(); + + case PARAMS: + return getParams(); + + case CREDS: + return getCreds(); + + case TRANSACTION: + return getTransaction(); case ENVIRONMENT: return getEnvironment(); @@ -165967,10 +165207,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case USERNAME: - return isSetUsername(); - case PASSWORD: - return isSetPassword(); + case ID: + return isSetId(); + case METHOD: + return isSetMethod(); + case PARAMS: + return isSetParams(); + case CREDS: + return isSetCreds(); + case TRANSACTION: + return isSetTransaction(); case ENVIRONMENT: return isSetEnvironment(); } @@ -165979,32 +165225,59 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof login_args) - return this.equals((login_args)that); + if (that instanceof invokePlugin_args) + return this.equals((invokePlugin_args)that); return false; } - public boolean equals(login_args that) { + public boolean equals(invokePlugin_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_username = true && this.isSetUsername(); - boolean that_present_username = true && that.isSetUsername(); - if (this_present_username || that_present_username) { - if (!(this_present_username && that_present_username)) + boolean this_present_id = true && this.isSetId(); + boolean that_present_id = true && that.isSetId(); + if (this_present_id || that_present_id) { + if (!(this_present_id && that_present_id)) return false; - if (!this.username.equals(that.username)) + if (!this.id.equals(that.id)) return false; } - boolean this_present_password = true && this.isSetPassword(); - boolean that_present_password = true && that.isSetPassword(); - if (this_present_password || that_present_password) { - if (!(this_present_password && that_present_password)) + boolean this_present_method = true && this.isSetMethod(); + boolean that_present_method = true && that.isSetMethod(); + if (this_present_method || that_present_method) { + if (!(this_present_method && that_present_method)) return false; - if (!this.password.equals(that.password)) + if (!this.method.equals(that.method)) + return false; + } + + boolean this_present_params = true && this.isSetParams(); + boolean that_present_params = true && that.isSetParams(); + if (this_present_params || that_present_params) { + if (!(this_present_params && that_present_params)) + return false; + if (!this.params.equals(that.params)) + return false; + } + + boolean this_present_creds = true && this.isSetCreds(); + boolean that_present_creds = true && that.isSetCreds(); + if (this_present_creds || that_present_creds) { + if (!(this_present_creds && that_present_creds)) + return false; + if (!this.creds.equals(that.creds)) + return false; + } + + boolean this_present_transaction = true && this.isSetTransaction(); + boolean that_present_transaction = true && that.isSetTransaction(); + if (this_present_transaction || that_present_transaction) { + if (!(this_present_transaction && that_present_transaction)) + return false; + if (!this.transaction.equals(that.transaction)) return false; } @@ -166024,13 +165297,25 @@ public boolean equals(login_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetUsername()) ? 131071 : 524287); - if (isSetUsername()) - hashCode = hashCode * 8191 + username.hashCode(); + hashCode = hashCode * 8191 + ((isSetId()) ? 131071 : 524287); + if (isSetId()) + hashCode = hashCode * 8191 + id.hashCode(); - hashCode = hashCode * 8191 + ((isSetPassword()) ? 131071 : 524287); - if (isSetPassword()) - hashCode = hashCode * 8191 + password.hashCode(); + hashCode = hashCode * 8191 + ((isSetMethod()) ? 131071 : 524287); + if (isSetMethod()) + hashCode = hashCode * 8191 + method.hashCode(); + + hashCode = hashCode * 8191 + ((isSetParams()) ? 131071 : 524287); + if (isSetParams()) + hashCode = hashCode * 8191 + params.hashCode(); + + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); + if (isSetCreds()) + hashCode = hashCode * 8191 + creds.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); + if (isSetTransaction()) + hashCode = hashCode * 8191 + transaction.hashCode(); hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); if (isSetEnvironment()) @@ -166040,29 +165325,59 @@ public int hashCode() { } @Override - public int compareTo(login_args other) { + public int compareTo(invokePlugin_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetUsername(), other.isSetUsername()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } - if (isSetUsername()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.username, other.username); + if (isSetId()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.id, other.id); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPassword(), other.isSetPassword()); + lastComparison = java.lang.Boolean.compare(isSetMethod(), other.isSetMethod()); if (lastComparison != 0) { return lastComparison; } - if (isSetPassword()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.password, other.password); + if (isSetMethod()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.method, other.method); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetParams(), other.isSetParams()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetParams()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.params, other.params); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCreds()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.creds, other.creds); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTransaction()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); if (lastComparison != 0) { return lastComparison; } @@ -166098,22 +165413,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("login_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("invokePlugin_args("); boolean first = true; - sb.append("username:"); - if (this.username == null) { + sb.append("id:"); + if (this.id == null) { sb.append("null"); } else { - org.apache.thrift.TBaseHelper.toString(this.username, sb); + sb.append(this.id); } first = false; if (!first) sb.append(", "); - sb.append("password:"); - if (this.password == null) { + sb.append("method:"); + if (this.method == null) { sb.append("null"); } else { - org.apache.thrift.TBaseHelper.toString(this.password, sb); + sb.append(this.method); + } + first = false; + if (!first) sb.append(", "); + sb.append("params:"); + if (this.params == null) { + sb.append("null"); + } else { + sb.append(this.params); + } + first = false; + if (!first) sb.append(", "); + sb.append("creds:"); + if (this.creds == null) { + sb.append("null"); + } else { + sb.append(this.creds); + } + first = false; + if (!first) sb.append(", "); + sb.append("transaction:"); + if (this.transaction == null) { + sb.append("null"); + } else { + sb.append(this.transaction); } first = false; if (!first) sb.append(", "); @@ -166131,6 +165470,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (creds != null) { + creds.validate(); + } + if (transaction != null) { + transaction.validate(); + } } private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { @@ -166149,17 +165494,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class login_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class invokePlugin_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public login_argsStandardScheme getScheme() { - return new login_argsStandardScheme(); + public invokePlugin_argsStandardScheme getScheme() { + return new invokePlugin_argsStandardScheme(); } } - private static class login_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class invokePlugin_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, login_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -166169,23 +165514,60 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, login_args struct) break; } switch (schemeField.id) { - case 1: // USERNAME + case 1: // ID if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.username = iprot.readBinary(); - struct.setUsernameIsSet(true); + struct.id = iprot.readString(); + struct.setIdIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // PASSWORD + case 2: // METHOD if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.password = iprot.readBinary(); - struct.setPasswordIsSet(true); + struct.method = iprot.readString(); + struct.setMethodIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ENVIRONMENT + case 3: // PARAMS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list912 = iprot.readListBegin(); + struct.params = new java.util.ArrayList(_list912.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem913; + for (int _i914 = 0; _i914 < _list912.size; ++_i914) + { + _elem913 = new com.cinchapi.concourse.thrift.ComplexTObject(); + _elem913.read(iprot); + struct.params.add(_elem913); + } + iprot.readListEnd(); + } + struct.setParamsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // TRANSACTION + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -166205,18 +165587,40 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, login_args struct) } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, login_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, invokePlugin_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.username != null) { - oprot.writeFieldBegin(USERNAME_FIELD_DESC); - oprot.writeBinary(struct.username); + if (struct.id != null) { + oprot.writeFieldBegin(ID_FIELD_DESC); + oprot.writeString(struct.id); oprot.writeFieldEnd(); } - if (struct.password != null) { - oprot.writeFieldBegin(PASSWORD_FIELD_DESC); - oprot.writeBinary(struct.password); + if (struct.method != null) { + oprot.writeFieldBegin(METHOD_FIELD_DESC); + oprot.writeString(struct.method); + oprot.writeFieldEnd(); + } + if (struct.params != null) { + oprot.writeFieldBegin(PARAMS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.params.size())); + for (com.cinchapi.concourse.thrift.ComplexTObject _iter915 : struct.params) + { + _iter915.write(oprot); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.creds != null) { + oprot.writeFieldBegin(CREDS_FIELD_DESC); + struct.creds.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.transaction != null) { + oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); + struct.transaction.write(oprot); oprot.writeFieldEnd(); } if (struct.environment != null) { @@ -166230,34 +165634,58 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, login_args struct) } - private static class login_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class invokePlugin_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public login_argsTupleScheme getScheme() { - return new login_argsTupleScheme(); + public invokePlugin_argsTupleScheme getScheme() { + return new invokePlugin_argsTupleScheme(); } } - private static class login_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class invokePlugin_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, login_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, invokePlugin_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetUsername()) { + if (struct.isSetId()) { optionals.set(0); } - if (struct.isSetPassword()) { + if (struct.isSetMethod()) { optionals.set(1); } - if (struct.isSetEnvironment()) { + if (struct.isSetParams()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); - if (struct.isSetUsername()) { - oprot.writeBinary(struct.username); + if (struct.isSetCreds()) { + optionals.set(3); } - if (struct.isSetPassword()) { - oprot.writeBinary(struct.password); + if (struct.isSetTransaction()) { + optionals.set(4); + } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetId()) { + oprot.writeString(struct.id); + } + if (struct.isSetMethod()) { + oprot.writeString(struct.method); + } + if (struct.isSetParams()) { + { + oprot.writeI32(struct.params.size()); + for (com.cinchapi.concourse.thrift.ComplexTObject _iter916 : struct.params) + { + _iter916.write(oprot); + } + } + } + if (struct.isSetCreds()) { + struct.creds.write(oprot); + } + if (struct.isSetTransaction()) { + struct.transaction.write(oprot); } if (struct.isSetEnvironment()) { oprot.writeString(struct.environment); @@ -166265,18 +165693,42 @@ public void write(org.apache.thrift.protocol.TProtocol prot, login_args struct) } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, login_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, invokePlugin_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.username = iprot.readBinary(); - struct.setUsernameIsSet(true); + struct.id = iprot.readString(); + struct.setIdIsSet(true); } if (incoming.get(1)) { - struct.password = iprot.readBinary(); - struct.setPasswordIsSet(true); + struct.method = iprot.readString(); + struct.setMethodIsSet(true); } if (incoming.get(2)) { + { + org.apache.thrift.protocol.TList _list917 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.params = new java.util.ArrayList(_list917.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem918; + for (int _i919 = 0; _i919 < _list917.size; ++_i919) + { + _elem918 = new com.cinchapi.concourse.thrift.ComplexTObject(); + _elem918.read(iprot); + struct.params.add(_elem918); + } + } + struct.setParamsIsSet(true); + } + if (incoming.get(3)) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } + if (incoming.get(4)) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -166288,25 +165740,31 @@ private static S scheme(org.apache. } } - public static class login_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("login_result"); + public static class invokePlugin_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invokePlugin_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new login_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new login_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new invokePlugin_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new invokePlugin_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), - EX2((short)2, "ex2"); + EX2((short)2, "ex2"), + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -166328,6 +165786,10 @@ public static _Fields findByThriftId(int fieldId) { return EX; case 2: // EX2 return EX2; + case 3: // EX3 + return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -166375,47 +165837,61 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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, com.cinchapi.concourse.thrift.AccessToken.class))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ComplexTObject.class))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); + tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(login_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(invokePlugin_result.class, metaDataMap); } - public login_result() { + public invokePlugin_result() { } - public login_result( - com.cinchapi.concourse.thrift.AccessToken success, + public invokePlugin_result( + com.cinchapi.concourse.thrift.ComplexTObject success, com.cinchapi.concourse.thrift.SecurityException ex, - com.cinchapi.concourse.thrift.PermissionException ex2) + com.cinchapi.concourse.thrift.TransactionException ex2, + com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; + this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public login_result(login_result other) { + public invokePlugin_result(invokePlugin_result other) { if (other.isSetSuccess()) { - this.success = new com.cinchapi.concourse.thrift.AccessToken(other.success); + this.success = new com.cinchapi.concourse.thrift.ComplexTObject(other.success); } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } if (other.isSetEx2()) { - this.ex2 = new com.cinchapi.concourse.thrift.PermissionException(other.ex2); + this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); + } + if (other.isSetEx3()) { + this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public login_result deepCopy() { - return new login_result(this); + public invokePlugin_result deepCopy() { + return new invokePlugin_result(this); } @Override @@ -166423,14 +165899,16 @@ public void clear() { this.success = null; this.ex = null; this.ex2 = null; + this.ex3 = null; + this.ex4 = null; } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.AccessToken getSuccess() { + public com.cinchapi.concourse.thrift.ComplexTObject getSuccess() { return this.success; } - public login_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken success) { + public invokePlugin_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject success) { this.success = success; return this; } @@ -166455,7 +165933,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public login_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public invokePlugin_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -166476,11 +165954,11 @@ public void setExIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx2() { + public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public login_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2) { + public invokePlugin_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -166500,6 +165978,56 @@ public void setEx2IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { + return this.ex3; + } + + public invokePlugin_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + this.ex3 = ex3; + return this; + } + + public void unsetEx3() { + this.ex3 = null; + } + + /** Returns true if field ex3 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx3() { + return this.ex3 != null; + } + + public void setEx3IsSet(boolean value) { + if (!value) { + this.ex3 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public invokePlugin_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -166507,7 +166035,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((com.cinchapi.concourse.thrift.AccessToken)value); + setSuccess((com.cinchapi.concourse.thrift.ComplexTObject)value); } break; @@ -166523,7 +166051,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx2(); } else { - setEx2((com.cinchapi.concourse.thrift.PermissionException)value); + setEx2((com.cinchapi.concourse.thrift.TransactionException)value); + } + break; + + case EX3: + if (value == null) { + unsetEx3(); + } else { + setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -166543,6 +166087,12 @@ public java.lang.Object getFieldValue(_Fields field) { case EX2: return getEx2(); + case EX3: + return getEx3(); + + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -166561,18 +166111,22 @@ public boolean isSet(_Fields field) { return isSetEx(); case EX2: return isSetEx2(); + case EX3: + return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof login_result) - return this.equals((login_result)that); + if (that instanceof invokePlugin_result) + return this.equals((invokePlugin_result)that); return false; } - public boolean equals(login_result that) { + public boolean equals(invokePlugin_result that) { if (that == null) return false; if (this == that) @@ -166605,6 +166159,24 @@ public boolean equals(login_result that) { return false; } + boolean this_present_ex3 = true && this.isSetEx3(); + boolean that_present_ex3 = true && that.isSetEx3(); + if (this_present_ex3 || that_present_ex3) { + if (!(this_present_ex3 && that_present_ex3)) + return false; + if (!this.ex3.equals(that.ex3)) + return false; + } + + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -166624,11 +166196,19 @@ public int hashCode() { if (isSetEx2()) hashCode = hashCode * 8191 + ex2.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx3()) ? 131071 : 524287); + if (isSetEx3()) + hashCode = hashCode * 8191 + ex3.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(login_result other) { + public int compareTo(invokePlugin_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -166665,6 +166245,26 @@ public int compareTo(login_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx3(), other.isSetEx3()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx3()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex3, other.ex3); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -166685,7 +166285,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("login_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("invokePlugin_result("); boolean first = true; sb.append("success:"); @@ -166711,6 +166311,22 @@ public java.lang.String toString() { sb.append(this.ex2); } first = false; + if (!first) sb.append(", "); + sb.append("ex3:"); + if (this.ex3 == null) { + sb.append("null"); + } else { + sb.append(this.ex3); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -166739,17 +166355,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class login_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class invokePlugin_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public login_resultStandardScheme getScheme() { - return new login_resultStandardScheme(); + public invokePlugin_resultStandardScheme getScheme() { + return new invokePlugin_resultStandardScheme(); } } - private static class login_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class invokePlugin_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, login_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, invokePlugin_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -166761,7 +166377,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, login_result struct switch (schemeField.id) { case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.success = new com.cinchapi.concourse.thrift.AccessToken(); + struct.success = new com.cinchapi.concourse.thrift.ComplexTObject(); struct.success.read(iprot); struct.setSuccessIsSet(true); } else { @@ -166779,13 +166395,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, login_result struct break; case 2: // EX2 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex2 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 3: // EX3 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -166798,7 +166432,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, login_result struct } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, login_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, invokePlugin_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -166817,23 +166451,33 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, login_result struc struct.ex2.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex3 != null) { + oprot.writeFieldBegin(EX3_FIELD_DESC); + struct.ex3.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class login_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class invokePlugin_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public login_resultTupleScheme getScheme() { - return new login_resultTupleScheme(); + public invokePlugin_resultTupleScheme getScheme() { + return new invokePlugin_resultTupleScheme(); } } - private static class login_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class invokePlugin_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, login_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, invokePlugin_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -166845,7 +166489,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, login_result struct if (struct.isSetEx2()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetEx3()) { + optionals.set(3); + } + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { struct.success.write(oprot); } @@ -166855,14 +166505,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, login_result struct if (struct.isSetEx2()) { struct.ex2.write(oprot); } + if (struct.isSetEx3()) { + struct.ex3.write(oprot); + } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, login_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, invokePlugin_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.success = new com.cinchapi.concourse.thrift.AccessToken(); + struct.success = new com.cinchapi.concourse.thrift.ComplexTObject(); struct.success.read(iprot); struct.setSuccessIsSet(true); } @@ -166872,10 +166528,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, login_result struct) struct.setExIsSet(true); } if (incoming.get(2)) { - struct.ex2 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } + if (incoming.get(3)) { + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -166884,22 +166550,25 @@ private static S scheme(org.apache. } } - public static class logout_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("logout_args"); + public static class login_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("login_args"); - private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField USERNAME_FIELD_DESC = new org.apache.thrift.protocol.TField("username", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField PASSWORD_FIELD_DESC = new org.apache.thrift.protocol.TField("password", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new logout_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new logout_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new login_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new login_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken token; // required + public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer username; // required + public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer password; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - TOKEN((short)1, "token"), - ENVIRONMENT((short)2, "environment"); + USERNAME((short)1, "username"), + PASSWORD((short)2, "password"), + ENVIRONMENT((short)3, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -166915,9 +166584,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // TOKEN - return TOKEN; - case 2: // ENVIRONMENT + case 1: // USERNAME + return USERNAME; + case 2: // PASSWORD + return PASSWORD; + case 3: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -166965,32 +166636,39 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TOKEN, new org.apache.thrift.meta_data.FieldMetaData("token", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); + tmpMap.put(_Fields.USERNAME, new org.apache.thrift.meta_data.FieldMetaData("username", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true))); + tmpMap.put(_Fields.PASSWORD, new org.apache.thrift.meta_data.FieldMetaData("password", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true))); tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(logout_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(login_args.class, metaDataMap); } - public logout_args() { + public login_args() { } - public logout_args( - com.cinchapi.concourse.thrift.AccessToken token, + public login_args( + java.nio.ByteBuffer username, + java.nio.ByteBuffer password, java.lang.String environment) { this(); - this.token = token; + this.username = org.apache.thrift.TBaseHelper.copyBinary(username); + this.password = org.apache.thrift.TBaseHelper.copyBinary(password); this.environment = environment; } /** * Performs a deep copy on other. */ - public logout_args(logout_args other) { - if (other.isSetToken()) { - this.token = new com.cinchapi.concourse.thrift.AccessToken(other.token); + public login_args(login_args other) { + if (other.isSetUsername()) { + this.username = org.apache.thrift.TBaseHelper.copyBinary(other.username); + } + if (other.isSetPassword()) { + this.password = org.apache.thrift.TBaseHelper.copyBinary(other.password); } if (other.isSetEnvironment()) { this.environment = other.environment; @@ -166998,38 +166676,82 @@ public logout_args(logout_args other) { } @Override - public logout_args deepCopy() { - return new logout_args(this); + public login_args deepCopy() { + return new login_args(this); } @Override public void clear() { - this.token = null; + this.username = null; + this.password = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.AccessToken getToken() { - return this.token; + public byte[] getUsername() { + setUsername(org.apache.thrift.TBaseHelper.rightSize(username)); + return username == null ? null : username.array(); } - public logout_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken token) { - this.token = token; + public java.nio.ByteBuffer bufferForUsername() { + return org.apache.thrift.TBaseHelper.copyBinary(username); + } + + public login_args setUsername(byte[] username) { + this.username = username == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(username.clone()); return this; } - public void unsetToken() { - this.token = null; + public login_args setUsername(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer username) { + this.username = org.apache.thrift.TBaseHelper.copyBinary(username); + return this; } - /** Returns true if field token is set (has been assigned a value) and false otherwise */ - public boolean isSetToken() { - return this.token != null; + public void unsetUsername() { + this.username = null; } - public void setTokenIsSet(boolean value) { + /** Returns true if field username is set (has been assigned a value) and false otherwise */ + public boolean isSetUsername() { + return this.username != null; + } + + public void setUsernameIsSet(boolean value) { if (!value) { - this.token = null; + this.username = null; + } + } + + public byte[] getPassword() { + setPassword(org.apache.thrift.TBaseHelper.rightSize(password)); + return password == null ? null : password.array(); + } + + public java.nio.ByteBuffer bufferForPassword() { + return org.apache.thrift.TBaseHelper.copyBinary(password); + } + + public login_args setPassword(byte[] password) { + this.password = password == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(password.clone()); + return this; + } + + public login_args setPassword(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer password) { + this.password = org.apache.thrift.TBaseHelper.copyBinary(password); + return this; + } + + public void unsetPassword() { + this.password = null; + } + + /** Returns true if field password is set (has been assigned a value) and false otherwise */ + public boolean isSetPassword() { + return this.password != null; + } + + public void setPasswordIsSet(boolean value) { + if (!value) { + this.password = null; } } @@ -167038,7 +166760,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public logout_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public login_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -167061,11 +166783,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case TOKEN: + case USERNAME: if (value == null) { - unsetToken(); + unsetUsername(); } else { - setToken((com.cinchapi.concourse.thrift.AccessToken)value); + if (value instanceof byte[]) { + setUsername((byte[])value); + } else { + setUsername((java.nio.ByteBuffer)value); + } + } + break; + + case PASSWORD: + if (value == null) { + unsetPassword(); + } else { + if (value instanceof byte[]) { + setPassword((byte[])value); + } else { + setPassword((java.nio.ByteBuffer)value); + } } break; @@ -167084,8 +166822,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case TOKEN: - return getToken(); + case USERNAME: + return getUsername(); + + case PASSWORD: + return getPassword(); case ENVIRONMENT: return getEnvironment(); @@ -167102,8 +166843,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case TOKEN: - return isSetToken(); + case USERNAME: + return isSetUsername(); + case PASSWORD: + return isSetPassword(); case ENVIRONMENT: return isSetEnvironment(); } @@ -167112,23 +166855,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof logout_args) - return this.equals((logout_args)that); + if (that instanceof login_args) + return this.equals((login_args)that); return false; } - public boolean equals(logout_args that) { + public boolean equals(login_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_token = true && this.isSetToken(); - boolean that_present_token = true && that.isSetToken(); - if (this_present_token || that_present_token) { - if (!(this_present_token && that_present_token)) + boolean this_present_username = true && this.isSetUsername(); + boolean that_present_username = true && that.isSetUsername(); + if (this_present_username || that_present_username) { + if (!(this_present_username && that_present_username)) return false; - if (!this.token.equals(that.token)) + if (!this.username.equals(that.username)) + return false; + } + + boolean this_present_password = true && this.isSetPassword(); + boolean that_present_password = true && that.isSetPassword(); + if (this_present_password || that_present_password) { + if (!(this_present_password && that_present_password)) + return false; + if (!this.password.equals(that.password)) return false; } @@ -167148,9 +166900,13 @@ public boolean equals(logout_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetToken()) ? 131071 : 524287); - if (isSetToken()) - hashCode = hashCode * 8191 + token.hashCode(); + hashCode = hashCode * 8191 + ((isSetUsername()) ? 131071 : 524287); + if (isSetUsername()) + hashCode = hashCode * 8191 + username.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPassword()) ? 131071 : 524287); + if (isSetPassword()) + hashCode = hashCode * 8191 + password.hashCode(); hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); if (isSetEnvironment()) @@ -167160,19 +166916,29 @@ public int hashCode() { } @Override - public int compareTo(logout_args other) { + public int compareTo(login_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetToken(), other.isSetToken()); + lastComparison = java.lang.Boolean.compare(isSetUsername(), other.isSetUsername()); if (lastComparison != 0) { return lastComparison; } - if (isSetToken()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.token, other.token); + if (isSetUsername()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.username, other.username); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPassword(), other.isSetPassword()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPassword()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.password, other.password); if (lastComparison != 0) { return lastComparison; } @@ -167208,14 +166974,22 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("logout_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("login_args("); boolean first = true; - sb.append("token:"); - if (this.token == null) { + sb.append("username:"); + if (this.username == null) { sb.append("null"); } else { - sb.append(this.token); + org.apache.thrift.TBaseHelper.toString(this.username, sb); + } + first = false; + if (!first) sb.append(", "); + sb.append("password:"); + if (this.password == null) { + sb.append("null"); + } else { + org.apache.thrift.TBaseHelper.toString(this.password, sb); } first = false; if (!first) sb.append(", "); @@ -167233,9 +167007,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (token != null) { - token.validate(); - } } private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { @@ -167254,17 +167025,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class logout_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class login_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public logout_argsStandardScheme getScheme() { - return new logout_argsStandardScheme(); + public login_argsStandardScheme getScheme() { + return new login_argsStandardScheme(); } } - private static class logout_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class login_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, logout_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, login_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -167274,16 +167045,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, logout_args struct) break; } switch (schemeField.id) { - case 1: // TOKEN - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.token = new com.cinchapi.concourse.thrift.AccessToken(); - struct.token.read(iprot); - struct.setTokenIsSet(true); + case 1: // USERNAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.username = iprot.readBinary(); + struct.setUsernameIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // ENVIRONMENT + case 2: // PASSWORD + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.password = iprot.readBinary(); + struct.setPasswordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -167303,13 +167081,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, logout_args struct) } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, logout_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, login_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.token != null) { - oprot.writeFieldBegin(TOKEN_FIELD_DESC); - struct.token.write(oprot); + if (struct.username != null) { + oprot.writeFieldBegin(USERNAME_FIELD_DESC); + oprot.writeBinary(struct.username); + oprot.writeFieldEnd(); + } + if (struct.password != null) { + oprot.writeFieldBegin(PASSWORD_FIELD_DESC); + oprot.writeBinary(struct.password); oprot.writeFieldEnd(); } if (struct.environment != null) { @@ -167323,28 +167106,34 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, logout_args struct } - private static class logout_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class login_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public logout_argsTupleScheme getScheme() { - return new logout_argsTupleScheme(); + public login_argsTupleScheme getScheme() { + return new login_argsTupleScheme(); } } - private static class logout_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class login_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, logout_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, login_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetToken()) { + if (struct.isSetUsername()) { optionals.set(0); } - if (struct.isSetEnvironment()) { + if (struct.isSetPassword()) { optionals.set(1); } - oprot.writeBitSet(optionals, 2); - if (struct.isSetToken()) { - struct.token.write(oprot); + if (struct.isSetEnvironment()) { + optionals.set(2); + } + oprot.writeBitSet(optionals, 3); + if (struct.isSetUsername()) { + oprot.writeBinary(struct.username); + } + if (struct.isSetPassword()) { + oprot.writeBinary(struct.password); } if (struct.isSetEnvironment()) { oprot.writeString(struct.environment); @@ -167352,15 +167141,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, logout_args struct) } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, logout_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, login_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(2); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { - struct.token = new com.cinchapi.concourse.thrift.AccessToken(); - struct.token.read(iprot); - struct.setTokenIsSet(true); + struct.username = iprot.readBinary(); + struct.setUsernameIsSet(true); } if (incoming.get(1)) { + struct.password = iprot.readBinary(); + struct.setPasswordIsSet(true); + } + if (incoming.get(2)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -167372,20 +167164,23 @@ private static S scheme(org.apache. } } - public static class logout_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("logout_result"); + public static class login_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("login_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new logout_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new logout_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new login_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new login_resultTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"); @@ -167403,6 +167198,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // EX return EX; case 2: // EX2 @@ -167453,22 +167250,26 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + 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, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(logout_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(login_result.class, metaDataMap); } - public logout_result() { + public login_result() { } - public logout_result( + public login_result( + com.cinchapi.concourse.thrift.AccessToken success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.PermissionException ex2) { this(); + this.success = success; this.ex = ex; this.ex2 = ex2; } @@ -167476,7 +167277,10 @@ public logout_result( /** * Performs a deep copy on other. */ - public logout_result(logout_result other) { + public login_result(login_result other) { + if (other.isSetSuccess()) { + this.success = new com.cinchapi.concourse.thrift.AccessToken(other.success); + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -167486,22 +167290,48 @@ public logout_result(logout_result other) { } @Override - public logout_result deepCopy() { - return new logout_result(this); + public login_result deepCopy() { + return new login_result(this); } @Override public void clear() { + this.success = null; this.ex = null; this.ex2 = null; } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.AccessToken getSuccess() { + return this.success; + } + + public login_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken 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; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public logout_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public login_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -167526,7 +167356,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx2() { return this.ex2; } - public logout_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2) { + public login_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2) { this.ex2 = ex2; return this; } @@ -167549,6 +167379,14 @@ public void setEx2IsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((com.cinchapi.concourse.thrift.AccessToken)value); + } + break; + case EX: if (value == null) { unsetEx(); @@ -167572,6 +167410,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return getSuccess(); + case EX: return getEx(); @@ -167590,6 +167431,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case EX: return isSetEx(); case EX2: @@ -167600,17 +167443,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof logout_result) - return this.equals((logout_result)that); + if (that instanceof login_result) + return this.equals((login_result)that); return false; } - public boolean equals(logout_result that) { + public boolean equals(login_result that) { if (that == null) return false; if (this == that) return true; + 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_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -167636,6 +167488,10 @@ public boolean equals(logout_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -167648,13 +167504,23 @@ public int hashCode() { } @Override - public int compareTo(logout_result other) { + public int compareTo(login_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -167695,9 +167561,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("logout_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("login_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("ex:"); if (this.ex == null) { sb.append("null"); @@ -167720,6 +167594,9 @@ public java.lang.String 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 { @@ -167738,17 +167615,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class logout_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class login_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public logout_resultStandardScheme getScheme() { - return new logout_resultStandardScheme(); + public login_resultStandardScheme getScheme() { + return new login_resultStandardScheme(); } } - private static class logout_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class login_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, logout_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, login_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -167758,6 +167635,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, logout_result struc break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.success = new com.cinchapi.concourse.thrift.AccessToken(); + struct.success.read(iprot); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -167788,10 +167674,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, logout_result struc } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, logout_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, login_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.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -167808,26 +167699,32 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, logout_result stru } - private static class logout_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class login_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public logout_resultTupleScheme getScheme() { - return new logout_resultTupleScheme(); + public login_resultTupleScheme getScheme() { + return new login_resultTupleScheme(); } } - private static class logout_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class login_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, logout_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, login_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetEx()) { + if (struct.isSetSuccess()) { optionals.set(0); } - if (struct.isSetEx2()) { + if (struct.isSetEx()) { optionals.set(1); } - oprot.writeBitSet(optionals, 2); + if (struct.isSetEx2()) { + optionals.set(2); + } + oprot.writeBitSet(optionals, 3); + if (struct.isSetSuccess()) { + struct.success.write(oprot); + } if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -167837,15 +167734,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, logout_result struc } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, logout_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, login_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(2); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { + struct.success = new com.cinchapi.concourse.thrift.AccessToken(); + struct.success.read(iprot); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(2)) { struct.ex2 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); @@ -167858,14 +167760,14 @@ private static S scheme(org.apache. } } - public static class stage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("stage_args"); + public static class logout_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("logout_args"); private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new stage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new stage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new logout_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new logout_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken token; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -167944,13 +167846,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(stage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(logout_args.class, metaDataMap); } - public stage_args() { + public logout_args() { } - public stage_args( + public logout_args( com.cinchapi.concourse.thrift.AccessToken token, java.lang.String environment) { @@ -167962,7 +167864,7 @@ public stage_args( /** * Performs a deep copy on other. */ - public stage_args(stage_args other) { + public logout_args(logout_args other) { if (other.isSetToken()) { this.token = new com.cinchapi.concourse.thrift.AccessToken(other.token); } @@ -167972,8 +167874,8 @@ public stage_args(stage_args other) { } @Override - public stage_args deepCopy() { - return new stage_args(this); + public logout_args deepCopy() { + return new logout_args(this); } @Override @@ -167987,7 +167889,7 @@ public com.cinchapi.concourse.thrift.AccessToken getToken() { return this.token; } - public stage_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken token) { + public logout_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken token) { this.token = token; return this; } @@ -168012,7 +167914,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public stage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public logout_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -168086,12 +167988,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof stage_args) - return this.equals((stage_args)that); + if (that instanceof logout_args) + return this.equals((logout_args)that); return false; } - public boolean equals(stage_args that) { + public boolean equals(logout_args that) { if (that == null) return false; if (this == that) @@ -168134,7 +168036,7 @@ public int hashCode() { } @Override - public int compareTo(stage_args other) { + public int compareTo(logout_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -168182,7 +168084,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("stage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("logout_args("); boolean first = true; sb.append("token:"); @@ -168228,17 +168130,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class stage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class logout_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public stage_argsStandardScheme getScheme() { - return new stage_argsStandardScheme(); + public logout_argsStandardScheme getScheme() { + return new logout_argsStandardScheme(); } } - private static class stage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class logout_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, stage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, logout_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -168277,7 +168179,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, stage_args struct) } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, stage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, logout_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -168297,17 +168199,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, stage_args struct) } - private static class stage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class logout_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public stage_argsTupleScheme getScheme() { - return new stage_argsTupleScheme(); + public logout_argsTupleScheme getScheme() { + return new logout_argsTupleScheme(); } } - private static class stage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class logout_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, stage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, logout_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetToken()) { @@ -168326,7 +168228,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, stage_args struct) } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, stage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, logout_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { @@ -168346,23 +168248,20 @@ private static S scheme(org.apache. } } - public static class stage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("stage_result"); + public static class logout_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("logout_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new stage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new stage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new logout_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new logout_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"); @@ -168380,8 +168279,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // EX return EX; case 2: // EX2 @@ -168432,26 +168329,22 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - 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, com.cinchapi.concourse.thrift.TransactionToken.class))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(stage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(logout_result.class, metaDataMap); } - public stage_result() { + public logout_result() { } - public stage_result( - com.cinchapi.concourse.thrift.TransactionToken success, + public logout_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.PermissionException ex2) { this(); - this.success = success; this.ex = ex; this.ex2 = ex2; } @@ -168459,10 +168352,7 @@ public stage_result( /** * Performs a deep copy on other. */ - public stage_result(stage_result other) { - if (other.isSetSuccess()) { - this.success = new com.cinchapi.concourse.thrift.TransactionToken(other.success); - } + public logout_result(logout_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -168472,48 +168362,22 @@ public stage_result(stage_result other) { } @Override - public stage_result deepCopy() { - return new stage_result(this); + public logout_result deepCopy() { + return new logout_result(this); } @Override public void clear() { - this.success = null; this.ex = null; this.ex2 = null; } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionToken getSuccess() { - return this.success; - } - - public stage_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken 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; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public stage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public logout_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -168538,7 +168402,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx2() { return this.ex2; } - public stage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2) { + public logout_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2) { this.ex2 = ex2; return this; } @@ -168561,14 +168425,6 @@ public void setEx2IsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((com.cinchapi.concourse.thrift.TransactionToken)value); - } - break; - case EX: if (value == null) { unsetEx(); @@ -168592,9 +168448,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return getSuccess(); - case EX: return getEx(); @@ -168613,8 +168466,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case EX: return isSetEx(); case EX2: @@ -168625,26 +168476,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof stage_result) - return this.equals((stage_result)that); + if (that instanceof logout_result) + return this.equals((logout_result)that); return false; } - public boolean equals(stage_result that) { + public boolean equals(logout_result that) { if (that == null) return false; if (this == that) return true; - 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_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -168670,10 +168512,6 @@ public boolean equals(stage_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -168686,23 +168524,13 @@ public int hashCode() { } @Override - public int compareTo(stage_result other) { + public int compareTo(logout_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -168743,17 +168571,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("stage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("logout_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("ex:"); if (this.ex == null) { sb.append("null"); @@ -168776,9 +168596,6 @@ public java.lang.String 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 { @@ -168797,17 +168614,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class stage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class logout_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public stage_resultStandardScheme getScheme() { - return new stage_resultStandardScheme(); + public logout_resultStandardScheme getScheme() { + return new logout_resultStandardScheme(); } } - private static class stage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class logout_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, stage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, logout_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -168817,15 +168634,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, stage_result struct break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.success = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.success.read(iprot); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -168856,15 +168664,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, stage_result struct } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, stage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, logout_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.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -168881,32 +168684,26 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, stage_result struc } - private static class stage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class logout_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public stage_resultTupleScheme getScheme() { - return new stage_resultTupleScheme(); + public logout_resultTupleScheme getScheme() { + return new logout_resultTupleScheme(); } } - private static class stage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class logout_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, stage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, logout_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } if (struct.isSetEx()) { - optionals.set(1); + optionals.set(0); } if (struct.isSetEx2()) { - optionals.set(2); - } - oprot.writeBitSet(optionals, 3); - if (struct.isSetSuccess()) { - struct.success.write(oprot); + optionals.set(1); } + oprot.writeBitSet(optionals, 2); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -168916,20 +168713,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, stage_result struct } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, stage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, logout_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { - struct.success = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.success.read(iprot); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(1)) { struct.ex2 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); @@ -168942,28 +168734,22 @@ private static S scheme(org.apache. } } - public static class insertJson_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJson_args"); + public static class stage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("stage_args"); - private static final org.apache.thrift.protocol.TField JSON_FIELD_DESC = new org.apache.thrift.protocol.TField("json", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJson_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJson_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new stage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new stage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String json; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken token; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - JSON((short)1, "json"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + TOKEN((short)1, "token"), + ENVIRONMENT((short)2, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -168979,13 +168765,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // JSON - return JSON; - case 2: // CREDS - return CREDS; - case 3: // TRANSACTION - return TRANSACTION; - case 4: // ENVIRONMENT + case 1: // TOKEN + return TOKEN; + case 2: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -169033,46 +168815,32 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.JSON, new org.apache.thrift.meta_data.FieldMetaData("json", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.TOKEN, new org.apache.thrift.meta_data.FieldMetaData("token", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); - tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJson_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(stage_args.class, metaDataMap); } - public insertJson_args() { + public stage_args() { } - public insertJson_args( - java.lang.String json, - com.cinchapi.concourse.thrift.AccessToken creds, - com.cinchapi.concourse.thrift.TransactionToken transaction, + public stage_args( + com.cinchapi.concourse.thrift.AccessToken token, java.lang.String environment) { this(); - this.json = json; - this.creds = creds; - this.transaction = transaction; + this.token = token; this.environment = environment; } /** * Performs a deep copy on other. */ - public insertJson_args(insertJson_args other) { - if (other.isSetJson()) { - this.json = other.json; - } - if (other.isSetCreds()) { - this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); - } - if (other.isSetTransaction()) { - this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); + public stage_args(stage_args other) { + if (other.isSetToken()) { + this.token = new com.cinchapi.concourse.thrift.AccessToken(other.token); } if (other.isSetEnvironment()) { this.environment = other.environment; @@ -169080,90 +168848,38 @@ public insertJson_args(insertJson_args other) { } @Override - public insertJson_args deepCopy() { - return new insertJson_args(this); + public stage_args deepCopy() { + return new stage_args(this); } @Override public void clear() { - this.json = null; - this.creds = null; - this.transaction = null; + this.token = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getJson() { - return this.json; - } - - public insertJson_args setJson(@org.apache.thrift.annotation.Nullable java.lang.String json) { - this.json = json; - return this; - } - - public void unsetJson() { - this.json = null; - } - - /** Returns true if field json is set (has been assigned a value) and false otherwise */ - public boolean isSetJson() { - return this.json != null; - } - - public void setJsonIsSet(boolean value) { - if (!value) { - this.json = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.AccessToken getCreds() { - return this.creds; - } - - public insertJson_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { - this.creds = creds; - return this; - } - - public void unsetCreds() { - this.creds = null; - } - - /** Returns true if field creds is set (has been assigned a value) and false otherwise */ - public boolean isSetCreds() { - return this.creds != null; - } - - public void setCredsIsSet(boolean value) { - if (!value) { - this.creds = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { - return this.transaction; + public com.cinchapi.concourse.thrift.AccessToken getToken() { + return this.token; } - public insertJson_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { - this.transaction = transaction; + public stage_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken token) { + this.token = token; return this; } - public void unsetTransaction() { - this.transaction = null; + public void unsetToken() { + this.token = null; } - /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ - public boolean isSetTransaction() { - return this.transaction != null; + /** Returns true if field token is set (has been assigned a value) and false otherwise */ + public boolean isSetToken() { + return this.token != null; } - public void setTransactionIsSet(boolean value) { + public void setTokenIsSet(boolean value) { if (!value) { - this.transaction = null; + this.token = null; } } @@ -169172,7 +168888,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public insertJson_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public stage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -169195,27 +168911,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case JSON: - if (value == null) { - unsetJson(); - } else { - setJson((java.lang.String)value); - } - break; - - case CREDS: - if (value == null) { - unsetCreds(); - } else { - setCreds((com.cinchapi.concourse.thrift.AccessToken)value); - } - break; - - case TRANSACTION: + case TOKEN: if (value == null) { - unsetTransaction(); + unsetToken(); } else { - setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); + setToken((com.cinchapi.concourse.thrift.AccessToken)value); } break; @@ -169234,14 +168934,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case JSON: - return getJson(); - - case CREDS: - return getCreds(); - - case TRANSACTION: - return getTransaction(); + case TOKEN: + return getToken(); case ENVIRONMENT: return getEnvironment(); @@ -169258,12 +168952,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case JSON: - return isSetJson(); - case CREDS: - return isSetCreds(); - case TRANSACTION: - return isSetTransaction(); + case TOKEN: + return isSetToken(); case ENVIRONMENT: return isSetEnvironment(); } @@ -169272,41 +168962,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof insertJson_args) - return this.equals((insertJson_args)that); + if (that instanceof stage_args) + return this.equals((stage_args)that); return false; } - public boolean equals(insertJson_args that) { + public boolean equals(stage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_json = true && this.isSetJson(); - boolean that_present_json = true && that.isSetJson(); - if (this_present_json || that_present_json) { - if (!(this_present_json && that_present_json)) - return false; - if (!this.json.equals(that.json)) - return false; - } - - boolean this_present_creds = true && this.isSetCreds(); - boolean that_present_creds = true && that.isSetCreds(); - if (this_present_creds || that_present_creds) { - if (!(this_present_creds && that_present_creds)) - return false; - if (!this.creds.equals(that.creds)) - return false; - } - - boolean this_present_transaction = true && this.isSetTransaction(); - boolean that_present_transaction = true && that.isSetTransaction(); - if (this_present_transaction || that_present_transaction) { - if (!(this_present_transaction && that_present_transaction)) + boolean this_present_token = true && this.isSetToken(); + boolean that_present_token = true && that.isSetToken(); + if (this_present_token || that_present_token) { + if (!(this_present_token && that_present_token)) return false; - if (!this.transaction.equals(that.transaction)) + if (!this.token.equals(that.token)) return false; } @@ -169326,17 +168998,9 @@ public boolean equals(insertJson_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetJson()) ? 131071 : 524287); - if (isSetJson()) - hashCode = hashCode * 8191 + json.hashCode(); - - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); - if (isSetCreds()) - hashCode = hashCode * 8191 + creds.hashCode(); - - hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); - if (isSetTransaction()) - hashCode = hashCode * 8191 + transaction.hashCode(); + hashCode = hashCode * 8191 + ((isSetToken()) ? 131071 : 524287); + if (isSetToken()) + hashCode = hashCode * 8191 + token.hashCode(); hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); if (isSetEnvironment()) @@ -169346,39 +169010,19 @@ public int hashCode() { } @Override - public int compareTo(insertJson_args other) { + public int compareTo(stage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetJson(), other.isSetJson()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetJson()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.json, other.json); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetCreds()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.creds, other.creds); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); + lastComparison = java.lang.Boolean.compare(isSetToken(), other.isSetToken()); if (lastComparison != 0) { return lastComparison; } - if (isSetTransaction()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); + if (isSetToken()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.token, other.token); if (lastComparison != 0) { return lastComparison; } @@ -169414,30 +169058,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJson_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("stage_args("); boolean first = true; - sb.append("json:"); - if (this.json == null) { - sb.append("null"); - } else { - sb.append(this.json); - } - first = false; - if (!first) sb.append(", "); - sb.append("creds:"); - if (this.creds == null) { - sb.append("null"); - } else { - sb.append(this.creds); - } - first = false; - if (!first) sb.append(", "); - sb.append("transaction:"); - if (this.transaction == null) { + sb.append("token:"); + if (this.token == null) { sb.append("null"); } else { - sb.append(this.transaction); + sb.append(this.token); } first = false; if (!first) sb.append(", "); @@ -169455,11 +169083,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (creds != null) { - creds.validate(); - } - if (transaction != null) { - transaction.validate(); + if (token != null) { + token.validate(); } } @@ -169479,17 +169104,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class insertJson_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class stage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJson_argsStandardScheme getScheme() { - return new insertJson_argsStandardScheme(); + public stage_argsStandardScheme getScheme() { + return new stage_argsStandardScheme(); } } - private static class insertJson_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class stage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, stage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -169499,33 +169124,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_args str break; } switch (schemeField.id) { - case 1: // JSON - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.json = iprot.readString(); - struct.setJsonIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // CREDS - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); - struct.creds.read(iprot); - struct.setCredsIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // TRANSACTION + case 1: // TOKEN if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.transaction.read(iprot); - struct.setTransactionIsSet(true); + struct.token = new com.cinchapi.concourse.thrift.AccessToken(); + struct.token.read(iprot); + struct.setTokenIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 2: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -169545,23 +169153,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_args str } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, insertJson_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, stage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.json != null) { - oprot.writeFieldBegin(JSON_FIELD_DESC); - oprot.writeString(struct.json); - oprot.writeFieldEnd(); - } - if (struct.creds != null) { - oprot.writeFieldBegin(CREDS_FIELD_DESC); - struct.creds.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.transaction != null) { - oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); - struct.transaction.write(oprot); + if (struct.token != null) { + oprot.writeFieldBegin(TOKEN_FIELD_DESC); + struct.token.write(oprot); oprot.writeFieldEnd(); } if (struct.environment != null) { @@ -169575,40 +169173,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, insertJson_args st } - private static class insertJson_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class stage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJson_argsTupleScheme getScheme() { - return new insertJson_argsTupleScheme(); + public stage_argsTupleScheme getScheme() { + return new stage_argsTupleScheme(); } } - private static class insertJson_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class stage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, insertJson_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, stage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetJson()) { + if (struct.isSetToken()) { optionals.set(0); } - if (struct.isSetCreds()) { - optionals.set(1); - } - if (struct.isSetTransaction()) { - optionals.set(2); - } if (struct.isSetEnvironment()) { - optionals.set(3); - } - oprot.writeBitSet(optionals, 4); - if (struct.isSetJson()) { - oprot.writeString(struct.json); - } - if (struct.isSetCreds()) { - struct.creds.write(oprot); + optionals.set(1); } - if (struct.isSetTransaction()) { - struct.transaction.write(oprot); + oprot.writeBitSet(optionals, 2); + if (struct.isSetToken()) { + struct.token.write(oprot); } if (struct.isSetEnvironment()) { oprot.writeString(struct.environment); @@ -169616,24 +169202,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJson_args str } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, insertJson_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, stage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { - struct.json = iprot.readString(); - struct.setJsonIsSet(true); + struct.token = new com.cinchapi.concourse.thrift.AccessToken(); + struct.token.read(iprot); + struct.setTokenIsSet(true); } if (incoming.get(1)) { - struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); - struct.creds.read(iprot); - struct.setCredsIsSet(true); - } - if (incoming.get(2)) { - struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.transaction.read(iprot); - struct.setTransactionIsSet(true); - } - if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -169645,34 +169222,25 @@ private static S scheme(org.apache. } } - public static class insertJson_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJson_result"); + public static class stage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("stage_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJson_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJson_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new stage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new stage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Set success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2; // 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"), EX((short)1, "ex"), - EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"), - EX5((short)5, "ex5"); + EX2((short)2, "ex2"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -169694,12 +169262,6 @@ public static _Fields findByThriftId(int fieldId) { return EX; case 2: // EX2 return EX2; - case 3: // EX3 - return EX3; - case 4: // EX4 - return EX4; - case 5: // EX5 - return EX5; default: return null; } @@ -169747,70 +169309,47 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); - tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); - tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJson_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(stage_result.class, metaDataMap); } - public insertJson_result() { + public stage_result() { } - public insertJson_result( - java.util.Set success, + public stage_result( + com.cinchapi.concourse.thrift.TransactionToken success, com.cinchapi.concourse.thrift.SecurityException ex, - com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.InvalidArgumentException ex4, - com.cinchapi.concourse.thrift.PermissionException ex5) + com.cinchapi.concourse.thrift.PermissionException ex2) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; - this.ex3 = ex3; - this.ex4 = ex4; - this.ex5 = ex5; } /** * Performs a deep copy on other. */ - public insertJson_result(insertJson_result other) { + public stage_result(stage_result other) { if (other.isSetSuccess()) { - java.util.Set __this__success = new java.util.LinkedHashSet(other.success); - this.success = __this__success; + this.success = new com.cinchapi.concourse.thrift.TransactionToken(other.success); } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } if (other.isSetEx2()) { - this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); - } - if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex4); - } - if (other.isSetEx5()) { - this.ex5 = new com.cinchapi.concourse.thrift.PermissionException(other.ex5); + this.ex2 = new com.cinchapi.concourse.thrift.PermissionException(other.ex2); } } @Override - public insertJson_result deepCopy() { - return new insertJson_result(this); + public stage_result deepCopy() { + return new stage_result(this); } @Override @@ -169818,33 +169357,14 @@ public void clear() { this.success = null; this.ex = null; this.ex2 = null; - this.ex3 = null; - this.ex4 = null; - this.ex5 = null; - } - - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getSuccessIterator() { - return (this.success == null) ? null : this.success.iterator(); - } - - public void addToSuccess(long elem) { - if (this.success == null) { - this.success = new java.util.LinkedHashSet(); - } - this.success.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.Set getSuccess() { + public com.cinchapi.concourse.thrift.TransactionToken getSuccess() { return this.success; } - public insertJson_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public stage_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken success) { this.success = success; return this; } @@ -169869,7 +169389,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public insertJson_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public stage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -169890,11 +169410,11 @@ public void setExIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionException getEx2() { + public com.cinchapi.concourse.thrift.PermissionException getEx2() { return this.ex2; } - public insertJson_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public stage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex2) { this.ex2 = ex2; return this; } @@ -169914,81 +169434,6 @@ public void setEx2IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { - return this.ex3; - } - - public insertJson_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { - this.ex3 = ex3; - return this; - } - - public void unsetEx3() { - this.ex3 = null; - } - - /** Returns true if field ex3 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx3() { - return this.ex3 != null; - } - - public void setEx3IsSet(boolean value) { - if (!value) { - this.ex3 = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.InvalidArgumentException getEx4() { - return this.ex4; - } - - public insertJson_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx5() { - return this.ex5; - } - - public insertJson_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { - this.ex5 = ex5; - return this; - } - - public void unsetEx5() { - this.ex5 = null; - } - - /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx5() { - return this.ex5 != null; - } - - public void setEx5IsSet(boolean value) { - if (!value) { - this.ex5 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -169996,7 +169441,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Set)value); + setSuccess((com.cinchapi.concourse.thrift.TransactionToken)value); } break; @@ -170012,31 +169457,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx2(); } else { - setEx2((com.cinchapi.concourse.thrift.TransactionException)value); - } - break; - - case EX3: - if (value == null) { - unsetEx3(); - } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.InvalidArgumentException)value); - } - break; - - case EX5: - if (value == null) { - unsetEx5(); - } else { - setEx5((com.cinchapi.concourse.thrift.PermissionException)value); + setEx2((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -170056,15 +169477,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX2: return getEx2(); - case EX3: - return getEx3(); - - case EX4: - return getEx4(); - - case EX5: - return getEx5(); - } throw new java.lang.IllegalStateException(); } @@ -170083,24 +169495,18 @@ public boolean isSet(_Fields field) { return isSetEx(); case EX2: return isSetEx2(); - case EX3: - return isSetEx3(); - case EX4: - return isSetEx4(); - case EX5: - return isSetEx5(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof insertJson_result) - return this.equals((insertJson_result)that); + if (that instanceof stage_result) + return this.equals((stage_result)that); return false; } - public boolean equals(insertJson_result that) { + public boolean equals(stage_result that) { if (that == null) return false; if (this == that) @@ -170133,33 +169539,6 @@ public boolean equals(insertJson_result that) { return false; } - boolean this_present_ex3 = true && this.isSetEx3(); - boolean that_present_ex3 = true && that.isSetEx3(); - if (this_present_ex3 || that_present_ex3) { - if (!(this_present_ex3 && that_present_ex3)) - return false; - if (!this.ex3.equals(that.ex3)) - return false; - } - - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - - boolean this_present_ex5 = true && this.isSetEx5(); - boolean that_present_ex5 = true && that.isSetEx5(); - if (this_present_ex5 || that_present_ex5) { - if (!(this_present_ex5 && that_present_ex5)) - return false; - if (!this.ex5.equals(that.ex5)) - return false; - } - return true; } @@ -170179,23 +169558,11 @@ public int hashCode() { if (isSetEx2()) hashCode = hashCode * 8191 + ex2.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx3()) ? 131071 : 524287); - if (isSetEx3()) - hashCode = hashCode * 8191 + ex3.hashCode(); - - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - - hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); - if (isSetEx5()) - hashCode = hashCode * 8191 + ex5.hashCode(); - return hashCode; } @Override - public int compareTo(insertJson_result other) { + public int compareTo(stage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -170232,36 +169599,6 @@ public int compareTo(insertJson_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx3(), other.isSetEx3()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx3()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex3, other.ex3); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetEx5(), other.isSetEx5()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx5()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex5, other.ex5); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -170282,7 +169619,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJson_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("stage_result("); boolean first = true; sb.append("success:"); @@ -170308,30 +169645,6 @@ public java.lang.String toString() { sb.append(this.ex2); } first = false; - if (!first) sb.append(", "); - sb.append("ex3:"); - if (this.ex3 == null) { - sb.append("null"); - } else { - sb.append(this.ex3); - } - first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; - if (!first) sb.append(", "); - sb.append("ex5:"); - if (this.ex5 == null) { - sb.append("null"); - } else { - sb.append(this.ex5); - } - first = false; sb.append(")"); return sb.toString(); } @@ -170339,6 +169652,9 @@ public java.lang.String 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 { @@ -170357,17 +169673,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class insertJson_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class stage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJson_resultStandardScheme getScheme() { - return new insertJson_resultStandardScheme(); + public stage_resultStandardScheme getScheme() { + return new stage_resultStandardScheme(); } } - private static class insertJson_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class stage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, stage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -170378,18 +169694,9 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_result s } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.SET) { - { - org.apache.thrift.protocol.TSet _set920 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set920.size); - long _elem921; - for (int _i922 = 0; _i922 < _set920.size; ++_i922) - { - _elem921 = iprot.readI64(); - struct.success.add(_elem921); - } - iprot.readSetEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.success = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.success.read(iprot); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -170406,40 +169713,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_result s break; case 2: // EX2 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // EX3 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); - struct.ex3.read(iprot); - struct.setEx3IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // EX5 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex5 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex5.read(iprot); - struct.setEx5IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -170452,20 +169732,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_result s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, insertJson_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, stage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter923 : struct.success) - { - oprot.writeI64(_iter923); - } - oprot.writeSetEnd(); - } + struct.success.write(oprot); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -170478,38 +169751,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, insertJson_result struct.ex2.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex3 != null) { - oprot.writeFieldBegin(EX3_FIELD_DESC); - struct.ex3.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.ex5 != null) { - oprot.writeFieldBegin(EX5_FIELD_DESC); - struct.ex5.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class insertJson_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class stage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJson_resultTupleScheme getScheme() { - return new insertJson_resultTupleScheme(); + public stage_resultTupleScheme getScheme() { + return new stage_resultTupleScheme(); } } - private static class insertJson_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class stage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, insertJson_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, stage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -170521,24 +169779,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJson_result s if (struct.isSetEx2()) { optionals.set(2); } - if (struct.isSetEx3()) { - optionals.set(3); - } - if (struct.isSetEx4()) { - optionals.set(4); - } - if (struct.isSetEx5()) { - optionals.set(5); - } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 3); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (long _iter924 : struct.success) - { - oprot.writeI64(_iter924); - } - } + struct.success.write(oprot); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -170546,32 +169789,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJson_result s if (struct.isSetEx2()) { struct.ex2.write(oprot); } - if (struct.isSetEx3()) { - struct.ex3.write(oprot); - } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } - if (struct.isSetEx5()) { - struct.ex5.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, insertJson_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, stage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TSet _set925 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set925.size); - long _elem926; - for (int _i927 = 0; _i927 < _set925.size; ++_i927) - { - _elem926 = iprot.readI64(); - struct.success.add(_elem926); - } - } + struct.success = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.success.read(iprot); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -170580,25 +169806,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, insertJson_result st struct.setExIsSet(true); } if (incoming.get(2)) { - struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); - struct.ex3.read(iprot); - struct.setEx3IsSet(true); - } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } - if (incoming.get(5)) { - struct.ex5 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex5.read(iprot); - struct.setEx5IsSet(true); - } } } @@ -170607,20 +169818,18 @@ private static S scheme(org.apache. } } - public static class insertJsonRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJsonRecord_args"); + public static class insertJson_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJson_args"); private static final org.apache.thrift.protocol.TField JSON_FIELD_DESC = new org.apache.thrift.protocol.TField("json", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJsonRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJsonRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJson_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJson_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String json; // required - public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -170628,10 +169837,9 @@ public static class insertJsonRecord_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -170649,13 +169857,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // JSON return JSON; - case 2: // RECORD - return RECORD; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -170700,15 +169906,11 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.JSON, new org.apache.thrift.meta_data.FieldMetaData("json", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -170716,23 +169918,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJsonRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJson_args.class, metaDataMap); } - public insertJsonRecord_args() { + public insertJson_args() { } - public insertJsonRecord_args( + public insertJson_args( java.lang.String json, - long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.json = json; - this.record = record; - setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -170741,12 +169940,10 @@ public insertJsonRecord_args( /** * Performs a deep copy on other. */ - public insertJsonRecord_args(insertJsonRecord_args other) { - __isset_bitfield = other.__isset_bitfield; + public insertJson_args(insertJson_args other) { if (other.isSetJson()) { this.json = other.json; } - this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -170759,15 +169956,13 @@ public insertJsonRecord_args(insertJsonRecord_args other) { } @Override - public insertJsonRecord_args deepCopy() { - return new insertJsonRecord_args(this); + public insertJson_args deepCopy() { + return new insertJson_args(this); } @Override public void clear() { this.json = null; - setRecordIsSet(false); - this.record = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -170778,7 +169973,7 @@ public java.lang.String getJson() { return this.json; } - public insertJsonRecord_args setJson(@org.apache.thrift.annotation.Nullable java.lang.String json) { + public insertJson_args setJson(@org.apache.thrift.annotation.Nullable java.lang.String json) { this.json = json; return this; } @@ -170798,35 +169993,12 @@ public void setJsonIsSet(boolean value) { } } - public long getRecord() { - return this.record; - } - - public insertJsonRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); - return this; - } - - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); - } - - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); - } - - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public insertJsonRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public insertJson_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -170851,7 +170023,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public insertJsonRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public insertJson_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -170876,7 +170048,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public insertJsonRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public insertJson_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -170907,14 +170079,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORD: - if (value == null) { - unsetRecord(); - } else { - setRecord((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -170949,9 +170113,6 @@ public java.lang.Object getFieldValue(_Fields field) { case JSON: return getJson(); - case RECORD: - return getRecord(); - case CREDS: return getCreds(); @@ -170975,8 +170136,6 @@ public boolean isSet(_Fields field) { switch (field) { case JSON: return isSetJson(); - case RECORD: - return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -170989,12 +170148,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof insertJsonRecord_args) - return this.equals((insertJsonRecord_args)that); + if (that instanceof insertJson_args) + return this.equals((insertJson_args)that); return false; } - public boolean equals(insertJsonRecord_args that) { + public boolean equals(insertJson_args that) { if (that == null) return false; if (this == that) @@ -171009,15 +170168,6 @@ public boolean equals(insertJsonRecord_args that) { return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) - return false; - if (this.record != that.record) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -171056,8 +170206,6 @@ public int hashCode() { if (isSetJson()) hashCode = hashCode * 8191 + json.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -171074,7 +170222,7 @@ public int hashCode() { } @Override - public int compareTo(insertJsonRecord_args other) { + public int compareTo(insertJson_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -171091,16 +170239,6 @@ public int compareTo(insertJsonRecord_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -171152,7 +170290,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJsonRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJson_args("); boolean first = true; sb.append("json:"); @@ -171163,10 +170301,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -171215,25 +170349,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 insertJsonRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJson_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJsonRecord_argsStandardScheme getScheme() { - return new insertJsonRecord_argsStandardScheme(); + public insertJson_argsStandardScheme getScheme() { + return new insertJson_argsStandardScheme(); } } - private static class insertJsonRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class insertJson_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -171251,15 +170383,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -171268,7 +170392,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -171277,7 +170401,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -171297,7 +170421,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, insertJson_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -171306,9 +170430,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecord_a oprot.writeString(struct.json); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -171330,41 +170451,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecord_a } - private static class insertJsonRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJson_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJsonRecord_argsTupleScheme getScheme() { - return new insertJsonRecord_argsTupleScheme(); + public insertJson_argsTupleScheme getScheme() { + return new insertJson_argsTupleScheme(); } } - private static class insertJsonRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class insertJson_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, insertJson_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetJson()) { optionals.set(0); } - if (struct.isSetRecord()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetJson()) { oprot.writeString(struct.json); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -171377,28 +170492,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, insertJson_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.json = iprot.readString(); struct.setJsonIsSet(true); } if (incoming.get(1)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -171410,20 +170521,20 @@ private static S scheme(org.apache. } } - public static class insertJsonRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJsonRecord_result"); + public static class insertJson_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJson_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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJsonRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJsonRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJson_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJson_resultTupleSchemeFactory(); - public boolean success; // required + public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required @@ -171508,13 +170619,12 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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))); + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -171526,14 +170636,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJsonRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJson_result.class, metaDataMap); } - public insertJsonRecord_result() { + public insertJson_result() { } - public insertJsonRecord_result( - boolean success, + public insertJson_result( + java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.ParseException ex3, @@ -171542,7 +170652,6 @@ public insertJsonRecord_result( { this(); this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -171553,9 +170662,11 @@ public insertJsonRecord_result( /** * Performs a deep copy on other. */ - public insertJsonRecord_result(insertJsonRecord_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public insertJson_result(insertJson_result other) { + if (other.isSetSuccess()) { + java.util.Set __this__success = new java.util.LinkedHashSet(other.success); + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -171574,14 +170685,13 @@ public insertJsonRecord_result(insertJsonRecord_result other) { } @Override - public insertJsonRecord_result deepCopy() { - return new insertJsonRecord_result(this); + public insertJson_result deepCopy() { + return new insertJson_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; @@ -171589,27 +170699,45 @@ public void clear() { this.ex5 = null; } - public boolean isSuccess() { + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(long elem) { + if (this.success == null) { + this.success = new java.util.LinkedHashSet(); + } + this.success.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Set getSuccess() { return this.success; } - public insertJsonRecord_result setSuccess(boolean success) { + public insertJson_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; - setSuccessIsSet(true); return this; } public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + this.success = null; } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + return this.success != null; } public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + if (!value) { + this.success = null; + } } @org.apache.thrift.annotation.Nullable @@ -171617,7 +170745,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public insertJsonRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public insertJson_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -171642,7 +170770,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public insertJsonRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public insertJson_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -171667,7 +170795,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public insertJsonRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public insertJson_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -171692,7 +170820,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx4() { return this.ex4; } - public insertJsonRecord_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4) { + public insertJson_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4) { this.ex4 = ex4; return this; } @@ -171717,7 +170845,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx5() { return this.ex5; } - public insertJsonRecord_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { + public insertJson_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { this.ex5 = ex5; return this; } @@ -171744,7 +170872,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.Boolean)value); + setSuccess((java.util.Set)value); } break; @@ -171796,7 +170924,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return isSuccess(); + return getSuccess(); case EX: return getEx(); @@ -171843,23 +170971,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof insertJsonRecord_result) - return this.equals((insertJsonRecord_result)that); + if (that instanceof insertJson_result) + return this.equals((insertJson_result)that); return false; } - public boolean equals(insertJsonRecord_result that) { + public boolean equals(insertJson_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; + 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 != that.success) + if (!this.success.equals(that.success)) return false; } @@ -171915,7 +171043,9 @@ public boolean equals(insertJsonRecord_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -171941,7 +171071,7 @@ public int hashCode() { } @Override - public int compareTo(insertJsonRecord_result other) { + public int compareTo(insertJson_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -172028,11 +171158,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJsonRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJson_result("); boolean first = true; sb.append("success:"); - sb.append(this.success); + if (this.success == null) { + sb.append("null"); + } else { + sb.append(this.success); + } first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -172093,25 +171227,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 insertJsonRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJson_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJsonRecord_resultStandardScheme getScheme() { - return new insertJsonRecord_resultStandardScheme(); + public insertJson_resultStandardScheme getScheme() { + return new insertJson_resultStandardScheme(); } } - private static class insertJsonRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class insertJson_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, insertJson_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -172122,8 +171254,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_re } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); + if (schemeField.type == org.apache.thrift.protocol.TType.SET) { + { + org.apache.thrift.protocol.TSet _set920 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set920.size); + long _elem921; + for (int _i922 = 0; _i922 < _set920.size; ++_i922) + { + _elem921 = iprot.readI64(); + struct.success.add(_elem921); + } + iprot.readSetEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -172186,13 +171328,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, insertJson_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { + if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); + for (long _iter923 : struct.success) + { + oprot.writeI64(_iter923); + } + oprot.writeSetEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -172226,17 +171375,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecord_r } - private static class insertJsonRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJson_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJsonRecord_resultTupleScheme getScheme() { - return new insertJsonRecord_resultTupleScheme(); + public insertJson_resultTupleScheme getScheme() { + return new insertJson_resultTupleScheme(); } } - private static class insertJsonRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class insertJson_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, insertJson_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -172259,7 +171408,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_re } oprot.writeBitSet(optionals, 6); if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + { + oprot.writeI32(struct.success.size()); + for (long _iter924 : struct.success) + { + oprot.writeI64(_iter924); + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -172279,11 +171434,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, insertJson_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.success = iprot.readBool(); + { + org.apache.thrift.protocol.TSet _set925 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set925.size); + long _elem926; + for (int _i927 = 0; _i927 < _set925.size; ++_i927) + { + _elem926 = iprot.readI64(); + struct.success.add(_elem926); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -172319,20 +171483,20 @@ private static S scheme(org.apache. } } - public static class insertJsonRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJsonRecords_args"); + public static class insertJsonRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJsonRecord_args"); private static final org.apache.thrift.protocol.TField JSON_FIELD_DESC = new org.apache.thrift.protocol.TField("json", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJsonRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJsonRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJsonRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJsonRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String json; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -172340,7 +171504,7 @@ public static class insertJsonRecords_args implements org.apache.thrift.TBase metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.JSON, new org.apache.thrift.meta_data.FieldMetaData("json", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -172427,22 +171592,23 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJsonRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJsonRecord_args.class, metaDataMap); } - public insertJsonRecords_args() { + public insertJsonRecord_args() { } - public insertJsonRecords_args( + public insertJsonRecord_args( java.lang.String json, - java.util.List records, + long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.json = json; - this.records = records; + this.record = record; + setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -172451,14 +171617,12 @@ public insertJsonRecords_args( /** * Performs a deep copy on other. */ - public insertJsonRecords_args(insertJsonRecords_args other) { + public insertJsonRecord_args(insertJsonRecord_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetJson()) { this.json = other.json; } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; - } + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -172471,14 +171635,15 @@ public insertJsonRecords_args(insertJsonRecords_args other) { } @Override - public insertJsonRecords_args deepCopy() { - return new insertJsonRecords_args(this); + public insertJsonRecord_args deepCopy() { + return new insertJsonRecord_args(this); } @Override public void clear() { this.json = null; - this.records = null; + setRecordIsSet(false); + this.record = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -172489,7 +171654,7 @@ public java.lang.String getJson() { return this.json; } - public insertJsonRecords_args setJson(@org.apache.thrift.annotation.Nullable java.lang.String json) { + public insertJsonRecord_args setJson(@org.apache.thrift.annotation.Nullable java.lang.String json) { this.json = json; return this; } @@ -172509,45 +171674,27 @@ public void setJsonIsSet(boolean value) { } } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public long getRecord() { + return this.record; } - public insertJsonRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public insertJsonRecord_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetRecords() { - this.records = null; + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -172555,7 +171702,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public insertJsonRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public insertJsonRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -172580,7 +171727,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public insertJsonRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public insertJsonRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -172605,7 +171752,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public insertJsonRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public insertJsonRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -172636,11 +171783,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); } break; @@ -172678,8 +171825,8 @@ public java.lang.Object getFieldValue(_Fields field) { case JSON: return getJson(); - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); case CREDS: return getCreds(); @@ -172704,8 +171851,8 @@ public boolean isSet(_Fields field) { switch (field) { case JSON: return isSetJson(); - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -172718,12 +171865,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof insertJsonRecords_args) - return this.equals((insertJsonRecords_args)that); + if (that instanceof insertJsonRecord_args) + return this.equals((insertJsonRecord_args)that); return false; } - public boolean equals(insertJsonRecords_args that) { + public boolean equals(insertJsonRecord_args that) { if (that == null) return false; if (this == that) @@ -172738,12 +171885,12 @@ public boolean equals(insertJsonRecords_args that) { return false; } - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) return false; } @@ -172785,9 +171932,7 @@ public int hashCode() { if (isSetJson()) hashCode = hashCode * 8191 + json.hashCode(); - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -172805,7 +171950,7 @@ public int hashCode() { } @Override - public int compareTo(insertJsonRecords_args other) { + public int compareTo(insertJsonRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -172822,12 +171967,12 @@ public int compareTo(insertJsonRecords_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } @@ -172883,7 +172028,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJsonRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJsonRecord_args("); boolean first = true; sb.append("json:"); @@ -172894,12 +172039,8 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } + sb.append("record:"); + sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -172950,23 +172091,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 insertJsonRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJsonRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJsonRecords_argsStandardScheme getScheme() { - return new insertJsonRecords_argsStandardScheme(); + public insertJsonRecord_argsStandardScheme getScheme() { + return new insertJsonRecord_argsStandardScheme(); } } - private static class insertJsonRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class insertJsonRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -172984,20 +172127,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecords_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list928 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list928.size); - long _elem929; - for (int _i930 = 0; _i930 < _list928.size; ++_i930) - { - _elem929 = iprot.readI64(); - struct.records.add(_elem929); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 2: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -173040,7 +172173,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecords_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -173049,18 +172182,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecords_ oprot.writeString(struct.json); oprot.writeFieldEnd(); } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter931 : struct.records) - { - oprot.writeI64(_iter931); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -173082,23 +172206,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecords_ } - private static class insertJsonRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJsonRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJsonRecords_argsTupleScheme getScheme() { - return new insertJsonRecords_argsTupleScheme(); + public insertJsonRecord_argsTupleScheme getScheme() { + return new insertJsonRecord_argsTupleScheme(); } } - private static class insertJsonRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class insertJsonRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetJson()) { optionals.set(0); } - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -173114,14 +172238,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_a if (struct.isSetJson()) { oprot.writeString(struct.json); } - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter932 : struct.records) - { - oprot.writeI64(_iter932); - } - } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -173135,7 +172253,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -173143,17 +172261,8 @@ public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_ar struct.setJsonIsSet(true); } if (incoming.get(1)) { - { - org.apache.thrift.protocol.TList _list933 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list933.size); - long _elem934; - for (int _i935 = 0; _i935 < _list933.size; ++_i935) - { - _elem934 = iprot.readI64(); - struct.records.add(_elem934); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -173177,20 +172286,20 @@ private static S scheme(org.apache. } } - public static class insertJsonRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJsonRecords_result"); + public static class insertJsonRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJsonRecord_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJsonRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJsonRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJsonRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJsonRecord_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map success; // required + public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required @@ -173275,13 +172384,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -173293,14 +172402,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJsonRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJsonRecord_result.class, metaDataMap); } - public insertJsonRecords_result() { + public insertJsonRecord_result() { } - public insertJsonRecords_result( - java.util.Map success, + public insertJsonRecord_result( + boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.ParseException ex3, @@ -173309,6 +172418,7 @@ public insertJsonRecords_result( { this(); this.success = success; + setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -173319,11 +172429,9 @@ public insertJsonRecords_result( /** * Performs a deep copy on other. */ - public insertJsonRecords_result(insertJsonRecords_result other) { - if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.LinkedHashMap(other.success); - this.success = __this__success; - } + public insertJsonRecord_result(insertJsonRecord_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -173342,13 +172450,14 @@ public insertJsonRecords_result(insertJsonRecords_result other) { } @Override - public insertJsonRecords_result deepCopy() { - return new insertJsonRecords_result(this); + public insertJsonRecord_result deepCopy() { + return new insertJsonRecord_result(this); } @Override public void clear() { - this.success = null; + setSuccessIsSet(false); + this.success = false; this.ex = null; this.ex2 = null; this.ex3 = null; @@ -173356,40 +172465,27 @@ public void clear() { this.ex5 = null; } - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - public void putToSuccess(long key, boolean val) { - if (this.success == null) { - this.success = new java.util.LinkedHashMap(); - } - this.success.put(key, val); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { + public boolean isSuccess() { return this.success; } - public insertJsonRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public insertJsonRecord_result setSuccess(boolean success) { this.success = success; + setSuccessIsSet(true); return this; } public void unsetSuccess() { - this.success = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return this.success != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); } public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -173397,7 +172493,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public insertJsonRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public insertJsonRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -173422,7 +172518,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public insertJsonRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public insertJsonRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -173447,7 +172543,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public insertJsonRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public insertJsonRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -173472,7 +172568,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx4() { return this.ex4; } - public insertJsonRecords_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4) { + public insertJsonRecord_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4) { this.ex4 = ex4; return this; } @@ -173497,7 +172593,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx5() { return this.ex5; } - public insertJsonRecords_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { + public insertJsonRecord_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { this.ex5 = ex5; return this; } @@ -173524,7 +172620,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map)value); + setSuccess((java.lang.Boolean)value); } break; @@ -173576,7 +172672,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return getSuccess(); + return isSuccess(); case EX: return getEx(); @@ -173623,23 +172719,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof insertJsonRecords_result) - return this.equals((insertJsonRecords_result)that); + if (that instanceof insertJsonRecord_result) + return this.equals((insertJsonRecord_result)that); return false; } - public boolean equals(insertJsonRecords_result that) { + public boolean equals(insertJsonRecord_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true && this.isSetSuccess(); - boolean that_present_success = true && that.isSetSuccess(); + boolean this_present_success = true; + boolean that_present_success = true; if (this_present_success || that_present_success) { if (!(this_present_success && that_present_success)) return false; - if (!this.success.equals(that.success)) + if (this.success != that.success) return false; } @@ -173695,9 +172791,7 @@ public boolean equals(insertJsonRecords_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -173723,7 +172817,7 @@ public int hashCode() { } @Override - public int compareTo(insertJsonRecords_result other) { + public int compareTo(insertJsonRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -173810,15 +172904,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJsonRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJsonRecord_result("); boolean first = true; sb.append("success:"); - if (this.success == null) { - sb.append("null"); - } else { - sb.append(this.success); - } + sb.append(this.success); first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -173879,23 +172969,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 insertJsonRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJsonRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJsonRecords_resultStandardScheme getScheme() { - return new insertJsonRecords_resultStandardScheme(); + public insertJsonRecord_resultStandardScheme getScheme() { + return new insertJsonRecord_resultStandardScheme(); } } - private static class insertJsonRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class insertJsonRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -173906,20 +172998,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecords_r } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { - { - org.apache.thrift.protocol.TMap _map936 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map936.size); - long _key937; - boolean _val938; - for (int _i939 = 0; _i939 < _map936.size; ++_i939) - { - _key937 = iprot.readI64(); - _val938 = iprot.readBool(); - struct.success.put(_key937, _val938); - } - iprot.readMapEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -173982,21 +173062,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecords_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { + if (struct.isSetSuccess()) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); - for (java.util.Map.Entry _iter940 : struct.success.entrySet()) - { - oprot.writeI64(_iter940.getKey()); - oprot.writeBool(_iter940.getValue()); - } - oprot.writeMapEnd(); - } + oprot.writeBool(struct.success); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -174030,17 +173102,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecords_ } - private static class insertJsonRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJsonRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public insertJsonRecords_resultTupleScheme getScheme() { - return new insertJsonRecords_resultTupleScheme(); + public insertJsonRecord_resultTupleScheme getScheme() { + return new insertJsonRecord_resultTupleScheme(); } } - private static class insertJsonRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class insertJsonRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -174063,14 +173135,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_r } oprot.writeBitSet(optionals, 6); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter941 : struct.success.entrySet()) - { - oprot.writeI64(_iter941.getKey()); - oprot.writeBool(_iter941.getValue()); - } - } + oprot.writeBool(struct.success); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -174090,22 +173155,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TMap _map942 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL); - struct.success = new java.util.LinkedHashMap(2*_map942.size); - long _key943; - boolean _val944; - for (int _i945 = 0; _i945 < _map942.size; ++_i945) - { - _key943 = iprot.readI64(); - _val944 = iprot.readBool(); - struct.success.put(_key943, _val944); - } - } + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -174141,34 +173195,31 @@ private static S scheme(org.apache. } } - public static class removeKeyValueRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("removeKeyValueRecord_args"); + public static class insertJsonRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJsonRecords_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField JSON_FIELD_DESC = new org.apache.thrift.protocol.TField("json", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new removeKeyValueRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new removeKeyValueRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJsonRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJsonRecords_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required - public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String json; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - VALUE((short)2, "value"), - RECORD((short)3, "record"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + JSON((short)1, "json"), + RECORDS((short)2, "records"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -174184,17 +173235,15 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // VALUE - return VALUE; - case 3: // RECORD - return RECORD; - case 4: // CREDS + case 1: // JSON + return JSON; + case 2: // RECORDS + return RECORDS; + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -174239,17 +173288,14 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.JSON, new org.apache.thrift.meta_data.FieldMetaData("json", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -174257,25 +173303,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(removeKeyValueRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJsonRecords_args.class, metaDataMap); } - public removeKeyValueRecord_args() { + public insertJsonRecords_args() { } - public removeKeyValueRecord_args( - java.lang.String key, - com.cinchapi.concourse.thrift.TObject value, - long record, + public insertJsonRecords_args( + java.lang.String json, + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.value = value; - this.record = record; - setRecordIsSet(true); + this.json = json; + this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -174284,15 +173327,14 @@ public removeKeyValueRecord_args( /** * Performs a deep copy on other. */ - public removeKeyValueRecord_args(removeKeyValueRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; + public insertJsonRecords_args(insertJsonRecords_args other) { + if (other.isSetJson()) { + this.json = other.json; } - if (other.isSetValue()) { - this.value = new com.cinchapi.concourse.thrift.TObject(other.value); + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; } - this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -174305,92 +173347,83 @@ public removeKeyValueRecord_args(removeKeyValueRecord_args other) { } @Override - public removeKeyValueRecord_args deepCopy() { - return new removeKeyValueRecord_args(this); + public insertJsonRecords_args deepCopy() { + return new insertJsonRecords_args(this); } @Override public void clear() { - this.key = null; - this.value = null; - setRecordIsSet(false); - this.record = 0; + this.json = null; + this.records = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.lang.String getJson() { + return this.json; } - public removeKeyValueRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public insertJsonRecords_args setJson(@org.apache.thrift.annotation.Nullable java.lang.String json) { + this.json = json; return this; } - public void unsetKey() { - this.key = null; + public void unsetJson() { + this.json = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field json is set (has been assigned a value) and false otherwise */ + public boolean isSetJson() { + return this.json != null; } - public void setKeyIsSet(boolean value) { + public void setJsonIsSet(boolean value) { if (!value) { - this.key = null; + this.json = null; } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TObject getValue() { - return this.value; - } - - public removeKeyValueRecord_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { - this.value = value; - return this; - } - - public void unsetValue() { - this.value = null; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - /** Returns true if field value is set (has been assigned a value) and false otherwise */ - public boolean isSetValue() { - return this.value != null; + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); } - public void setValueIsSet(boolean value) { - if (!value) { - this.value = null; + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); } + this.records.add(elem); } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; } - public removeKeyValueRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public insertJsonRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } @org.apache.thrift.annotation.Nullable @@ -174398,7 +173431,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public removeKeyValueRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public insertJsonRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -174423,7 +173456,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public removeKeyValueRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public insertJsonRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -174448,7 +173481,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public removeKeyValueRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public insertJsonRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -174471,27 +173504,19 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: - if (value == null) { - unsetKey(); - } else { - setKey((java.lang.String)value); - } - break; - - case VALUE: + case JSON: if (value == null) { - unsetValue(); + unsetJson(); } else { - setValue((com.cinchapi.concourse.thrift.TObject)value); + setJson((java.lang.String)value); } break; - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; @@ -174526,14 +173551,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); - - case VALUE: - return getValue(); + case JSON: + return getJson(); - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); case CREDS: return getCreds(); @@ -174556,12 +173578,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case VALUE: - return isSetValue(); - case RECORD: - return isSetRecord(); + case JSON: + return isSetJson(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -174574,41 +173594,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof removeKeyValueRecord_args) - return this.equals((removeKeyValueRecord_args)that); + if (that instanceof insertJsonRecords_args) + return this.equals((insertJsonRecords_args)that); return false; } - public boolean equals(removeKeyValueRecord_args that) { + public boolean equals(insertJsonRecords_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) - return false; - if (!this.key.equals(that.key)) - return false; - } - - boolean this_present_value = true && this.isSetValue(); - boolean that_present_value = true && that.isSetValue(); - if (this_present_value || that_present_value) { - if (!(this_present_value && that_present_value)) + boolean this_present_json = true && this.isSetJson(); + boolean that_present_json = true && that.isSetJson(); + if (this_present_json || that_present_json) { + if (!(this_present_json && that_present_json)) return false; - if (!this.value.equals(that.value)) + if (!this.json.equals(that.json)) return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } @@ -174646,15 +173657,13 @@ public boolean equals(removeKeyValueRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); - - hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); - if (isSetValue()) - hashCode = hashCode * 8191 + value.hashCode(); + hashCode = hashCode * 8191 + ((isSetJson()) ? 131071 : 524287); + if (isSetJson()) + hashCode = hashCode * 8191 + json.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -174672,39 +173681,29 @@ public int hashCode() { } @Override - public int compareTo(removeKeyValueRecord_args other) { + public int compareTo(insertJsonRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetJson(), other.isSetJson()); if (lastComparison != 0) { return lastComparison; } - if (isSetValue()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, other.value); + if (isSetJson()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.json, other.json); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -174760,29 +173759,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("removeKeyValueRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJsonRecords_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("json:"); + if (this.json == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.json); } first = false; if (!first) sb.append(", "); - sb.append("value:"); - if (this.value == null) { + sb.append("records:"); + if (this.records == null) { sb.append("null"); } else { - sb.append(this.value); + sb.append(this.records); } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -174813,9 +173808,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (value != null) { - value.validate(); - } if (creds != null) { creds.validate(); } @@ -174834,25 +173826,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 removeKeyValueRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJsonRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public removeKeyValueRecord_argsStandardScheme getScheme() { - return new removeKeyValueRecord_argsStandardScheme(); + public insertJsonRecords_argsStandardScheme getScheme() { + return new insertJsonRecords_argsStandardScheme(); } } - private static class removeKeyValueRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class insertJsonRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -174862,32 +173852,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor break; } switch (schemeField.id) { - case 1: // KEY + case 1: // JSON if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // VALUE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.value = new com.cinchapi.concourse.thrift.TObject(); - struct.value.read(iprot); - struct.setValueIsSet(true); + struct.json = iprot.readString(); + struct.setJsonIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 2: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list928 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list928.size); + long _elem929; + for (int _i930 = 0; _i930 < _list928.size; ++_i930) + { + _elem929 = iprot.readI64(); + struct.records.add(_elem929); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -174896,7 +173887,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -174905,7 +173896,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -174925,23 +173916,27 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.json != null) { + oprot.writeFieldBegin(JSON_FIELD_DESC); + oprot.writeString(struct.json); oprot.writeFieldEnd(); } - if (struct.value != null) { - oprot.writeFieldBegin(VALUE_FIELD_DESC); - struct.value.write(oprot); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter931 : struct.records) + { + oprot.writeI64(_iter931); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -174963,46 +173958,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueReco } - private static class removeKeyValueRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJsonRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public removeKeyValueRecord_argsTupleScheme getScheme() { - return new removeKeyValueRecord_argsTupleScheme(); + public insertJsonRecords_argsTupleScheme getScheme() { + return new insertJsonRecords_argsTupleScheme(); } } - private static class removeKeyValueRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class insertJsonRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetJson()) { optionals.set(0); } - if (struct.isSetValue()) { + if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetRecord()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); - } - oprot.writeBitSet(optionals, 6); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + optionals.set(4); } - if (struct.isSetValue()) { - struct.value.write(oprot); + oprot.writeBitSet(optionals, 5); + if (struct.isSetJson()) { + oprot.writeString(struct.json); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter932 : struct.records) + { + oprot.writeI64(_iter932); + } + } } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -175016,33 +174011,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecor } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.json = iprot.readString(); + struct.setJsonIsSet(true); } if (incoming.get(1)) { - struct.value = new com.cinchapi.concourse.thrift.TObject(); - struct.value.read(iprot); - struct.setValueIsSet(true); + { + org.apache.thrift.protocol.TList _list933 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list933.size); + long _elem934; + for (int _i935 = 0; _i935 < _list933.size; ++_i935) + { + _elem934 = iprot.readI64(); + struct.records.add(_elem934); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -175054,23 +174053,25 @@ private static S scheme(org.apache. } } - public static class removeKeyValueRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("removeKeyValueRecord_result"); + public static class insertJsonRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("insertJsonRecords_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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new removeKeyValueRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new removeKeyValueRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new insertJsonRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new insertJsonRecords_resultTupleSchemeFactory(); - public boolean success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5; // 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 { @@ -175078,7 +174079,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { EX((short)1, "ex"), EX2((short)2, "ex2"), EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX4((short)4, "ex4"), + EX5((short)5, "ex5"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -175104,6 +174106,8 @@ public static _Fields findByThriftId(int fieldId) { return EX3; case 4: // EX4 return EX4; + case 5: // EX5 + return EX5; default: return null; } @@ -175147,50 +174151,55 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(removeKeyValueRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(insertJsonRecords_result.class, metaDataMap); } - public removeKeyValueRecord_result() { + public insertJsonRecords_result() { } - public removeKeyValueRecord_result( - boolean success, + public insertJsonRecords_result( + java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.InvalidArgumentException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.InvalidArgumentException ex4, + com.cinchapi.concourse.thrift.PermissionException ex5) { this(); this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; this.ex4 = ex4; + this.ex5 = ex5; } /** * Performs a deep copy on other. */ - public removeKeyValueRecord_result(removeKeyValueRecord_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public insertJsonRecords_result(insertJsonRecords_result other) { + if (other.isSetSuccess()) { + java.util.Map __this__success = new java.util.LinkedHashMap(other.success); + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -175198,49 +174207,65 @@ public removeKeyValueRecord_result(removeKeyValueRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); } if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex4 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex4); + } + if (other.isSetEx5()) { + this.ex5 = new com.cinchapi.concourse.thrift.PermissionException(other.ex5); } } @Override - public removeKeyValueRecord_result deepCopy() { - return new removeKeyValueRecord_result(this); + public insertJsonRecords_result deepCopy() { + return new insertJsonRecords_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; this.ex4 = null; + this.ex5 = null; } - public boolean isSuccess() { + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(long key, boolean val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap(); + } + this.success.put(key, val); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Map getSuccess() { return this.success; } - public removeKeyValueRecord_result setSuccess(boolean success) { + public insertJsonRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; - setSuccessIsSet(true); return this; } public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + this.success = null; } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + return this.success != null; } public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + if (!value) { + this.success = null; + } } @org.apache.thrift.annotation.Nullable @@ -175248,7 +174273,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public removeKeyValueRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public insertJsonRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -175273,7 +174298,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public removeKeyValueRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public insertJsonRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -175294,11 +174319,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public removeKeyValueRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public insertJsonRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -175319,11 +174344,11 @@ public void setEx3IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx4() { return this.ex4; } - public removeKeyValueRecord_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public insertJsonRecords_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4) { this.ex4 = ex4; return this; } @@ -175343,6 +174368,31 @@ public void setEx4IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx5() { + return this.ex5; + } + + public insertJsonRecords_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { + this.ex5 = ex5; + return this; + } + + public void unsetEx5() { + this.ex5 = null; + } + + /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx5() { + return this.ex5 != null; + } + + public void setEx5IsSet(boolean value) { + if (!value) { + this.ex5 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -175350,7 +174400,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.Boolean)value); + setSuccess((java.util.Map)value); } break; @@ -175374,7 +174424,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); } break; @@ -175382,7 +174432,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx4(); } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx4((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX5: + if (value == null) { + unsetEx5(); + } else { + setEx5((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -175394,7 +174452,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return isSuccess(); + return getSuccess(); case EX: return getEx(); @@ -175408,6 +174466,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX4: return getEx4(); + case EX5: + return getEx5(); + } throw new java.lang.IllegalStateException(); } @@ -175430,29 +174491,31 @@ public boolean isSet(_Fields field) { return isSetEx3(); case EX4: return isSetEx4(); + case EX5: + return isSetEx5(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof removeKeyValueRecord_result) - return this.equals((removeKeyValueRecord_result)that); + if (that instanceof insertJsonRecords_result) + return this.equals((insertJsonRecords_result)that); return false; } - public boolean equals(removeKeyValueRecord_result that) { + public boolean equals(insertJsonRecords_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; + 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 != that.success) + if (!this.success.equals(that.success)) return false; } @@ -175492,6 +174555,15 @@ public boolean equals(removeKeyValueRecord_result that) { return false; } + boolean this_present_ex5 = true && this.isSetEx5(); + boolean that_present_ex5 = true && that.isSetEx5(); + if (this_present_ex5 || that_present_ex5) { + if (!(this_present_ex5 && that_present_ex5)) + return false; + if (!this.ex5.equals(that.ex5)) + return false; + } + return true; } @@ -175499,7 +174571,9 @@ public boolean equals(removeKeyValueRecord_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -175517,11 +174591,15 @@ public int hashCode() { if (isSetEx4()) hashCode = hashCode * 8191 + ex4.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); + if (isSetEx5()) + hashCode = hashCode * 8191 + ex5.hashCode(); + return hashCode; } @Override - public int compareTo(removeKeyValueRecord_result other) { + public int compareTo(insertJsonRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -175578,6 +174656,16 @@ public int compareTo(removeKeyValueRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx5(), other.isSetEx5()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx5()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex5, other.ex5); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -175598,11 +174686,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("removeKeyValueRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("insertJsonRecords_result("); boolean first = true; sb.append("success:"); - sb.append(this.success); + if (this.success == null) { + sb.append("null"); + } else { + sb.append(this.success); + } first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -175636,6 +174728,14 @@ public java.lang.String toString() { sb.append(this.ex4); } first = false; + if (!first) sb.append(", "); + sb.append("ex5:"); + if (this.ex5 == null) { + sb.append("null"); + } else { + sb.append(this.ex5); + } + first = false; sb.append(")"); return sb.toString(); } @@ -175655,25 +174755,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 removeKeyValueRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJsonRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public removeKeyValueRecord_resultStandardScheme getScheme() { - return new removeKeyValueRecord_resultStandardScheme(); + public insertJsonRecords_resultStandardScheme getScheme() { + return new insertJsonRecords_resultStandardScheme(); } } - private static class removeKeyValueRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class insertJsonRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, insertJsonRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -175684,8 +174782,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map936 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map936.size); + long _key937; + boolean _val938; + for (int _i939 = 0; _i939 < _map936.size; ++_i939) + { + _key937 = iprot.readI64(); + _val938 = iprot.readBool(); + struct.success.put(_key937, _val938); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -175711,7 +174821,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { @@ -175720,13 +174830,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor break; case 4: // EX4 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex4.read(iprot); struct.setEx4IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 5: // EX5 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex5 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -175739,13 +174858,21 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, insertJsonRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { + if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); + for (java.util.Map.Entry _iter940 : struct.success.entrySet()) + { + oprot.writeI64(_iter940.getKey()); + oprot.writeBool(_iter940.getValue()); + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -175768,23 +174895,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueReco struct.ex4.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex5 != null) { + oprot.writeFieldBegin(EX5_FIELD_DESC); + struct.ex5.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class removeKeyValueRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class insertJsonRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public removeKeyValueRecord_resultTupleScheme getScheme() { - return new removeKeyValueRecord_resultTupleScheme(); + public insertJsonRecords_resultTupleScheme getScheme() { + return new insertJsonRecords_resultTupleScheme(); } } - private static class removeKeyValueRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class insertJsonRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -175802,9 +174934,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecor if (struct.isSetEx4()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetEx5()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry _iter941 : struct.success.entrySet()) + { + oprot.writeI64(_iter941.getKey()); + oprot.writeBool(_iter941.getValue()); + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -175818,14 +174960,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecor if (struct.isSetEx4()) { struct.ex4.write(oprot); } + if (struct.isSetEx5()) { + struct.ex5.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, insertJsonRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.success = iprot.readBool(); + { + org.apache.thrift.protocol.TMap _map942 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL); + struct.success = new java.util.LinkedHashMap(2*_map942.size); + long _key943; + boolean _val944; + for (int _i945 = 0; _i945 < _map942.size; ++_i945) + { + _key943 = iprot.readI64(); + _val944 = iprot.readBool(); + struct.success.put(_key943, _val944); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -175839,15 +174995,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex4.read(iprot); struct.setEx4IsSet(true); } + if (incoming.get(5)) { + struct.ex5 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } } } @@ -175856,22 +175017,22 @@ private static S scheme(org.apache. } } - public static class removeKeyValueRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("removeKeyValueRecords_args"); + public static class removeKeyValueRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("removeKeyValueRecord_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)3); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new removeKeyValueRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new removeKeyValueRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new removeKeyValueRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new removeKeyValueRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -175880,7 +175041,7 @@ public static class removeKeyValueRecords_args implements org.apache.thrift.TBas public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), VALUE((short)2, "value"), - RECORDS((short)3, "records"), + RECORD((short)3, "record"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -175903,8 +175064,8 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // VALUE return VALUE; - case 3: // RECORDS - return RECORDS; + case 3: // RECORD + return RECORD; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -175954,6 +175115,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -175961,9 +175124,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -175971,16 +175133,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(removeKeyValueRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(removeKeyValueRecord_args.class, metaDataMap); } - public removeKeyValueRecords_args() { + public removeKeyValueRecord_args() { } - public removeKeyValueRecords_args( + public removeKeyValueRecord_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, - java.util.List records, + long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -175988,7 +175150,8 @@ public removeKeyValueRecords_args( this(); this.key = key; this.value = value; - this.records = records; + this.record = record; + setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -175997,17 +175160,15 @@ public removeKeyValueRecords_args( /** * Performs a deep copy on other. */ - public removeKeyValueRecords_args(removeKeyValueRecords_args other) { + public removeKeyValueRecord_args(removeKeyValueRecord_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } if (other.isSetValue()) { this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; - } + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -176020,15 +175181,16 @@ public removeKeyValueRecords_args(removeKeyValueRecords_args other) { } @Override - public removeKeyValueRecords_args deepCopy() { - return new removeKeyValueRecords_args(this); + public removeKeyValueRecord_args deepCopy() { + return new removeKeyValueRecord_args(this); } @Override public void clear() { this.key = null; this.value = null; - this.records = null; + setRecordIsSet(false); + this.record = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -176039,7 +175201,7 @@ public java.lang.String getKey() { return this.key; } - public removeKeyValueRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public removeKeyValueRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -176064,7 +175226,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public removeKeyValueRecords_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public removeKeyValueRecord_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -176084,45 +175246,27 @@ public void setValueIsSet(boolean value) { } } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public long getRecord() { + return this.record; } - public removeKeyValueRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public removeKeyValueRecord_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetRecords() { - this.records = null; + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -176130,7 +175274,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public removeKeyValueRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public removeKeyValueRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -176155,7 +175299,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public removeKeyValueRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public removeKeyValueRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -176180,7 +175324,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public removeKeyValueRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public removeKeyValueRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -176219,11 +175363,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); } break; @@ -176264,8 +175408,8 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUE: return getValue(); - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); case CREDS: return getCreds(); @@ -176292,8 +175436,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case VALUE: return isSetValue(); - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -176306,12 +175450,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof removeKeyValueRecords_args) - return this.equals((removeKeyValueRecords_args)that); + if (that instanceof removeKeyValueRecord_args) + return this.equals((removeKeyValueRecord_args)that); return false; } - public boolean equals(removeKeyValueRecords_args that) { + public boolean equals(removeKeyValueRecord_args that) { if (that == null) return false; if (this == that) @@ -176335,12 +175479,12 @@ public boolean equals(removeKeyValueRecords_args that) { return false; } - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) return false; } @@ -176386,9 +175530,7 @@ public int hashCode() { if (isSetValue()) hashCode = hashCode * 8191 + value.hashCode(); - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -176406,7 +175548,7 @@ public int hashCode() { } @Override - public int compareTo(removeKeyValueRecords_args other) { + public int compareTo(removeKeyValueRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -176433,12 +175575,12 @@ public int compareTo(removeKeyValueRecords_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } @@ -176494,7 +175636,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("removeKeyValueRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("removeKeyValueRecord_args("); boolean first = true; sb.append("key:"); @@ -176513,12 +175655,8 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } + sb.append("record:"); + sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -176572,23 +175710,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 removeKeyValueRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class removeKeyValueRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public removeKeyValueRecords_argsStandardScheme getScheme() { - return new removeKeyValueRecords_argsStandardScheme(); + public removeKeyValueRecord_argsStandardScheme getScheme() { + return new removeKeyValueRecord_argsStandardScheme(); } } - private static class removeKeyValueRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class removeKeyValueRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -176615,20 +175755,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list946 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list946.size); - long _elem947; - for (int _i948 = 0; _i948 < _list946.size; ++_i948) - { - _elem947 = iprot.readI64(); - struct.records.add(_elem947); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 3: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -176671,7 +175801,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -176685,18 +175815,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueReco struct.value.write(oprot); oprot.writeFieldEnd(); } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter949 : struct.records) - { - oprot.writeI64(_iter949); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -176718,17 +175839,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueReco } - private static class removeKeyValueRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class removeKeyValueRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public removeKeyValueRecords_argsTupleScheme getScheme() { - return new removeKeyValueRecords_argsTupleScheme(); + public removeKeyValueRecord_argsTupleScheme getScheme() { + return new removeKeyValueRecord_argsTupleScheme(); } } - private static class removeKeyValueRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class removeKeyValueRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -176737,7 +175858,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecor if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -176756,14 +175877,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecor if (struct.isSetValue()) { struct.value.write(oprot); } - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter950 : struct.records) - { - oprot.writeI64(_iter950); - } - } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -176777,7 +175892,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecor } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -176790,17 +175905,8 @@ public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord struct.setValueIsSet(true); } if (incoming.get(2)) { - { - org.apache.thrift.protocol.TList _list951 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list951.size); - long _elem952; - for (int _i953 = 0; _i953 < _list951.size; ++_i953) - { - _elem952 = iprot.readI64(); - struct.records.add(_elem952); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -176824,19 +175930,19 @@ private static S scheme(org.apache. } } - public static class removeKeyValueRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("removeKeyValueRecords_result"); + public static class removeKeyValueRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("removeKeyValueRecord_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new removeKeyValueRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new removeKeyValueRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new removeKeyValueRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new removeKeyValueRecord_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map success; // required + public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required @@ -176917,13 +176023,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -176933,14 +176039,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(removeKeyValueRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(removeKeyValueRecord_result.class, metaDataMap); } - public removeKeyValueRecords_result() { + public removeKeyValueRecord_result() { } - public removeKeyValueRecords_result( - java.util.Map success, + public removeKeyValueRecord_result( + boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.InvalidArgumentException ex3, @@ -176948,6 +176054,7 @@ public removeKeyValueRecords_result( { this(); this.success = success; + setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -176957,11 +176064,9 @@ public removeKeyValueRecords_result( /** * Performs a deep copy on other. */ - public removeKeyValueRecords_result(removeKeyValueRecords_result other) { - if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.LinkedHashMap(other.success); - this.success = __this__success; - } + public removeKeyValueRecord_result(removeKeyValueRecord_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -176977,53 +176082,41 @@ public removeKeyValueRecords_result(removeKeyValueRecords_result other) { } @Override - public removeKeyValueRecords_result deepCopy() { - return new removeKeyValueRecords_result(this); + public removeKeyValueRecord_result deepCopy() { + return new removeKeyValueRecord_result(this); } @Override public void clear() { - this.success = null; + setSuccessIsSet(false); + this.success = false; this.ex = null; this.ex2 = null; this.ex3 = null; this.ex4 = null; } - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - public void putToSuccess(long key, boolean val) { - if (this.success == null) { - this.success = new java.util.LinkedHashMap(); - } - this.success.put(key, val); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { + public boolean isSuccess() { return this.success; } - public removeKeyValueRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public removeKeyValueRecord_result setSuccess(boolean success) { this.success = success; + setSuccessIsSet(true); return this; } public void unsetSuccess() { - this.success = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return this.success != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); } public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -177031,7 +176124,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public removeKeyValueRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public removeKeyValueRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -177056,7 +176149,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public removeKeyValueRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public removeKeyValueRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -177081,7 +176174,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public removeKeyValueRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public removeKeyValueRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -177106,7 +176199,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public removeKeyValueRecords_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public removeKeyValueRecord_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -177133,7 +176226,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map)value); + setSuccess((java.lang.Boolean)value); } break; @@ -177177,7 +176270,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return getSuccess(); + return isSuccess(); case EX: return getEx(); @@ -177219,23 +176312,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof removeKeyValueRecords_result) - return this.equals((removeKeyValueRecords_result)that); + if (that instanceof removeKeyValueRecord_result) + return this.equals((removeKeyValueRecord_result)that); return false; } - public boolean equals(removeKeyValueRecords_result that) { + public boolean equals(removeKeyValueRecord_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true && this.isSetSuccess(); - boolean that_present_success = true && that.isSetSuccess(); + boolean this_present_success = true; + boolean that_present_success = true; if (this_present_success || that_present_success) { if (!(this_present_success && that_present_success)) return false; - if (!this.success.equals(that.success)) + if (this.success != that.success) return false; } @@ -177282,9 +176375,7 @@ public boolean equals(removeKeyValueRecords_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -177306,7 +176397,7 @@ public int hashCode() { } @Override - public int compareTo(removeKeyValueRecords_result other) { + public int compareTo(removeKeyValueRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -177383,15 +176474,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("removeKeyValueRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("removeKeyValueRecord_result("); boolean first = true; sb.append("success:"); - if (this.success == null) { - sb.append("null"); - } else { - sb.append(this.success); - } + sb.append(this.success); first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -177444,23 +176531,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 removeKeyValueRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class removeKeyValueRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public removeKeyValueRecords_resultStandardScheme getScheme() { - return new removeKeyValueRecords_resultStandardScheme(); + public removeKeyValueRecord_resultStandardScheme getScheme() { + return new removeKeyValueRecord_resultStandardScheme(); } } - private static class removeKeyValueRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class removeKeyValueRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -177471,20 +176560,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { - { - org.apache.thrift.protocol.TMap _map954 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map954.size); - long _key955; - boolean _val956; - for (int _i957 = 0; _i957 < _map954.size; ++_i957) - { - _key955 = iprot.readI64(); - _val956 = iprot.readBool(); - struct.success.put(_key955, _val956); - } - iprot.readMapEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -177538,21 +176615,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { + if (struct.isSetSuccess()) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); - for (java.util.Map.Entry _iter958 : struct.success.entrySet()) - { - oprot.writeI64(_iter958.getKey()); - oprot.writeBool(_iter958.getValue()); - } - oprot.writeMapEnd(); - } + oprot.writeBool(struct.success); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -177581,17 +176650,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueReco } - private static class removeKeyValueRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class removeKeyValueRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public removeKeyValueRecords_resultTupleScheme getScheme() { - return new removeKeyValueRecords_resultTupleScheme(); + public removeKeyValueRecord_resultTupleScheme getScheme() { + return new removeKeyValueRecord_resultTupleScheme(); } } - private static class removeKeyValueRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class removeKeyValueRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -177611,14 +176680,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecor } oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter959 : struct.success.entrySet()) - { - oprot.writeI64(_iter959.getKey()); - oprot.writeBool(_iter959.getValue()); - } - } + oprot.writeBool(struct.success); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -177635,22 +176697,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecor } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TMap _map960 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL); - struct.success = new java.util.LinkedHashMap(2*_map960.size); - long _key961; - boolean _val962; - for (int _i963 = 0; _i963 < _map960.size; ++_i963) - { - _key961 = iprot.readI64(); - _val962 = iprot.readBool(); - struct.success.put(_key961, _val962); - } - } + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -177681,22 +176732,22 @@ private static S scheme(org.apache. } } - public static class setKeyValueRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValueRecord_args"); + public static class removeKeyValueRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("removeKeyValueRecords_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValueRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValueRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new removeKeyValueRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new removeKeyValueRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required - public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -177705,7 +176756,7 @@ public static class setKeyValueRecord_args implements org.apache.thrift.TBase metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -177788,8 +176837,9 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -177797,16 +176847,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValueRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(removeKeyValueRecords_args.class, metaDataMap); } - public setKeyValueRecord_args() { + public removeKeyValueRecords_args() { } - public setKeyValueRecord_args( + public removeKeyValueRecords_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, - long record, + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -177814,8 +176864,7 @@ public setKeyValueRecord_args( this(); this.key = key; this.value = value; - this.record = record; - setRecordIsSet(true); + this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -177824,15 +176873,17 @@ public setKeyValueRecord_args( /** * Performs a deep copy on other. */ - public setKeyValueRecord_args(setKeyValueRecord_args other) { - __isset_bitfield = other.__isset_bitfield; + public removeKeyValueRecords_args(removeKeyValueRecords_args other) { if (other.isSetKey()) { this.key = other.key; } if (other.isSetValue()) { this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } - this.record = other.record; + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -177845,16 +176896,15 @@ public setKeyValueRecord_args(setKeyValueRecord_args other) { } @Override - public setKeyValueRecord_args deepCopy() { - return new setKeyValueRecord_args(this); + public removeKeyValueRecords_args deepCopy() { + return new removeKeyValueRecords_args(this); } @Override public void clear() { this.key = null; this.value = null; - setRecordIsSet(false); - this.record = 0; + this.records = null; this.creds = null; this.transaction = null; this.environment = null; @@ -177865,7 +176915,7 @@ public java.lang.String getKey() { return this.key; } - public setKeyValueRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public removeKeyValueRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -177890,7 +176940,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public setKeyValueRecord_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public removeKeyValueRecords_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -177910,27 +176960,45 @@ public void setValueIsSet(boolean value) { } } - public long getRecord() { - return this.record; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - public setKeyValueRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public removeKeyValueRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } @org.apache.thrift.annotation.Nullable @@ -177938,7 +177006,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public setKeyValueRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public removeKeyValueRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -177963,7 +177031,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public setKeyValueRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public removeKeyValueRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -177988,7 +177056,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public setKeyValueRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public removeKeyValueRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -178027,11 +177095,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; @@ -178072,8 +177140,8 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUE: return getValue(); - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); case CREDS: return getCreds(); @@ -178100,8 +177168,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case VALUE: return isSetValue(); - case RECORD: - return isSetRecord(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -178114,12 +177182,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof setKeyValueRecord_args) - return this.equals((setKeyValueRecord_args)that); + if (that instanceof removeKeyValueRecords_args) + return this.equals((removeKeyValueRecords_args)that); return false; } - public boolean equals(setKeyValueRecord_args that) { + public boolean equals(removeKeyValueRecords_args that) { if (that == null) return false; if (this == that) @@ -178143,12 +177211,12 @@ public boolean equals(setKeyValueRecord_args that) { return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } @@ -178194,7 +177262,9 @@ public int hashCode() { if (isSetValue()) hashCode = hashCode * 8191 + value.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -178212,7 +177282,7 @@ public int hashCode() { } @Override - public int compareTo(setKeyValueRecord_args other) { + public int compareTo(removeKeyValueRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -178239,12 +177309,12 @@ public int compareTo(setKeyValueRecord_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -178300,7 +177370,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValueRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("removeKeyValueRecords_args("); boolean first = true; sb.append("key:"); @@ -178319,8 +177389,12 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -178374,25 +177448,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 setKeyValueRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class removeKeyValueRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValueRecord_argsStandardScheme getScheme() { - return new setKeyValueRecord_argsStandardScheme(); + public removeKeyValueRecords_argsStandardScheme getScheme() { + return new removeKeyValueRecords_argsStandardScheme(); } } - private static class setKeyValueRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class removeKeyValueRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -178419,10 +177491,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecord_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 3: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list946 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list946.size); + long _elem947; + for (int _i948 = 0; _i948 < _list946.size; ++_i948) + { + _elem947 = iprot.readI64(); + struct.records.add(_elem947); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -178465,7 +177547,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecord_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -178479,9 +177561,18 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecord_ struct.value.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter949 : struct.records) + { + oprot.writeI64(_iter949); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -178503,17 +177594,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecord_ } - private static class setKeyValueRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class removeKeyValueRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValueRecord_argsTupleScheme getScheme() { - return new setKeyValueRecord_argsTupleScheme(); + public removeKeyValueRecords_argsTupleScheme getScheme() { + return new removeKeyValueRecords_argsTupleScheme(); } } - private static class setKeyValueRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class removeKeyValueRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -178522,7 +177613,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_a if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -178541,8 +177632,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_a if (struct.isSetValue()) { struct.value.write(oprot); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter950 : struct.records) + { + oprot.writeI64(_iter950); + } + } } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -178556,7 +177653,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -178569,8 +177666,17 @@ public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_ar struct.setValueIsSet(true); } if (incoming.get(2)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list951 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list951.size); + long _elem952; + for (int _i953 = 0; _i953 < _list951.size; ++_i953) + { + _elem952 = iprot.readI64(); + struct.records.add(_elem952); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -178594,17 +177700,19 @@ private static S scheme(org.apache. } } - public static class setKeyValueRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValueRecord_result"); + public static class removeKeyValueRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("removeKeyValueRecords_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValueRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValueRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new removeKeyValueRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new removeKeyValueRecords_resultTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required @@ -178612,6 +177720,7 @@ public static class setKeyValueRecord_result implements org.apache.thrift.TBase< /** 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), EX3((short)3, "ex3"), @@ -178631,6 +177740,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // EX return EX; case 2: // EX2 @@ -178685,6 +177796,10 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -178694,19 +177809,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValueRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(removeKeyValueRecords_result.class, metaDataMap); } - public setKeyValueRecord_result() { + public removeKeyValueRecords_result() { } - public setKeyValueRecord_result( + public removeKeyValueRecords_result( + java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.InvalidArgumentException ex3, com.cinchapi.concourse.thrift.PermissionException ex4) { this(); + this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -178716,7 +177833,11 @@ public setKeyValueRecord_result( /** * Performs a deep copy on other. */ - public setKeyValueRecord_result(setKeyValueRecord_result other) { + public removeKeyValueRecords_result(removeKeyValueRecords_result other) { + if (other.isSetSuccess()) { + java.util.Map __this__success = new java.util.LinkedHashMap(other.success); + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -178732,24 +177853,61 @@ public setKeyValueRecord_result(setKeyValueRecord_result other) { } @Override - public setKeyValueRecord_result deepCopy() { - return new setKeyValueRecord_result(this); + public removeKeyValueRecords_result deepCopy() { + return new removeKeyValueRecords_result(this); } @Override public void clear() { + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; this.ex4 = null; } + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(long key, boolean val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap(); + } + this.success.put(key, val); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Map getSuccess() { + return this.success; + } + + public removeKeyValueRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map 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; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public setKeyValueRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public removeKeyValueRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -178774,7 +177932,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public setKeyValueRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public removeKeyValueRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -178799,7 +177957,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public setKeyValueRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public removeKeyValueRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -178824,7 +177982,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public setKeyValueRecord_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public removeKeyValueRecords_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -178847,6 +178005,14 @@ public void setEx4IsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.util.Map)value); + } + break; + case EX: if (value == null) { unsetEx(); @@ -178886,6 +178052,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return getSuccess(); + case EX: return getEx(); @@ -178910,6 +178079,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case EX: return isSetEx(); case EX2: @@ -178924,17 +178095,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof setKeyValueRecord_result) - return this.equals((setKeyValueRecord_result)that); + if (that instanceof removeKeyValueRecords_result) + return this.equals((removeKeyValueRecords_result)that); return false; } - public boolean equals(setKeyValueRecord_result that) { + public boolean equals(removeKeyValueRecords_result that) { if (that == null) return false; if (this == that) return true; + 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_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -178978,6 +178158,10 @@ public boolean equals(setKeyValueRecord_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -178998,13 +178182,23 @@ public int hashCode() { } @Override - public int compareTo(setKeyValueRecord_result other) { + public int compareTo(removeKeyValueRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -179065,9 +178259,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValueRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("removeKeyValueRecords_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("ex:"); if (this.ex == null) { sb.append("null"); @@ -179124,17 +178326,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class setKeyValueRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class removeKeyValueRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValueRecord_resultStandardScheme getScheme() { - return new setKeyValueRecord_resultStandardScheme(); + public removeKeyValueRecords_resultStandardScheme getScheme() { + return new removeKeyValueRecords_resultStandardScheme(); } } - private static class setKeyValueRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class removeKeyValueRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, removeKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -179144,6 +178346,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecord_r break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map954 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map954.size); + long _key955; + boolean _val956; + for (int _i957 = 0; _i957 < _map954.size; ++_i957) + { + _key955 = iprot.readI64(); + _val956 = iprot.readBool(); + struct.success.put(_key955, _val956); + } + iprot.readMapEnd(); + } + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -179192,10 +178414,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecord_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, removeKeyValueRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.success != null) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); + for (java.util.Map.Entry _iter958 : struct.success.entrySet()) + { + oprot.writeI64(_iter958.getKey()); + oprot.writeBool(_iter958.getValue()); + } + oprot.writeMapEnd(); + } + oprot.writeFieldEnd(); + } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -179222,32 +178457,45 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecord_ } - private static class setKeyValueRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class removeKeyValueRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValueRecord_resultTupleScheme getScheme() { - return new setKeyValueRecord_resultTupleScheme(); + public removeKeyValueRecords_resultTupleScheme getScheme() { + return new removeKeyValueRecords_resultTupleScheme(); } } - private static class setKeyValueRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class removeKeyValueRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetEx()) { + if (struct.isSetSuccess()) { optionals.set(0); } - if (struct.isSetEx2()) { + if (struct.isSetEx()) { optionals.set(1); } - if (struct.isSetEx3()) { + if (struct.isSetEx2()) { optionals.set(2); } - if (struct.isSetEx4()) { + if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetSuccess()) { + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry _iter959 : struct.success.entrySet()) + { + oprot.writeI64(_iter959.getKey()); + oprot.writeBool(_iter959.getValue()); + } + } + } if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -179263,25 +178511,40 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, removeKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { + { + org.apache.thrift.protocol.TMap _map960 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL); + struct.success = new java.util.LinkedHashMap(2*_map960.size); + long _key961; + boolean _val962; + for (int _i963 = 0; _i963 < _map960.size; ++_i963) + { + _key961 = iprot.readI64(); + _val962 = iprot.readBool(); + struct.success.put(_key961, _val962); + } + } + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(2)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(2)) { + if (incoming.get(3)) { struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex4.read(iprot); struct.setEx4IsSet(true); @@ -179294,20 +178557,22 @@ private static S scheme(org.apache. } } - public static class setKeyValue_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValue_args"); + public static class setKeyValueRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValueRecord_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValue_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValue_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValueRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValueRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -179316,9 +178581,10 @@ public static class setKeyValue_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -179338,11 +178604,13 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // VALUE return VALUE; - case 3: // CREDS + case 3: // RECORD + return RECORD; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -179387,6 +178655,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -179394,6 +178664,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -179401,15 +178673,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValue_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValueRecord_args.class, metaDataMap); } - public setKeyValue_args() { + public setKeyValueRecord_args() { } - public setKeyValue_args( + public setKeyValueRecord_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, + long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -179417,6 +178690,8 @@ public setKeyValue_args( this(); this.key = key; this.value = value; + this.record = record; + setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -179425,13 +178700,15 @@ public setKeyValue_args( /** * Performs a deep copy on other. */ - public setKeyValue_args(setKeyValue_args other) { + public setKeyValueRecord_args(setKeyValueRecord_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } if (other.isSetValue()) { this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -179444,14 +178721,16 @@ public setKeyValue_args(setKeyValue_args other) { } @Override - public setKeyValue_args deepCopy() { - return new setKeyValue_args(this); + public setKeyValueRecord_args deepCopy() { + return new setKeyValueRecord_args(this); } @Override public void clear() { this.key = null; this.value = null; + setRecordIsSet(false); + this.record = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -179462,7 +178741,7 @@ public java.lang.String getKey() { return this.key; } - public setKeyValue_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public setKeyValueRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -179487,7 +178766,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public setKeyValue_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public setKeyValueRecord_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -179507,12 +178786,35 @@ public void setValueIsSet(boolean value) { } } + public long getRecord() { + return this.record; + } + + public setKeyValueRecord_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public setKeyValue_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public setKeyValueRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -179537,7 +178839,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public setKeyValue_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public setKeyValueRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -179562,7 +178864,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public setKeyValue_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public setKeyValueRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -179601,6 +178903,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -179638,6 +178948,9 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUE: return getValue(); + case RECORD: + return getRecord(); + case CREDS: return getCreds(); @@ -179663,6 +178976,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case VALUE: return isSetValue(); + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -179675,12 +178990,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof setKeyValue_args) - return this.equals((setKeyValue_args)that); + if (that instanceof setKeyValueRecord_args) + return this.equals((setKeyValueRecord_args)that); return false; } - public boolean equals(setKeyValue_args that) { + public boolean equals(setKeyValueRecord_args that) { if (that == null) return false; if (this == that) @@ -179704,6 +179019,15 @@ public boolean equals(setKeyValue_args that) { return false; } + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -179746,6 +179070,8 @@ public int hashCode() { if (isSetValue()) hashCode = hashCode * 8191 + value.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -179762,7 +179088,7 @@ public int hashCode() { } @Override - public int compareTo(setKeyValue_args other) { + public int compareTo(setKeyValueRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -179789,6 +179115,16 @@ public int compareTo(setKeyValue_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -179840,7 +179176,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValue_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValueRecord_args("); boolean first = true; sb.append("key:"); @@ -179859,6 +179195,10 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -179910,23 +179250,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 setKeyValue_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValueRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValue_argsStandardScheme getScheme() { - return new setKeyValue_argsStandardScheme(); + public setKeyValueRecord_argsStandardScheme getScheme() { + return new setKeyValueRecord_argsStandardScheme(); } } - private static class setKeyValue_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class setKeyValueRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -179953,7 +179295,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -179962,7 +179312,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -179971,7 +179321,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -179991,7 +179341,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValue_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -180005,6 +179355,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValue_args s struct.value.write(oprot); oprot.writeFieldEnd(); } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -180026,17 +179379,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValue_args s } - private static class setKeyValue_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValueRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValue_argsTupleScheme getScheme() { - return new setKeyValue_argsTupleScheme(); + public setKeyValueRecord_argsTupleScheme getScheme() { + return new setKeyValueRecord_argsTupleScheme(); } } - private static class setKeyValue_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class setKeyValueRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValue_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -180045,22 +179398,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValue_args st if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetRecord()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetValue()) { struct.value.write(oprot); } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -180073,9 +179432,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValue_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValue_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -180086,16 +179445,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValue_args str struct.setValueIsSet(true); } if (incoming.get(2)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -180107,19 +179470,17 @@ private static S scheme(org.apache. } } - public static class setKeyValue_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValue_result"); + public static class setKeyValueRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValueRecord_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValue_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValue_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValueRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValueRecord_resultTupleSchemeFactory(); - public long success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required @@ -180127,7 +179488,6 @@ public static class setKeyValue_result implements org.apache.thrift.TBase metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - 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.I64))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -180216,22 +179570,19 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValue_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValueRecord_result.class, metaDataMap); } - public setKeyValue_result() { + public setKeyValueRecord_result() { } - public setKeyValue_result( - long success, + public setKeyValueRecord_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.InvalidArgumentException ex3, com.cinchapi.concourse.thrift.PermissionException ex4) { this(); - this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -180241,9 +179592,7 @@ public setKeyValue_result( /** * Performs a deep copy on other. */ - public setKeyValue_result(setKeyValue_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public setKeyValueRecord_result(setKeyValueRecord_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -180259,49 +179608,24 @@ public setKeyValue_result(setKeyValue_result other) { } @Override - public setKeyValue_result deepCopy() { - return new setKeyValue_result(this); + public setKeyValueRecord_result deepCopy() { + return new setKeyValueRecord_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = 0; this.ex = null; this.ex2 = null; this.ex3 = null; this.ex4 = null; } - public long getSuccess() { - return this.success; - } - - public setKeyValue_result setSuccess(long success) { - this.success = success; - setSuccessIsSet(true); - return this; - } - - public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public setKeyValue_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public setKeyValueRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -180326,7 +179650,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public setKeyValue_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public setKeyValueRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -180351,7 +179675,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public setKeyValue_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public setKeyValueRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -180376,7 +179700,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public setKeyValue_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public setKeyValueRecord_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -180399,14 +179723,6 @@ public void setEx4IsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.lang.Long)value); - } - break; - case EX: if (value == null) { unsetEx(); @@ -180446,9 +179762,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return getSuccess(); - case EX: return getEx(); @@ -180473,8 +179786,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case EX: return isSetEx(); case EX2: @@ -180489,26 +179800,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof setKeyValue_result) - return this.equals((setKeyValue_result)that); + if (that instanceof setKeyValueRecord_result) + return this.equals((setKeyValueRecord_result)that); return false; } - public boolean equals(setKeyValue_result that) { + public boolean equals(setKeyValueRecord_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (this.success != that.success) - return false; - } - boolean this_present_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -180552,8 +179854,6 @@ public boolean equals(setKeyValue_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); - hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -180574,23 +179874,13 @@ public int hashCode() { } @Override - public int compareTo(setKeyValue_result other) { + public int compareTo(setKeyValueRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -180651,13 +179941,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValue_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValueRecord_result("); boolean first = true; - sb.append("success:"); - sb.append(this.success); - first = false; - if (!first) sb.append(", "); sb.append("ex:"); if (this.ex == null) { sb.append("null"); @@ -180708,25 +179994,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 setKeyValue_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValueRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValue_resultStandardScheme getScheme() { - return new setKeyValue_resultStandardScheme(); + public setKeyValueRecord_resultStandardScheme getScheme() { + return new setKeyValueRecord_resultStandardScheme(); } } - private static class setKeyValue_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class setKeyValueRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -180736,14 +180020,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_result break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.success = iprot.readI64(); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -180792,15 +180068,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValue_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeI64(struct.success); - oprot.writeFieldEnd(); - } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -180827,38 +180098,32 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValue_result } - private static class setKeyValue_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValueRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValue_resultTupleScheme getScheme() { - return new setKeyValue_resultTupleScheme(); + public setKeyValueRecord_resultTupleScheme getScheme() { + return new setKeyValueRecord_resultTupleScheme(); } } - private static class setKeyValue_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class setKeyValueRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValue_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } if (struct.isSetEx()) { - optionals.set(1); + optionals.set(0); } if (struct.isSetEx2()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetEx3()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetSuccess()) { - oprot.writeI64(struct.success); + optionals.set(3); } + oprot.writeBitSet(optionals, 4); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -180874,29 +180139,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValue_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValue_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.success = iprot.readI64(); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(1)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex4.read(iprot); struct.setEx4IsSet(true); @@ -180909,22 +180170,20 @@ private static S scheme(org.apache. } } - public static class setKeyValueRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValueRecords_args"); + public static class setKeyValue_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValue_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValueRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValueRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValue_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValue_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -180933,10 +180192,9 @@ public static class setKeyValueRecords_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -180956,13 +180214,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // VALUE return VALUE; - case 3: // RECORDS - return RECORDS; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -181014,9 +180270,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -181024,16 +180277,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValueRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValue_args.class, metaDataMap); } - public setKeyValueRecords_args() { + public setKeyValue_args() { } - public setKeyValueRecords_args( + public setKeyValue_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, - java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -181041,7 +180293,6 @@ public setKeyValueRecords_args( this(); this.key = key; this.value = value; - this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -181050,17 +180301,13 @@ public setKeyValueRecords_args( /** * Performs a deep copy on other. */ - public setKeyValueRecords_args(setKeyValueRecords_args other) { + public setKeyValue_args(setKeyValue_args other) { if (other.isSetKey()) { this.key = other.key; } if (other.isSetValue()) { this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -181073,15 +180320,14 @@ public setKeyValueRecords_args(setKeyValueRecords_args other) { } @Override - public setKeyValueRecords_args deepCopy() { - return new setKeyValueRecords_args(this); + public setKeyValue_args deepCopy() { + return new setKeyValue_args(this); } @Override public void clear() { this.key = null; this.value = null; - this.records = null; this.creds = null; this.transaction = null; this.environment = null; @@ -181092,7 +180338,7 @@ public java.lang.String getKey() { return this.key; } - public setKeyValueRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public setKeyValue_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -181117,7 +180363,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public setKeyValueRecords_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public setKeyValue_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -181137,53 +180383,12 @@ public void setValueIsSet(boolean value) { } } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; - } - - public setKeyValueRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; - return this; - } - - public void unsetRecords() { - this.records = null; - } - - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; - } - - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public setKeyValueRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public setKeyValue_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -181208,7 +180413,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public setKeyValueRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public setKeyValue_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -181233,7 +180438,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public setKeyValueRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public setKeyValue_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -181272,14 +180477,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORDS: - if (value == null) { - unsetRecords(); - } else { - setRecords((java.util.List)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -181317,9 +180514,6 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUE: return getValue(); - case RECORDS: - return getRecords(); - case CREDS: return getCreds(); @@ -181345,8 +180539,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case VALUE: return isSetValue(); - case RECORDS: - return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -181359,12 +180551,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof setKeyValueRecords_args) - return this.equals((setKeyValueRecords_args)that); + if (that instanceof setKeyValue_args) + return this.equals((setKeyValue_args)that); return false; } - public boolean equals(setKeyValueRecords_args that) { + public boolean equals(setKeyValue_args that) { if (that == null) return false; if (this == that) @@ -181388,15 +180580,6 @@ public boolean equals(setKeyValueRecords_args that) { return false; } - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) - return false; - if (!this.records.equals(that.records)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -181439,10 +180622,6 @@ public int hashCode() { if (isSetValue()) hashCode = hashCode * 8191 + value.hashCode(); - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -181459,7 +180638,7 @@ public int hashCode() { } @Override - public int compareTo(setKeyValueRecords_args other) { + public int compareTo(setKeyValue_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -181486,16 +180665,6 @@ public int compareTo(setKeyValueRecords_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -181547,7 +180716,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValueRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValue_args("); boolean first = true; sb.append("key:"); @@ -181566,14 +180735,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -181631,17 +180792,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class setKeyValueRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValue_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValueRecords_argsStandardScheme getScheme() { - return new setKeyValueRecords_argsStandardScheme(); + public setKeyValue_argsStandardScheme getScheme() { + return new setKeyValue_argsStandardScheme(); } } - private static class setKeyValueRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class setKeyValue_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -181668,25 +180829,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list964 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list964.size); - long _elem965; - for (int _i966 = 0; _i966 < _list964.size; ++_i966) - { - _elem965 = iprot.readI64(); - struct.records.add(_elem965); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -181695,7 +180838,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -181704,7 +180847,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -181724,7 +180867,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValue_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -181738,18 +180881,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecords struct.value.write(oprot); oprot.writeFieldEnd(); } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter967 : struct.records) - { - oprot.writeI64(_iter967); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -181771,17 +180902,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecords } - private static class setKeyValueRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValue_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValueRecords_argsTupleScheme getScheme() { - return new setKeyValueRecords_argsTupleScheme(); + public setKeyValue_argsTupleScheme getScheme() { + return new setKeyValue_argsTupleScheme(); } } - private static class setKeyValueRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class setKeyValue_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValue_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -181790,34 +180921,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_ if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetRecords()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetValue()) { struct.value.write(oprot); } - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter968 : struct.records) - { - oprot.writeI64(_iter968); - } - } - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -181830,9 +180949,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValue_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -181843,29 +180962,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_a struct.setValueIsSet(true); } if (incoming.get(2)) { - { - org.apache.thrift.protocol.TList _list969 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list969.size); - long _elem970; - for (int _i971 = 0; _i971 < _list969.size; ++_i971) - { - _elem970 = iprot.readI64(); - struct.records.add(_elem970); - } - } - struct.setRecordsIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -181877,17 +180983,19 @@ private static S scheme(org.apache. } } - public static class setKeyValueRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValueRecords_result"); + public static class setKeyValue_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValue_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValueRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValueRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValue_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValue_resultTupleSchemeFactory(); + public long success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required @@ -181895,6 +181003,7 @@ public static class setKeyValueRecords_result implements org.apache.thrift.TBase /** 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), EX3((short)3, "ex3"), @@ -181914,6 +181023,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // EX return EX; case 2: // EX2 @@ -181965,9 +181076,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + 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.I64))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -181977,19 +181092,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValueRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValue_result.class, metaDataMap); } - public setKeyValueRecords_result() { + public setKeyValue_result() { } - public setKeyValueRecords_result( + public setKeyValue_result( + long success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.InvalidArgumentException ex3, com.cinchapi.concourse.thrift.PermissionException ex4) { this(); + this.success = success; + setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -181999,7 +181117,9 @@ public setKeyValueRecords_result( /** * Performs a deep copy on other. */ - public setKeyValueRecords_result(setKeyValueRecords_result other) { + public setKeyValue_result(setKeyValue_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -182015,24 +181135,49 @@ public setKeyValueRecords_result(setKeyValueRecords_result other) { } @Override - public setKeyValueRecords_result deepCopy() { - return new setKeyValueRecords_result(this); + public setKeyValue_result deepCopy() { + return new setKeyValue_result(this); } @Override public void clear() { + setSuccessIsSet(false); + this.success = 0; this.ex = null; this.ex2 = null; this.ex3 = null; this.ex4 = null; } + public long getSuccess() { + return this.success; + } + + public setKeyValue_result setSuccess(long success) { + this.success = success; + setSuccessIsSet(true); + return this; + } + + public void unsetSuccess() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + public void setSuccessIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public setKeyValueRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public setKeyValue_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -182057,7 +181202,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public setKeyValueRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public setKeyValue_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -182082,7 +181227,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public setKeyValueRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public setKeyValue_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -182107,7 +181252,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public setKeyValueRecords_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public setKeyValue_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -182130,6 +181275,14 @@ public void setEx4IsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.Long)value); + } + break; + case EX: if (value == null) { unsetEx(); @@ -182169,6 +181322,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return getSuccess(); + case EX: return getEx(); @@ -182193,6 +181349,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case EX: return isSetEx(); case EX2: @@ -182207,17 +181365,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof setKeyValueRecords_result) - return this.equals((setKeyValueRecords_result)that); + if (that instanceof setKeyValue_result) + return this.equals((setKeyValue_result)that); return false; } - public boolean equals(setKeyValueRecords_result that) { + public boolean equals(setKeyValue_result that) { if (that == null) return false; if (this == that) return true; + boolean this_present_success = true; + boolean that_present_success = true; + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (this.success != that.success) + return false; + } + boolean this_present_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -182261,6 +181428,8 @@ public boolean equals(setKeyValueRecords_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -182281,13 +181450,23 @@ public int hashCode() { } @Override - public int compareTo(setKeyValueRecords_result other) { + public int compareTo(setKeyValue_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -182348,9 +181527,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValueRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValue_result("); boolean first = true; + sb.append("success:"); + sb.append(this.success); + first = false; + if (!first) sb.append(", "); sb.append("ex:"); if (this.ex == null) { sb.append("null"); @@ -182401,23 +181584,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 setKeyValueRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValue_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValueRecords_resultStandardScheme getScheme() { - return new setKeyValueRecords_resultStandardScheme(); + public setKeyValue_resultStandardScheme getScheme() { + return new setKeyValue_resultStandardScheme(); } } - private static class setKeyValueRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class setKeyValue_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValue_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -182427,6 +181612,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_ break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.success = iprot.readI64(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -182475,10 +181668,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValue_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.isSetSuccess()) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeI64(struct.success); + oprot.writeFieldEnd(); + } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -182505,32 +181703,38 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecords } - private static class setKeyValueRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValue_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public setKeyValueRecords_resultTupleScheme getScheme() { - return new setKeyValueRecords_resultTupleScheme(); + public setKeyValue_resultTupleScheme getScheme() { + return new setKeyValue_resultTupleScheme(); } } - private static class setKeyValueRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class setKeyValue_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValue_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetEx()) { + if (struct.isSetSuccess()) { optionals.set(0); } - if (struct.isSetEx2()) { + if (struct.isSetEx()) { optionals.set(1); } - if (struct.isSetEx3()) { + if (struct.isSetEx2()) { optionals.set(2); } - if (struct.isSetEx4()) { + if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetSuccess()) { + oprot.writeI64(struct.success); + } if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -182546,25 +181750,29 @@ public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValue_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { + struct.success = iprot.readI64(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(2)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(2)) { + if (incoming.get(3)) { struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex4.read(iprot); struct.setEx4IsSet(true); @@ -182577,22 +181785,22 @@ private static S scheme(org.apache. } } - public static class reconcileKeyRecordValues_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("reconcileKeyRecordValues_args"); + public static class setKeyValueRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValueRecords_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.SET, (short)3); + private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new reconcileKeyRecordValues_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new reconcileKeyRecordValues_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValueRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValueRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long record; // required - public @org.apache.thrift.annotation.Nullable java.util.Set values; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -182600,8 +181808,8 @@ public static class reconcileKeyRecordValues_args implements org.apache.thrift.T /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), - RECORD((short)2, "record"), - VALUES((short)3, "values"), + VALUE((short)2, "value"), + RECORDS((short)3, "records"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -182622,10 +181830,10 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEY return KEY; - case 2: // RECORD - return RECORD; - case 3: // VALUES - return VALUES; + case 2: // VALUE + return VALUE; + case 3: // RECORDS + return RECORDS; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -182675,18 +181883,16 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -182694,25 +181900,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(reconcileKeyRecordValues_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValueRecords_args.class, metaDataMap); } - public reconcileKeyRecordValues_args() { + public setKeyValueRecords_args() { } - public reconcileKeyRecordValues_args( + public setKeyValueRecords_args( java.lang.String key, - long record, - java.util.Set values, + com.cinchapi.concourse.thrift.TObject value, + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.key = key; - this.record = record; - setRecordIsSet(true); - this.values = values; + this.value = value; + this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -182721,18 +181926,16 @@ public reconcileKeyRecordValues_args( /** * Performs a deep copy on other. */ - public reconcileKeyRecordValues_args(reconcileKeyRecordValues_args other) { - __isset_bitfield = other.__isset_bitfield; + public setKeyValueRecords_args(setKeyValueRecords_args other) { if (other.isSetKey()) { this.key = other.key; } - this.record = other.record; - if (other.isSetValues()) { - java.util.Set __this__values = new java.util.LinkedHashSet(other.values.size()); - for (com.cinchapi.concourse.thrift.TObject other_element : other.values) { - __this__values.add(new com.cinchapi.concourse.thrift.TObject(other_element)); - } - this.values = __this__values; + if (other.isSetValue()) { + this.value = new com.cinchapi.concourse.thrift.TObject(other.value); + } + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -182746,16 +181949,15 @@ public reconcileKeyRecordValues_args(reconcileKeyRecordValues_args other) { } @Override - public reconcileKeyRecordValues_args deepCopy() { - return new reconcileKeyRecordValues_args(this); + public setKeyValueRecords_args deepCopy() { + return new setKeyValueRecords_args(this); } @Override public void clear() { this.key = null; - setRecordIsSet(false); - this.record = 0; - this.values = null; + this.value = null; + this.records = null; this.creds = null; this.transaction = null; this.environment = null; @@ -182766,7 +181968,7 @@ public java.lang.String getKey() { return this.key; } - public reconcileKeyRecordValues_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public setKeyValueRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -182786,67 +181988,69 @@ public void setKeyIsSet(boolean value) { } } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TObject getValue() { + return this.value; } - public reconcileKeyRecordValues_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public setKeyValueRecords_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + this.value = value; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetValue() { + this.value = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field value is set (has been assigned a value) and false otherwise */ + public boolean isSetValue() { + return this.value != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setValueIsSet(boolean value) { + if (!value) { + this.value = null; + } } - public int getValuesSize() { - return (this.values == null) ? 0 : this.values.size(); + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } @org.apache.thrift.annotation.Nullable - public java.util.Iterator getValuesIterator() { - return (this.values == null) ? null : this.values.iterator(); + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); } - public void addToValues(com.cinchapi.concourse.thrift.TObject elem) { - if (this.values == null) { - this.values = new java.util.LinkedHashSet(); + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); } - this.values.add(elem); + this.records.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.Set getValues() { - return this.values; + public java.util.List getRecords() { + return this.records; } - public reconcileKeyRecordValues_args setValues(@org.apache.thrift.annotation.Nullable java.util.Set values) { - this.values = values; + public setKeyValueRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetValues() { - this.values = null; + public void unsetRecords() { + this.records = null; } - /** Returns true if field values is set (has been assigned a value) and false otherwise */ - public boolean isSetValues() { - return this.values != null; + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setValuesIsSet(boolean value) { + public void setRecordsIsSet(boolean value) { if (!value) { - this.values = null; + this.records = null; } } @@ -182855,7 +182059,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public reconcileKeyRecordValues_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public setKeyValueRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -182880,7 +182084,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public reconcileKeyRecordValues_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public setKeyValueRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -182905,7 +182109,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public reconcileKeyRecordValues_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public setKeyValueRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -182936,19 +182140,19 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORD: + case VALUE: if (value == null) { - unsetRecord(); + unsetValue(); } else { - setRecord((java.lang.Long)value); + setValue((com.cinchapi.concourse.thrift.TObject)value); } break; - case VALUES: + case RECORDS: if (value == null) { - unsetValues(); + unsetRecords(); } else { - setValues((java.util.Set)value); + setRecords((java.util.List)value); } break; @@ -182986,11 +182190,11 @@ public java.lang.Object getFieldValue(_Fields field) { case KEY: return getKey(); - case RECORD: - return getRecord(); + case VALUE: + return getValue(); - case VALUES: - return getValues(); + case RECORDS: + return getRecords(); case CREDS: return getCreds(); @@ -183015,10 +182219,10 @@ public boolean isSet(_Fields field) { switch (field) { case KEY: return isSetKey(); - case RECORD: - return isSetRecord(); - case VALUES: - return isSetValues(); + case VALUE: + return isSetValue(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -183031,12 +182235,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof reconcileKeyRecordValues_args) - return this.equals((reconcileKeyRecordValues_args)that); + if (that instanceof setKeyValueRecords_args) + return this.equals((setKeyValueRecords_args)that); return false; } - public boolean equals(reconcileKeyRecordValues_args that) { + public boolean equals(setKeyValueRecords_args that) { if (that == null) return false; if (this == that) @@ -183051,21 +182255,21 @@ public boolean equals(reconcileKeyRecordValues_args that) { return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_value = true && this.isSetValue(); + boolean that_present_value = true && that.isSetValue(); + if (this_present_value || that_present_value) { + if (!(this_present_value && that_present_value)) return false; - if (this.record != that.record) + if (!this.value.equals(that.value)) return false; } - boolean this_present_values = true && this.isSetValues(); - boolean that_present_values = true && that.isSetValues(); - if (this_present_values || that_present_values) { - if (!(this_present_values && that_present_values)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (!this.values.equals(that.values)) + if (!this.records.equals(that.records)) return false; } @@ -183107,11 +182311,13 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); + if (isSetValue()) + hashCode = hashCode * 8191 + value.hashCode(); - hashCode = hashCode * 8191 + ((isSetValues()) ? 131071 : 524287); - if (isSetValues()) - hashCode = hashCode * 8191 + values.hashCode(); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -183129,7 +182335,7 @@ public int hashCode() { } @Override - public int compareTo(reconcileKeyRecordValues_args other) { + public int compareTo(setKeyValueRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -183146,22 +182352,22 @@ public int compareTo(reconcileKeyRecordValues_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetValue()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, other.value); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetValues()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.values, other.values); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -183217,7 +182423,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("reconcileKeyRecordValues_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValueRecords_args("); boolean first = true; sb.append("key:"); @@ -183228,15 +182434,19 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("value:"); + if (this.value == null) { + sb.append("null"); + } else { + sb.append(this.value); + } first = false; if (!first) sb.append(", "); - sb.append("values:"); - if (this.values == null) { + sb.append("records:"); + if (this.records == null) { sb.append("null"); } else { - sb.append(this.values); + sb.append(this.records); } first = false; if (!first) sb.append(", "); @@ -183270,6 +182480,9 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (value != null) { + value.validate(); + } if (creds != null) { creds.validate(); } @@ -183288,25 +182501,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 reconcileKeyRecordValues_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValueRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public reconcileKeyRecordValues_argsStandardScheme getScheme() { - return new reconcileKeyRecordValues_argsStandardScheme(); + public setKeyValueRecords_argsStandardScheme getScheme() { + return new setKeyValueRecords_argsStandardScheme(); } } - private static class reconcileKeyRecordValues_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class setKeyValueRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, reconcileKeyRecordValues_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -183324,29 +182535,29 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, reconcileKeyRecordV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 2: // VALUE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.value = new com.cinchapi.concourse.thrift.TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // VALUES - if (schemeField.type == org.apache.thrift.protocol.TType.SET) { + case 3: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TSet _set972 = iprot.readSetBegin(); - struct.values = new java.util.LinkedHashSet(2*_set972.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem973; - for (int _i974 = 0; _i974 < _set972.size; ++_i974) + org.apache.thrift.protocol.TList _list964 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list964.size); + long _elem965; + for (int _i966 = 0; _i966 < _list964.size; ++_i966) { - _elem973 = new com.cinchapi.concourse.thrift.TObject(); - _elem973.read(iprot); - struct.values.add(_elem973); + _elem965 = iprot.readI64(); + struct.records.add(_elem965); } - iprot.readSetEnd(); + iprot.readListEnd(); } - struct.setValuesIsSet(true); + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -183389,7 +182600,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, reconcileKeyRecordV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, reconcileKeyRecordValues_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -183398,18 +182609,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, reconcileKeyRecord oprot.writeString(struct.key); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); - if (struct.values != null) { - oprot.writeFieldBegin(VALUES_FIELD_DESC); + if (struct.value != null) { + oprot.writeFieldBegin(VALUE_FIELD_DESC); + struct.value.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter975 : struct.values) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter967 : struct.records) { - _iter975.write(oprot); + oprot.writeI64(_iter967); } - oprot.writeSetEnd(); + oprot.writeListEnd(); } oprot.writeFieldEnd(); } @@ -183434,26 +182647,26 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, reconcileKeyRecord } - private static class reconcileKeyRecordValues_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValueRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public reconcileKeyRecordValues_argsTupleScheme getScheme() { - return new reconcileKeyRecordValues_argsTupleScheme(); + public setKeyValueRecords_argsTupleScheme getScheme() { + return new setKeyValueRecords_argsTupleScheme(); } } - private static class reconcileKeyRecordValues_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class setKeyValueRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordValues_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetRecord()) { + if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetValues()) { + if (struct.isSetRecords()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -183469,15 +182682,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordV if (struct.isSetKey()) { oprot.writeString(struct.key); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetValue()) { + struct.value.write(oprot); } - if (struct.isSetValues()) { + if (struct.isSetRecords()) { { - oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter976 : struct.values) + oprot.writeI32(struct.records.size()); + for (long _iter968 : struct.records) { - _iter976.write(oprot); + oprot.writeI64(_iter968); } } } @@ -183493,7 +182706,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordValues_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -183501,22 +182714,22 @@ public void read(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordVa struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + struct.value = new com.cinchapi.concourse.thrift.TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TSet _set977 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.LinkedHashSet(2*_set977.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem978; - for (int _i979 = 0; _i979 < _set977.size; ++_i979) + org.apache.thrift.protocol.TList _list969 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list969.size); + long _elem970; + for (int _i971 = 0; _i971 < _list969.size; ++_i971) { - _elem978 = new com.cinchapi.concourse.thrift.TObject(); - _elem978.read(iprot); - struct.values.add(_elem978); + _elem970 = iprot.readI64(); + struct.records.add(_elem970); } } - struct.setValuesIsSet(true); + struct.setRecordsIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -183540,16 +182753,16 @@ private static S scheme(org.apache. } } - public static class reconcileKeyRecordValues_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("reconcileKeyRecordValues_result"); + public static class setKeyValueRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setKeyValueRecords_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new reconcileKeyRecordValues_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new reconcileKeyRecordValues_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new setKeyValueRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new setKeyValueRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required @@ -183640,13 +182853,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(reconcileKeyRecordValues_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setKeyValueRecords_result.class, metaDataMap); } - public reconcileKeyRecordValues_result() { + public setKeyValueRecords_result() { } - public reconcileKeyRecordValues_result( + public setKeyValueRecords_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.InvalidArgumentException ex3, @@ -183662,7 +182875,7 @@ public reconcileKeyRecordValues_result( /** * Performs a deep copy on other. */ - public reconcileKeyRecordValues_result(reconcileKeyRecordValues_result other) { + public setKeyValueRecords_result(setKeyValueRecords_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -183678,8 +182891,8 @@ public reconcileKeyRecordValues_result(reconcileKeyRecordValues_result other) { } @Override - public reconcileKeyRecordValues_result deepCopy() { - return new reconcileKeyRecordValues_result(this); + public setKeyValueRecords_result deepCopy() { + return new setKeyValueRecords_result(this); } @Override @@ -183695,7 +182908,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public reconcileKeyRecordValues_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public setKeyValueRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -183720,7 +182933,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public reconcileKeyRecordValues_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public setKeyValueRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -183745,7 +182958,7 @@ public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public reconcileKeyRecordValues_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public setKeyValueRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -183770,7 +182983,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public reconcileKeyRecordValues_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public setKeyValueRecords_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -183870,12 +183083,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof reconcileKeyRecordValues_result) - return this.equals((reconcileKeyRecordValues_result)that); + if (that instanceof setKeyValueRecords_result) + return this.equals((setKeyValueRecords_result)that); return false; } - public boolean equals(reconcileKeyRecordValues_result that) { + public boolean equals(setKeyValueRecords_result that) { if (that == null) return false; if (this == that) @@ -183944,7 +183157,7 @@ public int hashCode() { } @Override - public int compareTo(reconcileKeyRecordValues_result other) { + public int compareTo(setKeyValueRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -184011,7 +183224,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("reconcileKeyRecordValues_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("setKeyValueRecords_result("); boolean first = true; sb.append("ex:"); @@ -184070,17 +183283,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class reconcileKeyRecordValues_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValueRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public reconcileKeyRecordValues_resultStandardScheme getScheme() { - return new reconcileKeyRecordValues_resultStandardScheme(); + public setKeyValueRecords_resultStandardScheme getScheme() { + return new setKeyValueRecords_resultStandardScheme(); } } - private static class reconcileKeyRecordValues_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class setKeyValueRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, reconcileKeyRecordValues_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, setKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -184138,7 +183351,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, reconcileKeyRecordV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, reconcileKeyRecordValues_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, setKeyValueRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -184168,17 +183381,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, reconcileKeyRecord } - private static class reconcileKeyRecordValues_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class setKeyValueRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public reconcileKeyRecordValues_resultTupleScheme getScheme() { - return new reconcileKeyRecordValues_resultTupleScheme(); + public setKeyValueRecords_resultTupleScheme getScheme() { + return new setKeyValueRecords_resultTupleScheme(); } } - private static class reconcileKeyRecordValues_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class setKeyValueRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordValues_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -184209,7 +183422,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordValues_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, setKeyValueRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { @@ -184240,25 +183453,34 @@ private static S scheme(org.apache. } } - public static class inventory_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("inventory_args"); + public static class reconcileKeyRecordValues_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("reconcileKeyRecordValues_args"); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.SET, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new inventory_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new inventory_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new reconcileKeyRecordValues_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new reconcileKeyRecordValues_argsTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.Set values; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CREDS((short)1, "creds"), - TRANSACTION((short)2, "transaction"), - ENVIRONMENT((short)3, "environment"); + KEY((short)1, "key"), + RECORD((short)2, "record"), + VALUES((short)3, "values"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -184274,11 +183496,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CREDS + case 1: // KEY + return KEY; + case 2: // RECORD + return RECORD; + case 3: // VALUES + return VALUES; + case 4: // CREDS return CREDS; - case 2: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 3: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -184323,9 +183551,18 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -184333,18 +183570,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(inventory_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(reconcileKeyRecordValues_args.class, metaDataMap); } - public inventory_args() { + public reconcileKeyRecordValues_args() { } - public inventory_args( + public reconcileKeyRecordValues_args( + java.lang.String key, + long record, + java.util.Set values, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); + this.key = key; + this.record = record; + setRecordIsSet(true); + this.values = values; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -184353,7 +183597,19 @@ public inventory_args( /** * Performs a deep copy on other. */ - public inventory_args(inventory_args other) { + public reconcileKeyRecordValues_args(reconcileKeyRecordValues_args other) { + __isset_bitfield = other.__isset_bitfield; + if (other.isSetKey()) { + this.key = other.key; + } + this.record = other.record; + if (other.isSetValues()) { + java.util.Set __this__values = new java.util.LinkedHashSet(other.values.size()); + for (com.cinchapi.concourse.thrift.TObject other_element : other.values) { + __this__values.add(new com.cinchapi.concourse.thrift.TObject(other_element)); + } + this.values = __this__values; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -184366,23 +183622,116 @@ public inventory_args(inventory_args other) { } @Override - public inventory_args deepCopy() { - return new inventory_args(this); + public reconcileKeyRecordValues_args deepCopy() { + return new reconcileKeyRecordValues_args(this); } @Override public void clear() { + this.key = null; + setRecordIsSet(false); + this.record = 0; + this.values = null; this.creds = null; this.transaction = null; this.environment = null; } + @org.apache.thrift.annotation.Nullable + public java.lang.String getKey() { + return this.key; + } + + public reconcileKeyRecordValues_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; + return this; + } + + public void unsetKey() { + this.key = null; + } + + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; + } + + public void setKeyIsSet(boolean value) { + if (!value) { + this.key = null; + } + } + + public long getRecord() { + return this.record; + } + + public reconcileKeyRecordValues_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + + public int getValuesSize() { + return (this.values == null) ? 0 : this.values.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getValuesIterator() { + return (this.values == null) ? null : this.values.iterator(); + } + + public void addToValues(com.cinchapi.concourse.thrift.TObject elem) { + if (this.values == null) { + this.values = new java.util.LinkedHashSet(); + } + this.values.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Set getValues() { + return this.values; + } + + public reconcileKeyRecordValues_args setValues(@org.apache.thrift.annotation.Nullable java.util.Set values) { + this.values = values; + return this; + } + + public void unsetValues() { + this.values = null; + } + + /** Returns true if field values is set (has been assigned a value) and false otherwise */ + public boolean isSetValues() { + return this.values != null; + } + + public void setValuesIsSet(boolean value) { + if (!value) { + this.values = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public inventory_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public reconcileKeyRecordValues_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -184407,7 +183756,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public inventory_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public reconcileKeyRecordValues_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -184432,7 +183781,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public inventory_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public reconcileKeyRecordValues_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -184455,6 +183804,30 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case KEY: + if (value == null) { + unsetKey(); + } else { + setKey((java.lang.String)value); + } + break; + + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + + case VALUES: + if (value == null) { + unsetValues(); + } else { + setValues((java.util.Set)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -184486,6 +183859,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case KEY: + return getKey(); + + case RECORD: + return getRecord(); + + case VALUES: + return getValues(); + case CREDS: return getCreds(); @@ -184507,6 +183889,12 @@ public boolean isSet(_Fields field) { } switch (field) { + case KEY: + return isSetKey(); + case RECORD: + return isSetRecord(); + case VALUES: + return isSetValues(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -184519,17 +183907,44 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof inventory_args) - return this.equals((inventory_args)that); + if (that instanceof reconcileKeyRecordValues_args) + return this.equals((reconcileKeyRecordValues_args)that); return false; } - public boolean equals(inventory_args that) { + public boolean equals(reconcileKeyRecordValues_args that) { if (that == null) return false; if (this == that) return true; + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) + return false; + if (!this.key.equals(that.key)) + return false; + } + + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + + boolean this_present_values = true && this.isSetValues(); + boolean that_present_values = true && that.isSetValues(); + if (this_present_values || that_present_values) { + if (!(this_present_values && that_present_values)) + return false; + if (!this.values.equals(that.values)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -184564,6 +183979,16 @@ public boolean equals(inventory_args that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); + + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetValues()) ? 131071 : 524287); + if (isSetValues()) + hashCode = hashCode * 8191 + values.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -184580,13 +184005,43 @@ public int hashCode() { } @Override - public int compareTo(inventory_args other) { + public int compareTo(reconcileKeyRecordValues_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetValues()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.values, other.values); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -184638,9 +184093,29 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("inventory_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("reconcileKeyRecordValues_args("); boolean first = true; + sb.append("key:"); + if (this.key == null) { + sb.append("null"); + } else { + sb.append(this.key); + } + first = false; + if (!first) sb.append(", "); + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("values:"); + if (this.values == null) { + sb.append("null"); + } else { + sb.append(this.values); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -184689,23 +184164,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 inventory_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class reconcileKeyRecordValues_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public inventory_argsStandardScheme getScheme() { - return new inventory_argsStandardScheme(); + public reconcileKeyRecordValues_argsStandardScheme getScheme() { + return new reconcileKeyRecordValues_argsStandardScheme(); } } - private static class inventory_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class reconcileKeyRecordValues_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, reconcileKeyRecordValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -184715,7 +184192,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_args stru break; } switch (schemeField.id) { - case 1: // CREDS + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // VALUES + if (schemeField.type == org.apache.thrift.protocol.TType.SET) { + { + org.apache.thrift.protocol.TSet _set972 = iprot.readSetBegin(); + struct.values = new java.util.LinkedHashSet(2*_set972.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem973; + for (int _i974 = 0; _i974 < _set972.size; ++_i974) + { + _elem973 = new com.cinchapi.concourse.thrift.TObject(); + _elem973.read(iprot); + struct.values.add(_elem973); + } + iprot.readSetEnd(); + } + struct.setValuesIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -184724,7 +184236,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -184733,7 +184245,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -184753,10 +184265,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_args stru } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, inventory_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, reconcileKeyRecordValues_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); + oprot.writeFieldEnd(); + } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + if (struct.values != null) { + oprot.writeFieldBegin(VALUES_FIELD_DESC); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); + for (com.cinchapi.concourse.thrift.TObject _iter975 : struct.values) + { + _iter975.write(oprot); + } + oprot.writeSetEnd(); + } + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -184778,29 +184310,53 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, inventory_args str } - private static class inventory_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class reconcileKeyRecordValues_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public inventory_argsTupleScheme getScheme() { - return new inventory_argsTupleScheme(); + public reconcileKeyRecordValues_argsTupleScheme getScheme() { + return new reconcileKeyRecordValues_argsTupleScheme(); } } - private static class inventory_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class reconcileKeyRecordValues_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, inventory_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCreds()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetTransaction()) { + if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetEnvironment()) { + if (struct.isSetValues()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetCreds()) { + optionals.set(3); + } + if (struct.isSetTransaction()) { + optionals.set(4); + } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetKey()) { + oprot.writeString(struct.key); + } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetValues()) { + { + oprot.writeI32(struct.values.size()); + for (com.cinchapi.concourse.thrift.TObject _iter976 : struct.values) + { + _iter976.write(oprot); + } + } + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -184813,20 +184369,42 @@ public void write(org.apache.thrift.protocol.TProtocol prot, inventory_args stru } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, inventory_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); + } + if (incoming.get(1)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(2)) { + { + org.apache.thrift.protocol.TSet _set977 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.LinkedHashSet(2*_set977.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem978; + for (int _i979 = 0; _i979 < _set977.size; ++_i979) + { + _elem978 = new com.cinchapi.concourse.thrift.TObject(); + _elem978.read(iprot); + struct.values.add(_elem978); + } + } + struct.setValuesIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -184838,28 +184416,28 @@ private static S scheme(org.apache. } } - public static class inventory_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("inventory_result"); + public static class reconcileKeyRecordValues_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("reconcileKeyRecordValues_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new inventory_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new inventory_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new reconcileKeyRecordValues_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new reconcileKeyRecordValues_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -184875,14 +184453,14 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // EX return EX; case 2: // EX2 return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -184929,43 +184507,38 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(inventory_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(reconcileKeyRecordValues_result.class, metaDataMap); } - public inventory_result() { + public reconcileKeyRecordValues_result() { } - public inventory_result( - java.util.Set success, + public reconcileKeyRecordValues_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); - this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public inventory_result(inventory_result other) { - if (other.isSetSuccess()) { - java.util.Set __this__success = new java.util.LinkedHashSet(other.success); - this.success = __this__success; - } + public reconcileKeyRecordValues_result(reconcileKeyRecordValues_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -184973,62 +184546,24 @@ public inventory_result(inventory_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public inventory_result deepCopy() { - return new inventory_result(this); + public reconcileKeyRecordValues_result deepCopy() { + return new reconcileKeyRecordValues_result(this); } @Override public void clear() { - this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; - } - - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getSuccessIterator() { - return (this.success == null) ? null : this.success.iterator(); - } - - public void addToSuccess(long elem) { - if (this.success == null) { - this.success = new java.util.LinkedHashSet(); - } - this.success.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Set getSuccess() { - return this.success; - } - - public inventory_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set 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; - } + this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -185036,7 +184571,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public inventory_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public reconcileKeyRecordValues_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -185061,7 +184596,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public inventory_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public reconcileKeyRecordValues_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -185082,11 +184617,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public inventory_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public reconcileKeyRecordValues_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -185106,17 +184641,34 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public reconcileKeyRecordValues_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.util.Set)value); - } - break; - case EX: if (value == null) { unsetEx(); @@ -185137,7 +184689,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -185148,9 +184708,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return getSuccess(); - case EX: return getEx(); @@ -185160,6 +184717,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -185172,40 +184732,31 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case EX: return isSetEx(); case EX2: return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof inventory_result) - return this.equals((inventory_result)that); + if (that instanceof reconcileKeyRecordValues_result) + return this.equals((reconcileKeyRecordValues_result)that); return false; } - public boolean equals(inventory_result that) { + public boolean equals(reconcileKeyRecordValues_result that) { if (that == null) return false; if (this == that) return true; - 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_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -185233,6 +184784,15 @@ public boolean equals(inventory_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -185240,10 +184800,6 @@ public boolean equals(inventory_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -185256,27 +184812,21 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(inventory_result other) { + public int compareTo(reconcileKeyRecordValues_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -185307,6 +184857,16 @@ public int compareTo(inventory_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -185327,17 +184887,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("inventory_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("reconcileKeyRecordValues_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("ex:"); if (this.ex == null) { sb.append("null"); @@ -185361,6 +184913,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -185386,17 +184946,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class inventory_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class reconcileKeyRecordValues_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public inventory_resultStandardScheme getScheme() { - return new inventory_resultStandardScheme(); + public reconcileKeyRecordValues_resultStandardScheme getScheme() { + return new reconcileKeyRecordValues_resultStandardScheme(); } } - private static class inventory_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class reconcileKeyRecordValues_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, reconcileKeyRecordValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -185406,24 +184966,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_result st break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.SET) { - { - org.apache.thrift.protocol.TSet _set980 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set980.size); - long _elem981; - for (int _i982 = 0; _i982 < _set980.size; ++_i982) - { - _elem981 = iprot.readI64(); - struct.success.add(_elem981); - } - iprot.readSetEnd(); - } - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -185444,13 +184986,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_result st break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -185463,22 +185014,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_result st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, inventory_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, reconcileKeyRecordValues_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter983 : struct.success) - { - oprot.writeI64(_iter983); - } - oprot.writeSetEnd(); - } - oprot.writeFieldEnd(); - } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -185494,47 +185033,43 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, inventory_result s struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class inventory_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class reconcileKeyRecordValues_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public inventory_resultTupleScheme getScheme() { - return new inventory_resultTupleScheme(); + public reconcileKeyRecordValues_resultTupleScheme getScheme() { + return new reconcileKeyRecordValues_resultTupleScheme(); } } - private static class inventory_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class reconcileKeyRecordValues_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, inventory_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { + if (struct.isSetEx()) { optionals.set(0); } - if (struct.isSetEx()) { + if (struct.isSetEx2()) { optionals.set(1); } - if (struct.isSetEx2()) { + if (struct.isSetEx3()) { optionals.set(2); } - if (struct.isSetEx3()) { + if (struct.isSetEx4()) { optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (long _iter984 : struct.success) - { - oprot.writeI64(_iter984); - } - } - } if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -185544,40 +185079,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, inventory_result st if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, inventory_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, reconcileKeyRecordValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TSet _set985 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set985.size); - long _elem986; - for (int _i987 = 0; _i987 < _set985.size; ++_i987) - { - _elem986 = iprot.readI64(); - struct.success.add(_elem986); - } - } - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(1)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + if (incoming.get(2)) { + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(3)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -185586,28 +185116,25 @@ private static S scheme(org.apache. } } - public static class selectRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecord_args"); + public static class inventory_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("inventory_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new inventory_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new inventory_argsTupleSchemeFactory(); - public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + CREDS((short)1, "creds"), + TRANSACTION((short)2, "transaction"), + ENVIRONMENT((short)3, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -185623,13 +185150,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; - case 2: // CREDS + case 1: // CREDS return CREDS; - case 3: // TRANSACTION + case 2: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 3: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -185674,13 +185199,9 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -185688,21 +185209,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(inventory_args.class, metaDataMap); } - public selectRecord_args() { + public inventory_args() { } - public selectRecord_args( - long record, + public inventory_args( com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -185711,9 +185229,7 @@ public selectRecord_args( /** * Performs a deep copy on other. */ - public selectRecord_args(selectRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - this.record = other.record; + public inventory_args(inventory_args other) { if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -185726,48 +185242,23 @@ public selectRecord_args(selectRecord_args other) { } @Override - public selectRecord_args deepCopy() { - return new selectRecord_args(this); + public inventory_args deepCopy() { + return new inventory_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; - } - - public selectRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); - return this; - } - - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); - } - - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); - } - - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public inventory_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -185792,7 +185283,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public inventory_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -185817,7 +185308,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public inventory_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -185840,14 +185331,6 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: - if (value == null) { - unsetRecord(); - } else { - setRecord((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -185879,9 +185362,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); - case CREDS: return getCreds(); @@ -185903,8 +185383,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -185917,26 +185395,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecord_args) - return this.equals((selectRecord_args)that); + if (that instanceof inventory_args) + return this.equals((inventory_args)that); return false; } - public boolean equals(selectRecord_args that) { + public boolean equals(inventory_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) - return false; - if (this.record != that.record) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -185971,8 +185440,6 @@ public boolean equals(selectRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -185989,23 +185456,13 @@ public int hashCode() { } @Override - public int compareTo(selectRecord_args other) { + public int compareTo(inventory_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -186057,13 +185514,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("inventory_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -186112,25 +185565,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class inventory_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecord_argsStandardScheme getScheme() { - return new selectRecord_argsStandardScheme(); + public inventory_argsStandardScheme getScheme() { + return new inventory_argsStandardScheme(); } } - private static class selectRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class inventory_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -186140,15 +185591,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_args s break; } switch (schemeField.id) { - case 1: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // CREDS + case 1: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -186157,7 +185600,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 2: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -186166,7 +185609,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 3: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -186186,13 +185629,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, inventory_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -186214,35 +185654,29 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecord_args } - private static class selectRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class inventory_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecord_argsTupleScheme getScheme() { - return new selectRecord_argsTupleScheme(); + public inventory_argsTupleScheme getScheme() { + return new inventory_argsTupleScheme(); } } - private static class selectRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class inventory_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, inventory_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { - optionals.set(0); - } if (struct.isSetCreds()) { - optionals.set(1); + optionals.set(0); } if (struct.isSetTransaction()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetEnvironment()) { - optionals.set(3); - } - oprot.writeBitSet(optionals, 4); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + optionals.set(2); } + oprot.writeBitSet(optionals, 3); if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -186255,24 +185689,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecord_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, inventory_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } - if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(1)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -186284,18 +185714,18 @@ private static S scheme(org.apache. } } - public static class selectRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecord_result"); + public static class inventory_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("inventory_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new inventory_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new inventory_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -186376,10 +185806,8 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -186387,14 +185815,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(inventory_result.class, metaDataMap); } - public selectRecord_result() { + public inventory_result() { } - public selectRecord_result( - java.util.Map> success, + public inventory_result( + java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -186409,23 +185837,9 @@ public selectRecord_result( /** * Performs a deep copy on other. */ - public selectRecord_result(selectRecord_result other) { + public inventory_result(inventory_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { - - java.lang.String other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); - - java.lang.String __this__success_copy_key = other_element_key; - - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { - __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); - } - - __this__success.put(__this__success_copy_key, __this__success_copy_value); - } + java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; } if (other.isSetEx()) { @@ -186440,8 +185854,8 @@ public selectRecord_result(selectRecord_result other) { } @Override - public selectRecord_result deepCopy() { - return new selectRecord_result(this); + public inventory_result deepCopy() { + return new inventory_result(this); } @Override @@ -186456,19 +185870,24 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.lang.String key, java.util.Set val) { + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(long elem) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashSet(); } - this.success.put(key, val); + this.success.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Set getSuccess() { return this.success; } - public selectRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public inventory_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -186493,7 +185912,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public inventory_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -186518,7 +185937,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public inventory_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -186543,7 +185962,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public inventory_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -186570,7 +185989,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Set)value); } break; @@ -186643,12 +186062,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecord_result) - return this.equals((selectRecord_result)that); + if (that instanceof inventory_result) + return this.equals((inventory_result)that); return false; } - public boolean equals(selectRecord_result that) { + public boolean equals(inventory_result that) { if (that == null) return false; if (this == that) @@ -186717,7 +186136,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecord_result other) { + public int compareTo(inventory_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -186784,7 +186203,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("inventory_result("); boolean first = true; sb.append("success:"); @@ -186843,17 +186262,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class inventory_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecord_resultStandardScheme getScheme() { - return new selectRecord_resultStandardScheme(); + public inventory_resultStandardScheme getScheme() { + return new inventory_resultStandardScheme(); } } - private static class selectRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class inventory_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, inventory_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -186864,30 +186283,17 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_result } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TMap _map988 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map988.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key989; - @org.apache.thrift.annotation.Nullable java.util.Set _val990; - for (int _i991 = 0; _i991 < _map988.size; ++_i991) + org.apache.thrift.protocol.TSet _set980 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set980.size); + long _elem981; + for (int _i982 = 0; _i982 < _set980.size; ++_i982) { - _key989 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set992 = iprot.readSetBegin(); - _val990 = new java.util.LinkedHashSet(2*_set992.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem993; - for (int _i994 = 0; _i994 < _set992.size; ++_i994) - { - _elem993 = new com.cinchapi.concourse.thrift.TObject(); - _elem993.read(iprot); - _val990.add(_elem993); - } - iprot.readSetEnd(); - } - struct.success.put(_key989, _val990); + _elem981 = iprot.readI64(); + struct.success.add(_elem981); } - iprot.readMapEnd(); + iprot.readSetEnd(); } struct.setSuccessIsSet(true); } else { @@ -186933,27 +186339,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, inventory_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter995 : struct.success.entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); + for (long _iter983 : struct.success) { - oprot.writeString(_iter995.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter995.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter996 : _iter995.getValue()) - { - _iter996.write(oprot); - } - oprot.writeSetEnd(); - } + oprot.writeI64(_iter983); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } oprot.writeFieldEnd(); } @@ -186978,17 +186376,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecord_resul } - private static class selectRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class inventory_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecord_resultTupleScheme getScheme() { - return new selectRecord_resultTupleScheme(); + public inventory_resultTupleScheme getScheme() { + return new inventory_resultTupleScheme(); } } - private static class selectRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class inventory_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, inventory_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -187007,16 +186405,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecord_result if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter997 : struct.success.entrySet()) + for (long _iter984 : struct.success) { - oprot.writeString(_iter997.getKey()); - { - oprot.writeI32(_iter997.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter998 : _iter997.getValue()) - { - _iter998.write(oprot); - } - } + oprot.writeI64(_iter984); } } } @@ -187032,30 +186423,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecord_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, inventory_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map999 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map999.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1000; - @org.apache.thrift.annotation.Nullable java.util.Set _val1001; - for (int _i1002 = 0; _i1002 < _map999.size; ++_i1002) + org.apache.thrift.protocol.TSet _set985 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set985.size); + long _elem986; + for (int _i987 = 0; _i987 < _set985.size; ++_i987) { - _key1000 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1003 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1001 = new java.util.LinkedHashSet(2*_set1003.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1004; - for (int _i1005 = 0; _i1005 < _set1003.size; ++_i1005) - { - _elem1004 = new com.cinchapi.concourse.thrift.TObject(); - _elem1004.read(iprot); - _val1001.add(_elem1004); - } - } - struct.success.put(_key1000, _val1001); + _elem986 = iprot.readI64(); + struct.success.add(_elem986); } } struct.setSuccessIsSet(true); @@ -187083,25 +186462,25 @@ private static S scheme(org.apache. } } - public static class selectRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecords_args"); + public static class selectRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecord_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecord_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), + RECORD((short)1, "record"), CREDS((short)2, "creds"), TRANSACTION((short)3, "transaction"), ENVIRONMENT((short)4, "environment"); @@ -187120,8 +186499,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; + case 1: // RECORD + return RECORD; case 2: // CREDS return CREDS; case 3: // TRANSACTION @@ -187171,12 +186550,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -187184,20 +186564,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecord_args.class, metaDataMap); } - public selectRecords_args() { + public selectRecord_args() { } - public selectRecords_args( - java.util.List records, + public selectRecord_args( + long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; + this.record = record; + setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -187206,11 +186587,9 @@ public selectRecords_args( /** * Performs a deep copy on other. */ - public selectRecords_args(selectRecords_args other) { - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; - } + public selectRecord_args(selectRecord_args other) { + __isset_bitfield = other.__isset_bitfield; + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -187223,57 +186602,40 @@ public selectRecords_args(selectRecords_args other) { } @Override - public selectRecords_args deepCopy() { - return new selectRecords_args(this); + public selectRecord_args deepCopy() { + return new selectRecord_args(this); } @Override public void clear() { - this.records = null; + setRecordIsSet(false); + this.record = 0; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public long getRecord() { + return this.record; } - public selectRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public selectRecord_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetRecords() { - this.records = null; + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -187281,7 +186643,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -187306,7 +186668,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -187331,7 +186693,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -187354,11 +186716,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); } break; @@ -187393,8 +186755,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); case CREDS: return getCreds(); @@ -187417,8 +186779,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -187431,23 +186793,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecords_args) - return this.equals((selectRecords_args)that); + if (that instanceof selectRecord_args) + return this.equals((selectRecord_args)that); return false; } - public boolean equals(selectRecords_args that) { + public boolean equals(selectRecord_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) return false; } @@ -187485,9 +186847,7 @@ public boolean equals(selectRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -187505,19 +186865,19 @@ public int hashCode() { } @Override - public int compareTo(selectRecords_args other) { + public int compareTo(selectRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } @@ -187573,15 +186933,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecord_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } + sb.append("record:"); + sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -187632,23 +186988,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecords_argsStandardScheme getScheme() { - return new selectRecords_argsStandardScheme(); + public selectRecord_argsStandardScheme getScheme() { + return new selectRecord_argsStandardScheme(); } } - private static class selectRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -187658,20 +187016,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecords_args break; } switch (schemeField.id) { - case 1: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list1006 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1006.size); - long _elem1007; - for (int _i1008 = 0; _i1008 < _list1006.size; ++_i1008) - { - _elem1007 = iprot.readI64(); - struct.records.add(_elem1007); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 1: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -187714,22 +187062,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecords_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1009 : struct.records) - { - oprot.writeI64(_iter1009); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -187751,20 +187090,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecords_args } - private static class selectRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecords_argsTupleScheme getScheme() { - return new selectRecords_argsTupleScheme(); + public selectRecord_argsTupleScheme getScheme() { + return new selectRecord_argsTupleScheme(); } } - private static class selectRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(0); } if (struct.isSetCreds()) { @@ -187777,14 +187116,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecords_args optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter1010 : struct.records) - { - oprot.writeI64(_iter1010); - } - } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -187798,21 +187131,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecords_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list1011 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1011.size); - long _elem1012; - for (int _i1013 = 0; _i1013 < _list1011.size; ++_i1013) - { - _elem1012 = iprot.readI64(); - struct.records.add(_elem1012); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -187836,18 +187160,18 @@ private static S scheme(org.apache. } } - public static class selectRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecords_result"); + public static class selectRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecord_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecord_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -187929,11 +187253,9 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -187941,14 +187263,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecord_result.class, metaDataMap); } - public selectRecords_result() { + public selectRecord_result() { } - public selectRecords_result( - java.util.Map>> success, + public selectRecord_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -187963,30 +187285,19 @@ public selectRecords_result( /** * Performs a deep copy on other. */ - public selectRecords_result(selectRecords_result other) { + public selectRecord_result(selectRecord_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + java.lang.String other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { - __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); - } + java.lang.String __this__success_copy_key = other_element_key; - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { + __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -188005,8 +187316,8 @@ public selectRecords_result(selectRecords_result other) { } @Override - public selectRecords_result deepCopy() { - return new selectRecords_result(this); + public selectRecord_result deepCopy() { + return new selectRecord_result(this); } @Override @@ -188021,19 +187332,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map> val) { + public void putToSuccess(java.lang.String key, java.util.Set val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public selectRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public selectRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -188058,7 +187369,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -188083,7 +187394,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -188108,7 +187419,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -188135,7 +187446,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.Map>)value); } break; @@ -188208,12 +187519,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecords_result) - return this.equals((selectRecords_result)that); + if (that instanceof selectRecord_result) + return this.equals((selectRecord_result)that); return false; } - public boolean equals(selectRecords_result that) { + public boolean equals(selectRecord_result that) { if (that == null) return false; if (this == that) @@ -188282,7 +187593,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecords_result other) { + public int compareTo(selectRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -188349,7 +187660,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecord_result("); boolean first = true; sb.append("success:"); @@ -188408,17 +187719,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecords_resultStandardScheme getScheme() { - return new selectRecords_resultStandardScheme(); + public selectRecord_resultStandardScheme getScheme() { + return new selectRecord_resultStandardScheme(); } } - private static class selectRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -188431,38 +187742,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecords_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1014 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1014.size); - long _key1015; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1016; - for (int _i1017 = 0; _i1017 < _map1014.size; ++_i1017) + org.apache.thrift.protocol.TMap _map988 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map988.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key989; + @org.apache.thrift.annotation.Nullable java.util.Set _val990; + for (int _i991 = 0; _i991 < _map988.size; ++_i991) { - _key1015 = iprot.readI64(); + _key989 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map1018 = iprot.readMapBegin(); - _val1016 = new java.util.LinkedHashMap>(2*_map1018.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1019; - @org.apache.thrift.annotation.Nullable java.util.Set _val1020; - for (int _i1021 = 0; _i1021 < _map1018.size; ++_i1021) + org.apache.thrift.protocol.TSet _set992 = iprot.readSetBegin(); + _val990 = new java.util.LinkedHashSet(2*_set992.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem993; + for (int _i994 = 0; _i994 < _set992.size; ++_i994) { - _key1019 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1022 = iprot.readSetBegin(); - _val1020 = new java.util.LinkedHashSet(2*_set1022.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1023; - for (int _i1024 = 0; _i1024 < _set1022.size; ++_i1024) - { - _elem1023 = new com.cinchapi.concourse.thrift.TObject(); - _elem1023.read(iprot); - _val1020.add(_elem1023); - } - iprot.readSetEnd(); - } - _val1016.put(_key1019, _val1020); + _elem993 = new com.cinchapi.concourse.thrift.TObject(); + _elem993.read(iprot); + _val990.add(_elem993); } - iprot.readMapEnd(); + iprot.readSetEnd(); } - struct.success.put(_key1015, _val1016); + struct.success.put(_key989, _val990); } iprot.readMapEnd(); } @@ -188510,32 +187809,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecords_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1025 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter995 : struct.success.entrySet()) { - oprot.writeI64(_iter1025.getKey()); + oprot.writeString(_iter995.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1025.getValue().size())); - for (java.util.Map.Entry> _iter1026 : _iter1025.getValue().entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter995.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter996 : _iter995.getValue()) { - oprot.writeString(_iter1026.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1026.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1027 : _iter1026.getValue()) - { - _iter1027.write(oprot); - } - oprot.writeSetEnd(); - } + _iter996.write(oprot); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } } oprot.writeMapEnd(); @@ -188563,17 +187854,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecords_resu } - private static class selectRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecords_resultTupleScheme getScheme() { - return new selectRecords_resultTupleScheme(); + public selectRecord_resultTupleScheme getScheme() { + return new selectRecord_resultTupleScheme(); } } - private static class selectRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -188592,21 +187883,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecords_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1028 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter997 : struct.success.entrySet()) { - oprot.writeI64(_iter1028.getKey()); + oprot.writeString(_iter997.getKey()); { - oprot.writeI32(_iter1028.getValue().size()); - for (java.util.Map.Entry> _iter1029 : _iter1028.getValue().entrySet()) + oprot.writeI32(_iter997.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter998 : _iter997.getValue()) { - oprot.writeString(_iter1029.getKey()); - { - oprot.writeI32(_iter1029.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1030 : _iter1029.getValue()) - { - _iter1030.write(oprot); - } - } + _iter998.write(oprot); } } } @@ -188624,41 +187908,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecords_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1031 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1031.size); - long _key1032; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1033; - for (int _i1034 = 0; _i1034 < _map1031.size; ++_i1034) + org.apache.thrift.protocol.TMap _map999 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map999.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1000; + @org.apache.thrift.annotation.Nullable java.util.Set _val1001; + for (int _i1002 = 0; _i1002 < _map999.size; ++_i1002) { - _key1032 = iprot.readI64(); + _key1000 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map1035 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1033 = new java.util.LinkedHashMap>(2*_map1035.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1036; - @org.apache.thrift.annotation.Nullable java.util.Set _val1037; - for (int _i1038 = 0; _i1038 < _map1035.size; ++_i1038) + org.apache.thrift.protocol.TSet _set1003 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1001 = new java.util.LinkedHashSet(2*_set1003.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1004; + for (int _i1005 = 0; _i1005 < _set1003.size; ++_i1005) { - _key1036 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1039 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1037 = new java.util.LinkedHashSet(2*_set1039.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1040; - for (int _i1041 = 0; _i1041 < _set1039.size; ++_i1041) - { - _elem1040 = new com.cinchapi.concourse.thrift.TObject(); - _elem1040.read(iprot); - _val1037.add(_elem1040); - } - } - _val1033.put(_key1036, _val1037); + _elem1004 = new com.cinchapi.concourse.thrift.TObject(); + _elem1004.read(iprot); + _val1001.add(_elem1004); } } - struct.success.put(_key1032, _val1033); + struct.success.put(_key1000, _val1001); } } struct.setSuccessIsSet(true); @@ -188686,20 +187959,18 @@ private static S scheme(org.apache. } } - public static class selectRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsPage_args"); + public static class selectRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecords_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -188707,10 +187978,9 @@ public static class selectRecordsPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -188728,13 +187998,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // RECORDS return RECORDS; - case 2: // PAGE - return PAGE; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -188785,8 +188053,6 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -188794,22 +188060,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecords_args.class, metaDataMap); } - public selectRecordsPage_args() { + public selectRecords_args() { } - public selectRecordsPage_args( + public selectRecords_args( java.util.List records, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.records = records; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -188818,14 +188082,11 @@ public selectRecordsPage_args( /** * Performs a deep copy on other. */ - public selectRecordsPage_args(selectRecordsPage_args other) { + public selectRecords_args(selectRecords_args other) { if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -188838,14 +188099,13 @@ public selectRecordsPage_args(selectRecordsPage_args other) { } @Override - public selectRecordsPage_args deepCopy() { - return new selectRecordsPage_args(this); + public selectRecords_args deepCopy() { + return new selectRecords_args(this); } @Override public void clear() { this.records = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -188872,7 +188132,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -188892,37 +188152,12 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -188947,7 +188182,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -188972,7 +188207,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -189003,14 +188238,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -189045,9 +188272,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -189071,8 +188295,6 @@ public boolean isSet(_Fields field) { switch (field) { case RECORDS: return isSetRecords(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -189085,12 +188307,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsPage_args) - return this.equals((selectRecordsPage_args)that); + if (that instanceof selectRecords_args) + return this.equals((selectRecords_args)that); return false; } - public boolean equals(selectRecordsPage_args that) { + public boolean equals(selectRecords_args that) { if (that == null) return false; if (this == that) @@ -189105,15 +188327,6 @@ public boolean equals(selectRecordsPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -189152,10 +188365,6 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -189172,7 +188381,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsPage_args other) { + public int compareTo(selectRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -189189,16 +188398,6 @@ public int compareTo(selectRecordsPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -189250,7 +188449,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecords_args("); boolean first = true; sb.append("records:"); @@ -189261,14 +188460,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -189299,9 +188490,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -189326,17 +188514,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsPage_argsStandardScheme getScheme() { - return new selectRecordsPage_argsStandardScheme(); + public selectRecords_argsStandardScheme getScheme() { + return new selectRecords_argsStandardScheme(); } } - private static class selectRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -189349,13 +188537,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_a case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1042 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1042.size); - long _elem1043; - for (int _i1044 = 0; _i1044 < _list1042.size; ++_i1044) + org.apache.thrift.protocol.TList _list1006 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1006.size); + long _elem1007; + for (int _i1008 = 0; _i1008 < _list1006.size; ++_i1008) { - _elem1043 = iprot.readI64(); - struct.records.add(_elem1043); + _elem1007 = iprot.readI64(); + struct.records.add(_elem1007); } iprot.readListEnd(); } @@ -189364,16 +188552,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -189382,7 +188561,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -189391,7 +188570,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -189411,7 +188590,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -189419,19 +188598,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsPage_ oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1045 : struct.records) + for (long _iter1009 : struct.records) { - oprot.writeI64(_iter1045); + oprot.writeI64(_iter1009); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -189453,47 +188627,41 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsPage_ } - private static class selectRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsPage_argsTupleScheme getScheme() { - return new selectRecordsPage_argsTupleScheme(); + public selectRecords_argsTupleScheme getScheme() { + return new selectRecords_argsTupleScheme(); } } - private static class selectRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetPage()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1046 : struct.records) + for (long _iter1010 : struct.records) { - oprot.writeI64(_iter1046); + oprot.writeI64(_iter1010); } } } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -189506,38 +188674,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1047 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1047.size); - long _elem1048; - for (int _i1049 = 0; _i1049 < _list1047.size; ++_i1049) + org.apache.thrift.protocol.TList _list1011 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1011.size); + long _elem1012; + for (int _i1013 = 0; _i1013 < _list1011.size; ++_i1013) { - _elem1048 = iprot.readI64(); - struct.records.add(_elem1048); + _elem1012 = iprot.readI64(); + struct.records.add(_elem1012); } } struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -189549,16 +188712,16 @@ private static S scheme(org.apache. } } - public static class selectRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsPage_result"); + public static class selectRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecords_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -189654,13 +188817,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecords_result.class, metaDataMap); } - public selectRecordsPage_result() { + public selectRecords_result() { } - public selectRecordsPage_result( + public selectRecords_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -189676,7 +188839,7 @@ public selectRecordsPage_result( /** * Performs a deep copy on other. */ - public selectRecordsPage_result(selectRecordsPage_result other) { + public selectRecords_result(selectRecords_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -189718,8 +188881,8 @@ public selectRecordsPage_result(selectRecordsPage_result other) { } @Override - public selectRecordsPage_result deepCopy() { - return new selectRecordsPage_result(this); + public selectRecords_result deepCopy() { + return new selectRecords_result(this); } @Override @@ -189746,7 +188909,7 @@ public java.util.Map>> success) { + public selectRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -189771,7 +188934,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -189796,7 +188959,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -189821,7 +188984,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -189921,12 +189084,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsPage_result) - return this.equals((selectRecordsPage_result)that); + if (that instanceof selectRecords_result) + return this.equals((selectRecords_result)that); return false; } - public boolean equals(selectRecordsPage_result that) { + public boolean equals(selectRecords_result that) { if (that == null) return false; if (this == that) @@ -189995,7 +189158,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsPage_result other) { + public int compareTo(selectRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -190062,7 +189225,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecords_result("); boolean first = true; sb.append("success:"); @@ -190121,17 +189284,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsPage_resultStandardScheme getScheme() { - return new selectRecordsPage_resultStandardScheme(); + public selectRecords_resultStandardScheme getScheme() { + return new selectRecords_resultStandardScheme(); } } - private static class selectRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -190144,38 +189307,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1050 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1050.size); - long _key1051; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1052; - for (int _i1053 = 0; _i1053 < _map1050.size; ++_i1053) + org.apache.thrift.protocol.TMap _map1014 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1014.size); + long _key1015; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1016; + for (int _i1017 = 0; _i1017 < _map1014.size; ++_i1017) { - _key1051 = iprot.readI64(); + _key1015 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1054 = iprot.readMapBegin(); - _val1052 = new java.util.LinkedHashMap>(2*_map1054.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1055; - @org.apache.thrift.annotation.Nullable java.util.Set _val1056; - for (int _i1057 = 0; _i1057 < _map1054.size; ++_i1057) + org.apache.thrift.protocol.TMap _map1018 = iprot.readMapBegin(); + _val1016 = new java.util.LinkedHashMap>(2*_map1018.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1019; + @org.apache.thrift.annotation.Nullable java.util.Set _val1020; + for (int _i1021 = 0; _i1021 < _map1018.size; ++_i1021) { - _key1055 = iprot.readString(); + _key1019 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1058 = iprot.readSetBegin(); - _val1056 = new java.util.LinkedHashSet(2*_set1058.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1059; - for (int _i1060 = 0; _i1060 < _set1058.size; ++_i1060) + org.apache.thrift.protocol.TSet _set1022 = iprot.readSetBegin(); + _val1020 = new java.util.LinkedHashSet(2*_set1022.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1023; + for (int _i1024 = 0; _i1024 < _set1022.size; ++_i1024) { - _elem1059 = new com.cinchapi.concourse.thrift.TObject(); - _elem1059.read(iprot); - _val1056.add(_elem1059); + _elem1023 = new com.cinchapi.concourse.thrift.TObject(); + _elem1023.read(iprot); + _val1020.add(_elem1023); } iprot.readSetEnd(); } - _val1052.put(_key1055, _val1056); + _val1016.put(_key1019, _val1020); } iprot.readMapEnd(); } - struct.success.put(_key1051, _val1052); + struct.success.put(_key1015, _val1016); } iprot.readMapEnd(); } @@ -190223,7 +189386,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -190231,19 +189394,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsPage_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1061 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1025 : struct.success.entrySet()) { - oprot.writeI64(_iter1061.getKey()); + oprot.writeI64(_iter1025.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1061.getValue().size())); - for (java.util.Map.Entry> _iter1062 : _iter1061.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1025.getValue().size())); + for (java.util.Map.Entry> _iter1026 : _iter1025.getValue().entrySet()) { - oprot.writeString(_iter1062.getKey()); + oprot.writeString(_iter1026.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1062.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1063 : _iter1062.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1026.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1027 : _iter1026.getValue()) { - _iter1063.write(oprot); + _iter1027.write(oprot); } oprot.writeSetEnd(); } @@ -190276,17 +189439,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsPage_ } - private static class selectRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsPage_resultTupleScheme getScheme() { - return new selectRecordsPage_resultTupleScheme(); + public selectRecords_resultTupleScheme getScheme() { + return new selectRecords_resultTupleScheme(); } } - private static class selectRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -190305,19 +189468,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1064 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1028 : struct.success.entrySet()) { - oprot.writeI64(_iter1064.getKey()); + oprot.writeI64(_iter1028.getKey()); { - oprot.writeI32(_iter1064.getValue().size()); - for (java.util.Map.Entry> _iter1065 : _iter1064.getValue().entrySet()) + oprot.writeI32(_iter1028.getValue().size()); + for (java.util.Map.Entry> _iter1029 : _iter1028.getValue().entrySet()) { - oprot.writeString(_iter1065.getKey()); + oprot.writeString(_iter1029.getKey()); { - oprot.writeI32(_iter1065.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1066 : _iter1065.getValue()) + oprot.writeI32(_iter1029.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1030 : _iter1029.getValue()) { - _iter1066.write(oprot); + _iter1030.write(oprot); } } } @@ -190337,41 +189500,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1067 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1067.size); - long _key1068; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1069; - for (int _i1070 = 0; _i1070 < _map1067.size; ++_i1070) + org.apache.thrift.protocol.TMap _map1031 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1031.size); + long _key1032; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1033; + for (int _i1034 = 0; _i1034 < _map1031.size; ++_i1034) { - _key1068 = iprot.readI64(); + _key1032 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1071 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1069 = new java.util.LinkedHashMap>(2*_map1071.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1072; - @org.apache.thrift.annotation.Nullable java.util.Set _val1073; - for (int _i1074 = 0; _i1074 < _map1071.size; ++_i1074) + org.apache.thrift.protocol.TMap _map1035 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1033 = new java.util.LinkedHashMap>(2*_map1035.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1036; + @org.apache.thrift.annotation.Nullable java.util.Set _val1037; + for (int _i1038 = 0; _i1038 < _map1035.size; ++_i1038) { - _key1072 = iprot.readString(); + _key1036 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1075 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1073 = new java.util.LinkedHashSet(2*_set1075.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1076; - for (int _i1077 = 0; _i1077 < _set1075.size; ++_i1077) + org.apache.thrift.protocol.TSet _set1039 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1037 = new java.util.LinkedHashSet(2*_set1039.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1040; + for (int _i1041 = 0; _i1041 < _set1039.size; ++_i1041) { - _elem1076 = new com.cinchapi.concourse.thrift.TObject(); - _elem1076.read(iprot); - _val1073.add(_elem1076); + _elem1040 = new com.cinchapi.concourse.thrift.TObject(); + _elem1040.read(iprot); + _val1037.add(_elem1040); } } - _val1069.put(_key1072, _val1073); + _val1033.put(_key1036, _val1037); } } - struct.success.put(_key1068, _val1069); + struct.success.put(_key1032, _val1033); } } struct.setSuccessIsSet(true); @@ -190399,20 +189562,20 @@ private static S scheme(org.apache. } } - public static class selectRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsOrder_args"); + public static class selectRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsPage_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -190420,7 +189583,7 @@ public static class selectRecordsOrder_args implements org.apache.thrift.TBase records, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.records = records; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -190531,13 +189694,13 @@ public selectRecordsOrder_args( /** * Performs a deep copy on other. */ - public selectRecordsOrder_args(selectRecordsOrder_args other) { + public selectRecordsPage_args(selectRecordsPage_args other) { if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -190551,14 +189714,14 @@ public selectRecordsOrder_args(selectRecordsOrder_args other) { } @Override - public selectRecordsOrder_args deepCopy() { - return new selectRecordsOrder_args(this); + public selectRecordsPage_args deepCopy() { + return new selectRecordsPage_args(this); } @Override public void clear() { this.records = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -190585,7 +189748,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -190606,27 +189769,27 @@ public void setRecordsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -190635,7 +189798,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -190660,7 +189823,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -190685,7 +189848,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -190716,11 +189879,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -190758,8 +189921,8 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -190784,8 +189947,8 @@ public boolean isSet(_Fields field) { switch (field) { case RECORDS: return isSetRecords(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -190798,12 +189961,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsOrder_args) - return this.equals((selectRecordsOrder_args)that); + if (that instanceof selectRecordsPage_args) + return this.equals((selectRecordsPage_args)that); return false; } - public boolean equals(selectRecordsOrder_args that) { + public boolean equals(selectRecordsPage_args that) { if (that == null) return false; if (this == that) @@ -190818,12 +189981,12 @@ public boolean equals(selectRecordsOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -190865,9 +190028,9 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -190885,7 +190048,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsOrder_args other) { + public int compareTo(selectRecordsPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -190902,12 +190065,12 @@ public int compareTo(selectRecordsOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -190963,7 +190126,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsPage_args("); boolean first = true; sb.append("records:"); @@ -190974,11 +190137,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -191012,8 +190175,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -191039,17 +190202,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsOrder_argsStandardScheme getScheme() { - return new selectRecordsOrder_argsStandardScheme(); + public selectRecordsPage_argsStandardScheme getScheme() { + return new selectRecordsPage_argsStandardScheme(); } } - private static class selectRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -191062,13 +190225,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_ case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1078 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1078.size); - long _elem1079; - for (int _i1080 = 0; _i1080 < _list1078.size; ++_i1080) + org.apache.thrift.protocol.TList _list1042 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1042.size); + long _elem1043; + for (int _i1044 = 0; _i1044 < _list1042.size; ++_i1044) { - _elem1079 = iprot.readI64(); - struct.records.add(_elem1079); + _elem1043 = iprot.readI64(); + struct.records.add(_elem1043); } iprot.readListEnd(); } @@ -191077,11 +190240,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // ORDER + case 2: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -191124,7 +190287,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -191132,17 +190295,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1081 : struct.records) + for (long _iter1045 : struct.records) { - oprot.writeI64(_iter1081); + oprot.writeI64(_iter1045); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -191166,23 +190329,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder } - private static class selectRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsOrder_argsTupleScheme getScheme() { - return new selectRecordsOrder_argsTupleScheme(); + public selectRecordsPage_argsTupleScheme getScheme() { + return new selectRecordsPage_argsTupleScheme(); } } - private static class selectRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -191198,14 +190361,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_ if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1082 : struct.records) + for (long _iter1046 : struct.records) { - oprot.writeI64(_iter1082); + oprot.writeI64(_iter1046); } } } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -191219,26 +190382,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1083 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1083.size); - long _elem1084; - for (int _i1085 = 0; _i1085 < _list1083.size; ++_i1085) + org.apache.thrift.protocol.TList _list1047 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1047.size); + long _elem1048; + for (int _i1049 = 0; _i1049 < _list1047.size; ++_i1049) { - _elem1084 = iprot.readI64(); - struct.records.add(_elem1084); + _elem1048 = iprot.readI64(); + struct.records.add(_elem1048); } } struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -191262,16 +190425,16 @@ private static S scheme(org.apache. } } - public static class selectRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsOrder_result"); + public static class selectRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -191367,13 +190530,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsPage_result.class, metaDataMap); } - public selectRecordsOrder_result() { + public selectRecordsPage_result() { } - public selectRecordsOrder_result( + public selectRecordsPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -191389,7 +190552,7 @@ public selectRecordsOrder_result( /** * Performs a deep copy on other. */ - public selectRecordsOrder_result(selectRecordsOrder_result other) { + public selectRecordsPage_result(selectRecordsPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -191431,8 +190594,8 @@ public selectRecordsOrder_result(selectRecordsOrder_result other) { } @Override - public selectRecordsOrder_result deepCopy() { - return new selectRecordsOrder_result(this); + public selectRecordsPage_result deepCopy() { + return new selectRecordsPage_result(this); } @Override @@ -191459,7 +190622,7 @@ public java.util.Map>> success) { + public selectRecordsPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -191484,7 +190647,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -191509,7 +190672,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -191534,7 +190697,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -191634,12 +190797,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsOrder_result) - return this.equals((selectRecordsOrder_result)that); + if (that instanceof selectRecordsPage_result) + return this.equals((selectRecordsPage_result)that); return false; } - public boolean equals(selectRecordsOrder_result that) { + public boolean equals(selectRecordsPage_result that) { if (that == null) return false; if (this == that) @@ -191708,7 +190871,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsOrder_result other) { + public int compareTo(selectRecordsPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -191775,7 +190938,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsPage_result("); boolean first = true; sb.append("success:"); @@ -191834,17 +190997,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsOrder_resultStandardScheme getScheme() { - return new selectRecordsOrder_resultStandardScheme(); + public selectRecordsPage_resultStandardScheme getScheme() { + return new selectRecordsPage_resultStandardScheme(); } } - private static class selectRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -191857,38 +191020,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1086 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1086.size); - long _key1087; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1088; - for (int _i1089 = 0; _i1089 < _map1086.size; ++_i1089) + org.apache.thrift.protocol.TMap _map1050 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1050.size); + long _key1051; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1052; + for (int _i1053 = 0; _i1053 < _map1050.size; ++_i1053) { - _key1087 = iprot.readI64(); + _key1051 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1090 = iprot.readMapBegin(); - _val1088 = new java.util.LinkedHashMap>(2*_map1090.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1091; - @org.apache.thrift.annotation.Nullable java.util.Set _val1092; - for (int _i1093 = 0; _i1093 < _map1090.size; ++_i1093) + org.apache.thrift.protocol.TMap _map1054 = iprot.readMapBegin(); + _val1052 = new java.util.LinkedHashMap>(2*_map1054.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1055; + @org.apache.thrift.annotation.Nullable java.util.Set _val1056; + for (int _i1057 = 0; _i1057 < _map1054.size; ++_i1057) { - _key1091 = iprot.readString(); + _key1055 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1094 = iprot.readSetBegin(); - _val1092 = new java.util.LinkedHashSet(2*_set1094.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1095; - for (int _i1096 = 0; _i1096 < _set1094.size; ++_i1096) + org.apache.thrift.protocol.TSet _set1058 = iprot.readSetBegin(); + _val1056 = new java.util.LinkedHashSet(2*_set1058.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1059; + for (int _i1060 = 0; _i1060 < _set1058.size; ++_i1060) { - _elem1095 = new com.cinchapi.concourse.thrift.TObject(); - _elem1095.read(iprot); - _val1092.add(_elem1095); + _elem1059 = new com.cinchapi.concourse.thrift.TObject(); + _elem1059.read(iprot); + _val1056.add(_elem1059); } iprot.readSetEnd(); } - _val1088.put(_key1091, _val1092); + _val1052.put(_key1055, _val1056); } iprot.readMapEnd(); } - struct.success.put(_key1087, _val1088); + struct.success.put(_key1051, _val1052); } iprot.readMapEnd(); } @@ -191936,7 +191099,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -191944,19 +191107,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1097 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1061 : struct.success.entrySet()) { - oprot.writeI64(_iter1097.getKey()); + oprot.writeI64(_iter1061.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1097.getValue().size())); - for (java.util.Map.Entry> _iter1098 : _iter1097.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1061.getValue().size())); + for (java.util.Map.Entry> _iter1062 : _iter1061.getValue().entrySet()) { - oprot.writeString(_iter1098.getKey()); + oprot.writeString(_iter1062.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1098.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1099 : _iter1098.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1062.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1063 : _iter1062.getValue()) { - _iter1099.write(oprot); + _iter1063.write(oprot); } oprot.writeSetEnd(); } @@ -191989,17 +191152,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder } - private static class selectRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsOrder_resultTupleScheme getScheme() { - return new selectRecordsOrder_resultTupleScheme(); + public selectRecordsPage_resultTupleScheme getScheme() { + return new selectRecordsPage_resultTupleScheme(); } } - private static class selectRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -192018,19 +191181,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1100 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1064 : struct.success.entrySet()) { - oprot.writeI64(_iter1100.getKey()); + oprot.writeI64(_iter1064.getKey()); { - oprot.writeI32(_iter1100.getValue().size()); - for (java.util.Map.Entry> _iter1101 : _iter1100.getValue().entrySet()) + oprot.writeI32(_iter1064.getValue().size()); + for (java.util.Map.Entry> _iter1065 : _iter1064.getValue().entrySet()) { - oprot.writeString(_iter1101.getKey()); + oprot.writeString(_iter1065.getKey()); { - oprot.writeI32(_iter1101.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1102 : _iter1101.getValue()) + oprot.writeI32(_iter1065.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1066 : _iter1065.getValue()) { - _iter1102.write(oprot); + _iter1066.write(oprot); } } } @@ -192050,41 +191213,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1103 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1103.size); - long _key1104; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1105; - for (int _i1106 = 0; _i1106 < _map1103.size; ++_i1106) + org.apache.thrift.protocol.TMap _map1067 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1067.size); + long _key1068; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1069; + for (int _i1070 = 0; _i1070 < _map1067.size; ++_i1070) { - _key1104 = iprot.readI64(); + _key1068 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1107 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1105 = new java.util.LinkedHashMap>(2*_map1107.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1108; - @org.apache.thrift.annotation.Nullable java.util.Set _val1109; - for (int _i1110 = 0; _i1110 < _map1107.size; ++_i1110) + org.apache.thrift.protocol.TMap _map1071 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1069 = new java.util.LinkedHashMap>(2*_map1071.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1072; + @org.apache.thrift.annotation.Nullable java.util.Set _val1073; + for (int _i1074 = 0; _i1074 < _map1071.size; ++_i1074) { - _key1108 = iprot.readString(); + _key1072 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1111 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1109 = new java.util.LinkedHashSet(2*_set1111.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1112; - for (int _i1113 = 0; _i1113 < _set1111.size; ++_i1113) + org.apache.thrift.protocol.TSet _set1075 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1073 = new java.util.LinkedHashSet(2*_set1075.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1076; + for (int _i1077 = 0; _i1077 < _set1075.size; ++_i1077) { - _elem1112 = new com.cinchapi.concourse.thrift.TObject(); - _elem1112.read(iprot); - _val1109.add(_elem1112); + _elem1076 = new com.cinchapi.concourse.thrift.TObject(); + _elem1076.read(iprot); + _val1073.add(_elem1076); } } - _val1105.put(_key1108, _val1109); + _val1069.put(_key1072, _val1073); } } - struct.success.put(_key1104, _val1105); + struct.success.put(_key1068, _val1069); } } struct.setSuccessIsSet(true); @@ -192112,22 +191275,20 @@ private static S scheme(org.apache. } } - public static class selectRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsOrderPage_args"); + public static class selectRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsOrder_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -192136,10 +191297,9 @@ public static class selectRecordsOrderPage_args implements org.apache.thrift.TBa public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), ORDER((short)2, "order"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -192159,13 +191319,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 2: // ORDER return ORDER; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -192218,8 +191376,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -192227,16 +191383,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsOrder_args.class, metaDataMap); } - public selectRecordsOrderPage_args() { + public selectRecordsOrder_args() { } - public selectRecordsOrderPage_args( + public selectRecordsOrder_args( java.util.List records, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -192244,7 +191399,6 @@ public selectRecordsOrderPage_args( this(); this.records = records; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -192253,7 +191407,7 @@ public selectRecordsOrderPage_args( /** * Performs a deep copy on other. */ - public selectRecordsOrderPage_args(selectRecordsOrderPage_args other) { + public selectRecordsOrder_args(selectRecordsOrder_args other) { if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; @@ -192261,9 +191415,6 @@ public selectRecordsOrderPage_args(selectRecordsOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -192276,15 +191427,14 @@ public selectRecordsOrderPage_args(selectRecordsOrderPage_args other) { } @Override - public selectRecordsOrderPage_args deepCopy() { - return new selectRecordsOrderPage_args(this); + public selectRecordsOrder_args deepCopy() { + return new selectRecordsOrder_args(this); } @Override public void clear() { this.records = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -192311,7 +191461,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -192336,7 +191486,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -192356,37 +191506,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -192411,7 +191536,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -192436,7 +191561,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -192475,14 +191600,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -192520,9 +191637,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -192548,8 +191662,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -192562,12 +191674,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsOrderPage_args) - return this.equals((selectRecordsOrderPage_args)that); + if (that instanceof selectRecordsOrder_args) + return this.equals((selectRecordsOrder_args)that); return false; } - public boolean equals(selectRecordsOrderPage_args that) { + public boolean equals(selectRecordsOrder_args that) { if (that == null) return false; if (this == that) @@ -192591,15 +191703,6 @@ public boolean equals(selectRecordsOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -192642,10 +191745,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -192662,7 +191761,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsOrderPage_args other) { + public int compareTo(selectRecordsOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -192689,16 +191788,6 @@ public int compareTo(selectRecordsOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -192750,7 +191839,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsOrder_args("); boolean first = true; sb.append("records:"); @@ -192769,14 +191858,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -192810,9 +191891,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -192837,17 +191915,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsOrderPage_argsStandardScheme getScheme() { - return new selectRecordsOrderPage_argsStandardScheme(); + public selectRecordsOrder_argsStandardScheme getScheme() { + return new selectRecordsOrder_argsStandardScheme(); } } - private static class selectRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -192860,13 +191938,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderP case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1114 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1114.size); - long _elem1115; - for (int _i1116 = 0; _i1116 < _list1114.size; ++_i1116) + org.apache.thrift.protocol.TList _list1078 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1078.size); + long _elem1079; + for (int _i1080 = 0; _i1080 < _list1078.size; ++_i1080) { - _elem1115 = iprot.readI64(); - struct.records.add(_elem1115); + _elem1079 = iprot.readI64(); + struct.records.add(_elem1079); } iprot.readListEnd(); } @@ -192884,16 +191962,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -192902,7 +191971,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -192911,7 +191980,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -192931,7 +192000,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -192939,9 +192008,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1117 : struct.records) + for (long _iter1081 : struct.records) { - oprot.writeI64(_iter1117); + oprot.writeI64(_iter1081); } oprot.writeListEnd(); } @@ -192952,11 +192021,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -192978,17 +192042,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder } - private static class selectRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsOrderPage_argsTupleScheme getScheme() { - return new selectRecordsOrderPage_argsTupleScheme(); + public selectRecordsOrder_argsTupleScheme getScheme() { + return new selectRecordsOrder_argsTupleScheme(); } } - private static class selectRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -192997,34 +192061,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderP if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1118 : struct.records) + for (long _iter1082 : struct.records) { - oprot.writeI64(_iter1118); + oprot.writeI64(_iter1082); } } } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -193037,18 +192095,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1119 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1119.size); - long _elem1120; - for (int _i1121 = 0; _i1121 < _list1119.size; ++_i1121) + org.apache.thrift.protocol.TList _list1083 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1083.size); + long _elem1084; + for (int _i1085 = 0; _i1085 < _list1083.size; ++_i1085) { - _elem1120 = iprot.readI64(); - struct.records.add(_elem1120); + _elem1084 = iprot.readI64(); + struct.records.add(_elem1084); } } struct.setRecordsIsSet(true); @@ -193059,21 +192117,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPa struct.setOrderIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -193085,16 +192138,16 @@ private static S scheme(org.apache. } } - public static class selectRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsOrderPage_result"); + public static class selectRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -193190,13 +192243,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsOrder_result.class, metaDataMap); } - public selectRecordsOrderPage_result() { + public selectRecordsOrder_result() { } - public selectRecordsOrderPage_result( + public selectRecordsOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -193212,7 +192265,7 @@ public selectRecordsOrderPage_result( /** * Performs a deep copy on other. */ - public selectRecordsOrderPage_result(selectRecordsOrderPage_result other) { + public selectRecordsOrder_result(selectRecordsOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -193254,8 +192307,8 @@ public selectRecordsOrderPage_result(selectRecordsOrderPage_result other) { } @Override - public selectRecordsOrderPage_result deepCopy() { - return new selectRecordsOrderPage_result(this); + public selectRecordsOrder_result deepCopy() { + return new selectRecordsOrder_result(this); } @Override @@ -193282,7 +192335,7 @@ public java.util.Map>> success) { + public selectRecordsOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -193307,7 +192360,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -193332,7 +192385,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -193357,7 +192410,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -193457,12 +192510,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsOrderPage_result) - return this.equals((selectRecordsOrderPage_result)that); + if (that instanceof selectRecordsOrder_result) + return this.equals((selectRecordsOrder_result)that); return false; } - public boolean equals(selectRecordsOrderPage_result that) { + public boolean equals(selectRecordsOrder_result that) { if (that == null) return false; if (this == that) @@ -193531,7 +192584,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsOrderPage_result other) { + public int compareTo(selectRecordsOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -193598,7 +192651,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsOrder_result("); boolean first = true; sb.append("success:"); @@ -193657,17 +192710,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsOrderPage_resultStandardScheme getScheme() { - return new selectRecordsOrderPage_resultStandardScheme(); + public selectRecordsOrder_resultStandardScheme getScheme() { + return new selectRecordsOrder_resultStandardScheme(); } } - private static class selectRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -193680,38 +192733,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderP case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1122 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1122.size); - long _key1123; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1124; - for (int _i1125 = 0; _i1125 < _map1122.size; ++_i1125) + org.apache.thrift.protocol.TMap _map1086 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1086.size); + long _key1087; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1088; + for (int _i1089 = 0; _i1089 < _map1086.size; ++_i1089) { - _key1123 = iprot.readI64(); + _key1087 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1126 = iprot.readMapBegin(); - _val1124 = new java.util.LinkedHashMap>(2*_map1126.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1127; - @org.apache.thrift.annotation.Nullable java.util.Set _val1128; - for (int _i1129 = 0; _i1129 < _map1126.size; ++_i1129) + org.apache.thrift.protocol.TMap _map1090 = iprot.readMapBegin(); + _val1088 = new java.util.LinkedHashMap>(2*_map1090.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1091; + @org.apache.thrift.annotation.Nullable java.util.Set _val1092; + for (int _i1093 = 0; _i1093 < _map1090.size; ++_i1093) { - _key1127 = iprot.readString(); + _key1091 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1130 = iprot.readSetBegin(); - _val1128 = new java.util.LinkedHashSet(2*_set1130.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1131; - for (int _i1132 = 0; _i1132 < _set1130.size; ++_i1132) + org.apache.thrift.protocol.TSet _set1094 = iprot.readSetBegin(); + _val1092 = new java.util.LinkedHashSet(2*_set1094.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1095; + for (int _i1096 = 0; _i1096 < _set1094.size; ++_i1096) { - _elem1131 = new com.cinchapi.concourse.thrift.TObject(); - _elem1131.read(iprot); - _val1128.add(_elem1131); + _elem1095 = new com.cinchapi.concourse.thrift.TObject(); + _elem1095.read(iprot); + _val1092.add(_elem1095); } iprot.readSetEnd(); } - _val1124.put(_key1127, _val1128); + _val1088.put(_key1091, _val1092); } iprot.readMapEnd(); } - struct.success.put(_key1123, _val1124); + struct.success.put(_key1087, _val1088); } iprot.readMapEnd(); } @@ -193759,7 +192812,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -193767,19 +192820,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1133 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1097 : struct.success.entrySet()) { - oprot.writeI64(_iter1133.getKey()); + oprot.writeI64(_iter1097.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1133.getValue().size())); - for (java.util.Map.Entry> _iter1134 : _iter1133.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1097.getValue().size())); + for (java.util.Map.Entry> _iter1098 : _iter1097.getValue().entrySet()) { - oprot.writeString(_iter1134.getKey()); + oprot.writeString(_iter1098.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1134.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1135 : _iter1134.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1098.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1099 : _iter1098.getValue()) { - _iter1135.write(oprot); + _iter1099.write(oprot); } oprot.writeSetEnd(); } @@ -193812,17 +192865,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrder } - private static class selectRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsOrderPage_resultTupleScheme getScheme() { - return new selectRecordsOrderPage_resultTupleScheme(); + public selectRecordsOrder_resultTupleScheme getScheme() { + return new selectRecordsOrder_resultTupleScheme(); } } - private static class selectRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -193841,19 +192894,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderP if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1136 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1100 : struct.success.entrySet()) { - oprot.writeI64(_iter1136.getKey()); + oprot.writeI64(_iter1100.getKey()); { - oprot.writeI32(_iter1136.getValue().size()); - for (java.util.Map.Entry> _iter1137 : _iter1136.getValue().entrySet()) + oprot.writeI32(_iter1100.getValue().size()); + for (java.util.Map.Entry> _iter1101 : _iter1100.getValue().entrySet()) { - oprot.writeString(_iter1137.getKey()); + oprot.writeString(_iter1101.getKey()); { - oprot.writeI32(_iter1137.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1138 : _iter1137.getValue()) + oprot.writeI32(_iter1101.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1102 : _iter1101.getValue()) { - _iter1138.write(oprot); + _iter1102.write(oprot); } } } @@ -193873,41 +192926,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1139 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1139.size); - long _key1140; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1141; - for (int _i1142 = 0; _i1142 < _map1139.size; ++_i1142) + org.apache.thrift.protocol.TMap _map1103 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1103.size); + long _key1104; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1105; + for (int _i1106 = 0; _i1106 < _map1103.size; ++_i1106) { - _key1140 = iprot.readI64(); + _key1104 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1143 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1141 = new java.util.LinkedHashMap>(2*_map1143.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1144; - @org.apache.thrift.annotation.Nullable java.util.Set _val1145; - for (int _i1146 = 0; _i1146 < _map1143.size; ++_i1146) + org.apache.thrift.protocol.TMap _map1107 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1105 = new java.util.LinkedHashMap>(2*_map1107.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1108; + @org.apache.thrift.annotation.Nullable java.util.Set _val1109; + for (int _i1110 = 0; _i1110 < _map1107.size; ++_i1110) { - _key1144 = iprot.readString(); + _key1108 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1147 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1145 = new java.util.LinkedHashSet(2*_set1147.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1148; - for (int _i1149 = 0; _i1149 < _set1147.size; ++_i1149) + org.apache.thrift.protocol.TSet _set1111 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1109 = new java.util.LinkedHashSet(2*_set1111.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1112; + for (int _i1113 = 0; _i1113 < _set1111.size; ++_i1113) { - _elem1148 = new com.cinchapi.concourse.thrift.TObject(); - _elem1148.read(iprot); - _val1145.add(_elem1148); + _elem1112 = new com.cinchapi.concourse.thrift.TObject(); + _elem1112.read(iprot); + _val1109.add(_elem1112); } } - _val1141.put(_key1144, _val1145); + _val1105.put(_key1108, _val1109); } } - struct.success.put(_key1140, _val1141); + struct.success.put(_key1104, _val1105); } } struct.setSuccessIsSet(true); @@ -193935,31 +192988,34 @@ private static S scheme(org.apache. } } - public static class selectRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordTime_args"); + public static class selectRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsOrderPage_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsOrderPage_argsTupleSchemeFactory(); - public long record; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), - TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + RECORDS((short)1, "records"), + ORDER((short)2, "order"), + PAGE((short)3, "page"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -193975,15 +193031,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // CREDS + case 1: // RECORDS + return RECORDS; + case 2: // ORDER + return ORDER; + case 3: // PAGE + return PAGE; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -194028,16 +193086,16 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -194045,24 +193103,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsOrderPage_args.class, metaDataMap); } - public selectRecordTime_args() { + public selectRecordsOrderPage_args() { } - public selectRecordTime_args( - long record, - long timestamp, + public selectRecordsOrderPage_args( + java.util.List records, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); - this.timestamp = timestamp; - setTimestampIsSet(true); + this.records = records; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -194071,10 +193129,17 @@ public selectRecordTime_args( /** * Performs a deep copy on other. */ - public selectRecordTime_args(selectRecordTime_args other) { - __isset_bitfield = other.__isset_bitfield; - this.record = other.record; - this.timestamp = other.timestamp; + public selectRecordsOrderPage_args(selectRecordsOrderPage_args other) { + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -194087,65 +193152,109 @@ public selectRecordTime_args(selectRecordTime_args other) { } @Override - public selectRecordTime_args deepCopy() { - return new selectRecordTime_args(this); + public selectRecordsOrderPage_args deepCopy() { + return new selectRecordsOrderPage_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; + this.records = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - public selectRecordTime_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public selectRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public selectRecordTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public selectRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -194153,7 +193262,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -194178,7 +193287,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -194203,7 +193312,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -194226,19 +193335,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -194273,11 +193390,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -194300,10 +193420,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); - case TIMESTAMP: - return isSetTimestamp(); + case RECORDS: + return isSetRecords(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -194316,32 +193438,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordTime_args) - return this.equals((selectRecordTime_args)that); + if (that instanceof selectRecordsOrderPage_args) + return this.equals((selectRecordsOrderPage_args)that); return false; } - public boolean equals(selectRecordTime_args that) { + public boolean equals(selectRecordsOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -194379,9 +193510,17 @@ public boolean equals(selectRecordTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -194399,29 +193538,39 @@ public int hashCode() { } @Override - public int compareTo(selectRecordTime_args other) { + public int compareTo(selectRecordsOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -194477,15 +193626,31 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsOrderPage_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -194518,6 +193683,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -194536,25 +193707,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordTime_argsStandardScheme getScheme() { - return new selectRecordTime_argsStandardScheme(); + public selectRecordsOrderPage_argsStandardScheme getScheme() { + return new selectRecordsOrderPage_argsStandardScheme(); } } - private static class selectRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -194564,23 +193733,43 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_ar break; } switch (schemeField.id) { - case 1: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list1114 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1114.size); + long _elem1115; + for (int _i1116 = 0; _i1116 < _list1114.size; ++_i1116) + { + _elem1115 = iprot.readI64(); + struct.records.add(_elem1115); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 2: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -194589,7 +193778,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -194598,7 +193787,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -194618,16 +193807,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter1117 : struct.records) + { + oprot.writeI64(_iter1117); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -194649,40 +193854,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTime_a } - private static class selectRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordTime_argsTupleScheme getScheme() { - return new selectRecordTime_argsTupleScheme(); + public selectRecordsOrderPage_argsTupleScheme getScheme() { + return new selectRecordsOrderPage_argsTupleScheme(); } } - private static class selectRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetEnvironment()) { + optionals.set(5); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeBitSet(optionals, 6); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter1118 : struct.records) + { + oprot.writeI64(_iter1118); + } + } + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -194696,28 +193913,43 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list1119 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1119.size); + long _elem1120; + for (int _i1121 = 0; _i1121 < _list1119.size; ++_i1121) + { + _elem1120 = iprot.readI64(); + struct.records.add(_elem1120); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(2)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -194729,18 +193961,18 @@ private static S scheme(org.apache. } } - public static class selectRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordTime_result"); + public static class selectRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -194822,9 +194054,11 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -194832,14 +194066,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsOrderPage_result.class, metaDataMap); } - public selectRecordTime_result() { + public selectRecordsOrderPage_result() { } - public selectRecordTime_result( - java.util.Map> success, + public selectRecordsOrderPage_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -194854,19 +194088,30 @@ public selectRecordTime_result( /** * Performs a deep copy on other. */ - public selectRecordTime_result(selectRecordTime_result other) { + public selectRecordsOrderPage_result(selectRecordsOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - java.lang.String other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); + java.lang.Long other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); - java.lang.String __this__success_copy_key = other_element_key; + java.lang.Long __this__success_copy_key = other_element_key; - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { - __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { + __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); + } + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -194885,8 +194130,8 @@ public selectRecordTime_result(selectRecordTime_result other) { } @Override - public selectRecordTime_result deepCopy() { - return new selectRecordTime_result(this); + public selectRecordsOrderPage_result deepCopy() { + return new selectRecordsOrderPage_result(this); } @Override @@ -194901,19 +194146,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.lang.String key, java.util.Set val) { + public void putToSuccess(long key, java.util.Map> val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap>>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public selectRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public selectRecordsOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -194938,7 +194183,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -194963,7 +194208,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -194988,7 +194233,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -195015,7 +194260,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map>>)value); } break; @@ -195088,12 +194333,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordTime_result) - return this.equals((selectRecordTime_result)that); + if (that instanceof selectRecordsOrderPage_result) + return this.equals((selectRecordsOrderPage_result)that); return false; } - public boolean equals(selectRecordTime_result that) { + public boolean equals(selectRecordsOrderPage_result that) { if (that == null) return false; if (this == that) @@ -195162,7 +194407,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordTime_result other) { + public int compareTo(selectRecordsOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -195229,7 +194474,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsOrderPage_result("); boolean first = true; sb.append("success:"); @@ -195288,17 +194533,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordTime_resultStandardScheme getScheme() { - return new selectRecordTime_resultStandardScheme(); + public selectRecordsOrderPage_resultStandardScheme getScheme() { + return new selectRecordsOrderPage_resultStandardScheme(); } } - private static class selectRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -195311,26 +194556,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_re case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1150 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1150.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1151; - @org.apache.thrift.annotation.Nullable java.util.Set _val1152; - for (int _i1153 = 0; _i1153 < _map1150.size; ++_i1153) + org.apache.thrift.protocol.TMap _map1122 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1122.size); + long _key1123; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1124; + for (int _i1125 = 0; _i1125 < _map1122.size; ++_i1125) { - _key1151 = iprot.readString(); + _key1123 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1154 = iprot.readSetBegin(); - _val1152 = new java.util.LinkedHashSet(2*_set1154.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1155; - for (int _i1156 = 0; _i1156 < _set1154.size; ++_i1156) + org.apache.thrift.protocol.TMap _map1126 = iprot.readMapBegin(); + _val1124 = new java.util.LinkedHashMap>(2*_map1126.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1127; + @org.apache.thrift.annotation.Nullable java.util.Set _val1128; + for (int _i1129 = 0; _i1129 < _map1126.size; ++_i1129) { - _elem1155 = new com.cinchapi.concourse.thrift.TObject(); - _elem1155.read(iprot); - _val1152.add(_elem1155); + _key1127 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set1130 = iprot.readSetBegin(); + _val1128 = new java.util.LinkedHashSet(2*_set1130.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1131; + for (int _i1132 = 0; _i1132 < _set1130.size; ++_i1132) + { + _elem1131 = new com.cinchapi.concourse.thrift.TObject(); + _elem1131.read(iprot); + _val1128.add(_elem1131); + } + iprot.readSetEnd(); + } + _val1124.put(_key1127, _val1128); } - iprot.readSetEnd(); + iprot.readMapEnd(); } - struct.success.put(_key1151, _val1152); + struct.success.put(_key1123, _val1124); } iprot.readMapEnd(); } @@ -195378,24 +194635,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1157 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter1133 : struct.success.entrySet()) { - oprot.writeString(_iter1157.getKey()); + oprot.writeI64(_iter1133.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1157.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1158 : _iter1157.getValue()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1133.getValue().size())); + for (java.util.Map.Entry> _iter1134 : _iter1133.getValue().entrySet()) { - _iter1158.write(oprot); + oprot.writeString(_iter1134.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1134.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1135 : _iter1134.getValue()) + { + _iter1135.write(oprot); + } + oprot.writeSetEnd(); + } } - oprot.writeSetEnd(); + oprot.writeMapEnd(); } } oprot.writeMapEnd(); @@ -195423,17 +194688,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTime_r } - private static class selectRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordTime_resultTupleScheme getScheme() { - return new selectRecordTime_resultTupleScheme(); + public selectRecordsOrderPage_resultTupleScheme getScheme() { + return new selectRecordsOrderPage_resultTupleScheme(); } } - private static class selectRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -195452,14 +194717,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_re if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1159 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1136 : struct.success.entrySet()) { - oprot.writeString(_iter1159.getKey()); + oprot.writeI64(_iter1136.getKey()); { - oprot.writeI32(_iter1159.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1160 : _iter1159.getValue()) + oprot.writeI32(_iter1136.getValue().size()); + for (java.util.Map.Entry> _iter1137 : _iter1136.getValue().entrySet()) { - _iter1160.write(oprot); + oprot.writeString(_iter1137.getKey()); + { + oprot.writeI32(_iter1137.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1138 : _iter1137.getValue()) + { + _iter1138.write(oprot); + } + } } } } @@ -195477,30 +194749,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1161 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1161.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1162; - @org.apache.thrift.annotation.Nullable java.util.Set _val1163; - for (int _i1164 = 0; _i1164 < _map1161.size; ++_i1164) + org.apache.thrift.protocol.TMap _map1139 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1139.size); + long _key1140; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1141; + for (int _i1142 = 0; _i1142 < _map1139.size; ++_i1142) { - _key1162 = iprot.readString(); + _key1140 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1165 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1163 = new java.util.LinkedHashSet(2*_set1165.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1166; - for (int _i1167 = 0; _i1167 < _set1165.size; ++_i1167) + org.apache.thrift.protocol.TMap _map1143 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1141 = new java.util.LinkedHashMap>(2*_map1143.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1144; + @org.apache.thrift.annotation.Nullable java.util.Set _val1145; + for (int _i1146 = 0; _i1146 < _map1143.size; ++_i1146) { - _elem1166 = new com.cinchapi.concourse.thrift.TObject(); - _elem1166.read(iprot); - _val1163.add(_elem1166); + _key1144 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set1147 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1145 = new java.util.LinkedHashSet(2*_set1147.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1148; + for (int _i1149 = 0; _i1149 < _set1147.size; ++_i1149) + { + _elem1148 = new com.cinchapi.concourse.thrift.TObject(); + _elem1148.read(iprot); + _val1145.add(_elem1148); + } + } + _val1141.put(_key1144, _val1145); } } - struct.success.put(_key1162, _val1163); + struct.success.put(_key1140, _val1141); } } struct.setSuccessIsSet(true); @@ -195528,20 +194811,20 @@ private static S scheme(org.apache. } } - public static class selectRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordTimestr_args"); + public static class selectRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordTime_args"); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordTime_argsTupleSchemeFactory(); public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -195622,6 +194905,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -195629,7 +194913,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -195637,15 +194921,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordTime_args.class, metaDataMap); } - public selectRecordTimestr_args() { + public selectRecordTime_args() { } - public selectRecordTimestr_args( + public selectRecordTime_args( long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -195654,6 +194938,7 @@ public selectRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -195662,12 +194947,10 @@ public selectRecordTimestr_args( /** * Performs a deep copy on other. */ - public selectRecordTimestr_args(selectRecordTimestr_args other) { + public selectRecordTime_args(selectRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -195680,15 +194963,16 @@ public selectRecordTimestr_args(selectRecordTimestr_args other) { } @Override - public selectRecordTimestr_args deepCopy() { - return new selectRecordTimestr_args(this); + public selectRecordTime_args deepCopy() { + return new selectRecordTime_args(this); } @Override public void clear() { setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -195698,7 +194982,7 @@ public long getRecord() { return this.record; } - public selectRecordTimestr_args setRecord(long record) { + public selectRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -195717,29 +195001,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public selectRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -195747,7 +195029,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -195772,7 +195054,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -195797,7 +195079,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -195832,7 +195114,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -195910,12 +195192,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordTimestr_args) - return this.equals((selectRecordTimestr_args)that); + if (that instanceof selectRecordTime_args) + return this.equals((selectRecordTime_args)that); return false; } - public boolean equals(selectRecordTimestr_args that) { + public boolean equals(selectRecordTime_args that) { if (that == null) return false; if (this == that) @@ -195930,12 +195212,12 @@ public boolean equals(selectRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -195975,9 +195257,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -195995,7 +195275,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordTimestr_args other) { + public int compareTo(selectRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -196073,7 +195353,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordTime_args("); boolean first = true; sb.append("record:"); @@ -196081,11 +195361,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -196144,17 +195420,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordTimestr_argsStandardScheme getScheme() { - return new selectRecordTimestr_argsStandardScheme(); + public selectRecordTime_argsStandardScheme getScheme() { + return new selectRecordTime_argsStandardScheme(); } } - private static class selectRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -196173,8 +195449,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -196218,18 +195494,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -196251,17 +195525,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTimest } - private static class selectRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordTimestr_argsTupleScheme getScheme() { - return new selectRecordTimestr_argsTupleScheme(); + public selectRecordTime_argsTupleScheme getScheme() { + return new selectRecordTime_argsTupleScheme(); } } - private static class selectRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecord()) { @@ -196284,7 +195558,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -196298,7 +195572,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -196306,7 +195580,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_ struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -196331,31 +195605,28 @@ private static S scheme(org.apache. } } - public static class selectRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordTimestr_result"); + public static class selectRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -196379,8 +195650,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -196437,35 +195706,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordTime_result.class, metaDataMap); } - public selectRecordTimestr_result() { + public selectRecordTime_result() { } - public selectRecordTimestr_result( + public selectRecordTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectRecordTimestr_result(selectRecordTimestr_result other) { + public selectRecordTime_result(selectRecordTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -196491,16 +195756,13 @@ public selectRecordTimestr_result(selectRecordTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectRecordTimestr_result deepCopy() { - return new selectRecordTimestr_result(this); + public selectRecordTime_result deepCopy() { + return new selectRecordTime_result(this); } @Override @@ -196509,7 +195771,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -196528,7 +195789,7 @@ public java.util.Map> success) { + public selectRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -196553,7 +195814,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -196578,7 +195839,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -196599,11 +195860,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -196623,31 +195884,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -196679,15 +195915,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -196710,9 +195938,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -196733,20 +195958,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordTimestr_result) - return this.equals((selectRecordTimestr_result)that); + if (that instanceof selectRecordTime_result) + return this.equals((selectRecordTime_result)that); return false; } - public boolean equals(selectRecordTimestr_result that) { + public boolean equals(selectRecordTime_result that) { if (that == null) return false; if (this == that) @@ -196788,15 +196011,6 @@ public boolean equals(selectRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -196820,15 +196034,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectRecordTimestr_result other) { + public int compareTo(selectRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -196875,16 +196085,6 @@ public int compareTo(selectRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -196905,7 +196105,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordTime_result("); boolean first = true; sb.append("success:"); @@ -196939,14 +196139,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -196972,17 +196164,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordTimestr_resultStandardScheme getScheme() { - return new selectRecordTimestr_resultStandardScheme(); + public selectRecordTime_resultStandardScheme getScheme() { + return new selectRecordTime_resultStandardScheme(); } } - private static class selectRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -196995,26 +196187,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1168 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1168.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1169; - @org.apache.thrift.annotation.Nullable java.util.Set _val1170; - for (int _i1171 = 0; _i1171 < _map1168.size; ++_i1171) + org.apache.thrift.protocol.TMap _map1150 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1150.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1151; + @org.apache.thrift.annotation.Nullable java.util.Set _val1152; + for (int _i1153 = 0; _i1153 < _map1150.size; ++_i1153) { - _key1169 = iprot.readString(); + _key1151 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1172 = iprot.readSetBegin(); - _val1170 = new java.util.LinkedHashSet(2*_set1172.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1173; - for (int _i1174 = 0; _i1174 < _set1172.size; ++_i1174) + org.apache.thrift.protocol.TSet _set1154 = iprot.readSetBegin(); + _val1152 = new java.util.LinkedHashSet(2*_set1154.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1155; + for (int _i1156 = 0; _i1156 < _set1154.size; ++_i1156) { - _elem1173 = new com.cinchapi.concourse.thrift.TObject(); - _elem1173.read(iprot); - _val1170.add(_elem1173); + _elem1155 = new com.cinchapi.concourse.thrift.TObject(); + _elem1155.read(iprot); + _val1152.add(_elem1155); } iprot.readSetEnd(); } - struct.success.put(_key1169, _val1170); + struct.success.put(_key1151, _val1152); } iprot.readMapEnd(); } @@ -197043,22 +196235,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -197071,7 +196254,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -197079,14 +196262,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTimest oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1175 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1157 : struct.success.entrySet()) { - oprot.writeString(_iter1175.getKey()); + oprot.writeString(_iter1157.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1175.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1176 : _iter1175.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1157.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1158 : _iter1157.getValue()) { - _iter1176.write(oprot); + _iter1158.write(oprot); } oprot.writeSetEnd(); } @@ -197110,28 +196293,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTimest struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordTimestr_resultTupleScheme getScheme() { - return new selectRecordTimestr_resultTupleScheme(); + public selectRecordTime_resultTupleScheme getScheme() { + return new selectRecordTime_resultTupleScheme(); } } - private static class selectRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -197146,21 +196324,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1177 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1159 : struct.success.entrySet()) { - oprot.writeString(_iter1177.getKey()); + oprot.writeString(_iter1159.getKey()); { - oprot.writeI32(_iter1177.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1178 : _iter1177.getValue()) + oprot.writeI32(_iter1159.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1160 : _iter1159.getValue()) { - _iter1178.write(oprot); + _iter1160.write(oprot); } } } @@ -197175,36 +196350,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1179 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1179.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1180; - @org.apache.thrift.annotation.Nullable java.util.Set _val1181; - for (int _i1182 = 0; _i1182 < _map1179.size; ++_i1182) + org.apache.thrift.protocol.TMap _map1161 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1161.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1162; + @org.apache.thrift.annotation.Nullable java.util.Set _val1163; + for (int _i1164 = 0; _i1164 < _map1161.size; ++_i1164) { - _key1180 = iprot.readString(); + _key1162 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1183 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1181 = new java.util.LinkedHashSet(2*_set1183.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1184; - for (int _i1185 = 0; _i1185 < _set1183.size; ++_i1185) + org.apache.thrift.protocol.TSet _set1165 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1163 = new java.util.LinkedHashSet(2*_set1165.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1166; + for (int _i1167 = 0; _i1167 < _set1165.size; ++_i1167) { - _elem1184 = new com.cinchapi.concourse.thrift.TObject(); - _elem1184.read(iprot); - _val1181.add(_elem1184); + _elem1166 = new com.cinchapi.concourse.thrift.TObject(); + _elem1166.read(iprot); + _val1163.add(_elem1166); } } - struct.success.put(_key1180, _val1181); + struct.success.put(_key1162, _val1163); } } struct.setSuccessIsSet(true); @@ -197220,15 +196392,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_ struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -197237,27 +196404,27 @@ private static S scheme(org.apache. } } - public static class selectRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTime_args"); + public static class selectRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordTimestr_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), + RECORD((short)1, "record"), TIMESTAMP((short)2, "timestamp"), CREDS((short)3, "creds"), TRANSACTION((short)4, "transaction"), @@ -197277,8 +196444,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; + case 1: // RECORD + return RECORD; case 2: // TIMESTAMP return TIMESTAMP; case 3: // CREDS @@ -197330,16 +196497,15 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; + private static final int __RECORD_ISSET_ID = 0; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -197347,23 +196513,23 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordTimestr_args.class, metaDataMap); } - public selectRecordsTime_args() { + public selectRecordTimestr_args() { } - public selectRecordsTime_args( - java.util.List records, - long timestamp, + public selectRecordTimestr_args( + long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; + this.record = record; + setRecordIsSet(true); this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -197372,13 +196538,12 @@ public selectRecordsTime_args( /** * Performs a deep copy on other. */ - public selectRecordsTime_args(selectRecordsTime_args other) { + public selectRecordTimestr_args(selectRecordTimestr_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -197391,82 +196556,66 @@ public selectRecordsTime_args(selectRecordsTime_args other) { } @Override - public selectRecordsTime_args deepCopy() { - return new selectRecordsTime_args(this); + public selectRecordTimestr_args deepCopy() { + return new selectRecordTimestr_args(this); } @Override public void clear() { - this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; + setRecordIsSet(false); + this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public long getRecord() { + return this.record; } - public selectRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public selectRecordTimestr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetRecords() { - this.records = null; + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public selectRecordsTime_args setTimestamp(long timestamp) { + public selectRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -197474,7 +196623,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -197499,7 +196648,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -197524,7 +196673,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -197547,11 +196696,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); } break; @@ -197559,7 +196708,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -197594,8 +196743,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); case TIMESTAMP: return getTimestamp(); @@ -197621,8 +196770,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); case TIMESTAMP: return isSetTimestamp(); case CREDS: @@ -197637,32 +196786,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTime_args) - return this.equals((selectRecordsTime_args)that); + if (that instanceof selectRecordTimestr_args) + return this.equals((selectRecordTimestr_args)that); return false; } - public boolean equals(selectRecordsTime_args that) { + public boolean equals(selectRecordTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -197700,11 +196849,11 @@ public boolean equals(selectRecordsTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -197722,19 +196871,19 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTime_args other) { + public int compareTo(selectRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } @@ -197800,19 +196949,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordTimestr_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } + sb.append("record:"); + sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -197871,17 +197020,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTime_argsStandardScheme getScheme() { - return new selectRecordsTime_argsStandardScheme(); + public selectRecordTimestr_argsStandardScheme getScheme() { + return new selectRecordTimestr_argsStandardScheme(); } } - private static class selectRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -197891,27 +197040,17 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_a break; } switch (schemeField.id) { - case 1: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list1186 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1186.size); - long _elem1187; - for (int _i1188 = 0; _i1188 < _list1186.size; ++_i1188) - { - _elem1187 = iprot.readI64(); - struct.records.add(_elem1187); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 1: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -197955,25 +197094,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1189 : struct.records) - { - oprot.writeI64(_iter1189); - } - oprot.writeListEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -197995,20 +197127,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTime_ } - private static class selectRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTime_argsTupleScheme getScheme() { - return new selectRecordsTime_argsTupleScheme(); + public selectRecordTimestr_argsTupleScheme getScheme() { + return new selectRecordTimestr_argsTupleScheme(); } } - private static class selectRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(0); } if (struct.isSetTimestamp()) { @@ -198024,17 +197156,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_a optionals.set(4); } oprot.writeBitSet(optionals, 5); - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter1190 : struct.records) - { - oprot.writeI64(_iter1190); - } - } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -198048,24 +197174,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list1191 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1191.size); - long _elem1192; - for (int _i1193 = 0; _i1193 < _list1191.size; ++_i1193) - { - _elem1192 = iprot.readI64(); - struct.records.add(_elem1192); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -198090,28 +197207,31 @@ private static S scheme(org.apache. } } - public static class selectRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTime_result"); + public static class selectRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -198135,6 +197255,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -198183,64 +197305,55 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordTimestr_result.class, metaDataMap); } - public selectRecordsTime_result() { + public selectRecordTimestr_result() { } - public selectRecordsTime_result( - java.util.Map>> success, + public selectRecordTimestr_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectRecordsTime_result(selectRecordsTime_result other) { + public selectRecordTimestr_result(selectRecordTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + java.lang.String other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { - __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); - } + java.lang.String __this__success_copy_key = other_element_key; - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { + __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -198254,13 +197367,16 @@ public selectRecordsTime_result(selectRecordsTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public selectRecordsTime_result deepCopy() { - return new selectRecordsTime_result(this); + public selectRecordTimestr_result deepCopy() { + return new selectRecordTimestr_result(this); } @Override @@ -198269,25 +197385,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map> val) { + public void putToSuccess(java.lang.String key, java.util.Set val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public selectRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public selectRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -198312,7 +197429,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -198337,7 +197454,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -198358,11 +197475,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -198382,6 +197499,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public selectRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -198389,7 +197531,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.Map>)value); } break; @@ -198413,7 +197555,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -198436,6 +197586,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -198456,18 +197609,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTime_result) - return this.equals((selectRecordsTime_result)that); + if (that instanceof selectRecordTimestr_result) + return this.equals((selectRecordTimestr_result)that); return false; } - public boolean equals(selectRecordsTime_result that) { + public boolean equals(selectRecordTimestr_result that) { if (that == null) return false; if (this == that) @@ -198509,6 +197664,15 @@ public boolean equals(selectRecordsTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -198532,11 +197696,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(selectRecordsTime_result other) { + public int compareTo(selectRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -198583,6 +197751,16 @@ public int compareTo(selectRecordsTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -198603,7 +197781,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordTimestr_result("); boolean first = true; sb.append("success:"); @@ -198637,6 +197815,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -198662,17 +197848,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTime_resultStandardScheme getScheme() { - return new selectRecordsTime_resultStandardScheme(); + public selectRecordTimestr_resultStandardScheme getScheme() { + return new selectRecordTimestr_resultStandardScheme(); } } - private static class selectRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -198685,38 +197871,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1194 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1194.size); - long _key1195; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1196; - for (int _i1197 = 0; _i1197 < _map1194.size; ++_i1197) + org.apache.thrift.protocol.TMap _map1168 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1168.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1169; + @org.apache.thrift.annotation.Nullable java.util.Set _val1170; + for (int _i1171 = 0; _i1171 < _map1168.size; ++_i1171) { - _key1195 = iprot.readI64(); + _key1169 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map1198 = iprot.readMapBegin(); - _val1196 = new java.util.LinkedHashMap>(2*_map1198.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1199; - @org.apache.thrift.annotation.Nullable java.util.Set _val1200; - for (int _i1201 = 0; _i1201 < _map1198.size; ++_i1201) + org.apache.thrift.protocol.TSet _set1172 = iprot.readSetBegin(); + _val1170 = new java.util.LinkedHashSet(2*_set1172.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1173; + for (int _i1174 = 0; _i1174 < _set1172.size; ++_i1174) { - _key1199 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1202 = iprot.readSetBegin(); - _val1200 = new java.util.LinkedHashSet(2*_set1202.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1203; - for (int _i1204 = 0; _i1204 < _set1202.size; ++_i1204) - { - _elem1203 = new com.cinchapi.concourse.thrift.TObject(); - _elem1203.read(iprot); - _val1200.add(_elem1203); - } - iprot.readSetEnd(); - } - _val1196.put(_key1199, _val1200); + _elem1173 = new com.cinchapi.concourse.thrift.TObject(); + _elem1173.read(iprot); + _val1170.add(_elem1173); } - iprot.readMapEnd(); + iprot.readSetEnd(); } - struct.success.put(_key1195, _val1196); + struct.success.put(_key1169, _val1170); } iprot.readMapEnd(); } @@ -198745,13 +197919,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_r break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -198764,32 +197947,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1205 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter1175 : struct.success.entrySet()) { - oprot.writeI64(_iter1205.getKey()); + oprot.writeString(_iter1175.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1205.getValue().size())); - for (java.util.Map.Entry> _iter1206 : _iter1205.getValue().entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1175.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1176 : _iter1175.getValue()) { - oprot.writeString(_iter1206.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1206.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1207 : _iter1206.getValue()) - { - _iter1207.write(oprot); - } - oprot.writeSetEnd(); - } + _iter1176.write(oprot); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } } oprot.writeMapEnd(); @@ -198811,23 +197986,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTime_ struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTime_resultTupleScheme getScheme() { - return new selectRecordsTime_resultTupleScheme(); + public selectRecordTimestr_resultTupleScheme getScheme() { + return new selectRecordTimestr_resultTupleScheme(); } } - private static class selectRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -198842,25 +198022,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_r if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1208 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1177 : struct.success.entrySet()) { - oprot.writeI64(_iter1208.getKey()); + oprot.writeString(_iter1177.getKey()); { - oprot.writeI32(_iter1208.getValue().size()); - for (java.util.Map.Entry> _iter1209 : _iter1208.getValue().entrySet()) + oprot.writeI32(_iter1177.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1178 : _iter1177.getValue()) { - oprot.writeString(_iter1209.getKey()); - { - oprot.writeI32(_iter1209.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1210 : _iter1209.getValue()) - { - _iter1210.write(oprot); - } - } + _iter1178.write(oprot); } } } @@ -198875,44 +198051,36 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_r if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1211 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1211.size); - long _key1212; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1213; - for (int _i1214 = 0; _i1214 < _map1211.size; ++_i1214) + org.apache.thrift.protocol.TMap _map1179 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1179.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1180; + @org.apache.thrift.annotation.Nullable java.util.Set _val1181; + for (int _i1182 = 0; _i1182 < _map1179.size; ++_i1182) { - _key1212 = iprot.readI64(); + _key1180 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map1215 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1213 = new java.util.LinkedHashMap>(2*_map1215.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1216; - @org.apache.thrift.annotation.Nullable java.util.Set _val1217; - for (int _i1218 = 0; _i1218 < _map1215.size; ++_i1218) + org.apache.thrift.protocol.TSet _set1183 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1181 = new java.util.LinkedHashSet(2*_set1183.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1184; + for (int _i1185 = 0; _i1185 < _set1183.size; ++_i1185) { - _key1216 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1219 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1217 = new java.util.LinkedHashSet(2*_set1219.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1220; - for (int _i1221 = 0; _i1221 < _set1219.size; ++_i1221) - { - _elem1220 = new com.cinchapi.concourse.thrift.TObject(); - _elem1220.read(iprot); - _val1217.add(_elem1220); - } - } - _val1213.put(_key1216, _val1217); + _elem1184 = new com.cinchapi.concourse.thrift.TObject(); + _elem1184.read(iprot); + _val1181.add(_elem1184); } } - struct.success.put(_key1212, _val1213); + struct.success.put(_key1180, _val1181); } } struct.setSuccessIsSet(true); @@ -198928,10 +198096,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_re struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -198940,22 +198113,20 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimePage_args"); + public static class selectRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTime_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -198964,10 +198135,9 @@ public static class selectRecordsTimePage_args implements org.apache.thrift.TBas public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), TIMESTAMP((short)2, "timestamp"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -198987,13 +198157,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -199048,8 +198216,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -199057,16 +198223,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTime_args.class, metaDataMap); } - public selectRecordsTimePage_args() { + public selectRecordsTime_args() { } - public selectRecordsTimePage_args( + public selectRecordsTime_args( java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -199075,7 +198240,6 @@ public selectRecordsTimePage_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -199084,16 +198248,13 @@ public selectRecordsTimePage_args( /** * Performs a deep copy on other. */ - public selectRecordsTimePage_args(selectRecordsTimePage_args other) { + public selectRecordsTime_args(selectRecordsTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -199106,8 +198267,8 @@ public selectRecordsTimePage_args(selectRecordsTimePage_args other) { } @Override - public selectRecordsTimePage_args deepCopy() { - return new selectRecordsTimePage_args(this); + public selectRecordsTime_args deepCopy() { + return new selectRecordsTime_args(this); } @Override @@ -199115,7 +198276,6 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -199142,7 +198302,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -199166,7 +198326,7 @@ public long getTimestamp() { return this.timestamp; } - public selectRecordsTimePage_args setTimestamp(long timestamp) { + public selectRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -199185,37 +198345,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -199240,7 +198375,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -199265,7 +198400,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -199304,14 +198439,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -199349,9 +198476,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -199377,8 +198501,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -199391,12 +198513,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimePage_args) - return this.equals((selectRecordsTimePage_args)that); + if (that instanceof selectRecordsTime_args) + return this.equals((selectRecordsTime_args)that); return false; } - public boolean equals(selectRecordsTimePage_args that) { + public boolean equals(selectRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -199420,15 +198542,6 @@ public boolean equals(selectRecordsTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -199469,10 +198582,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -199489,7 +198598,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimePage_args other) { + public int compareTo(selectRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -199516,16 +198625,6 @@ public int compareTo(selectRecordsTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -199577,7 +198676,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTime_args("); boolean first = true; sb.append("records:"); @@ -199592,14 +198691,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -199630,9 +198721,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -199659,17 +198747,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimePage_argsStandardScheme getScheme() { - return new selectRecordsTimePage_argsStandardScheme(); + public selectRecordsTime_argsStandardScheme getScheme() { + return new selectRecordsTime_argsStandardScheme(); } } - private static class selectRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -199682,13 +198770,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePa case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1222 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1222.size); - long _elem1223; - for (int _i1224 = 0; _i1224 < _list1222.size; ++_i1224) + org.apache.thrift.protocol.TList _list1186 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1186.size); + long _elem1187; + for (int _i1188 = 0; _i1188 < _list1186.size; ++_i1188) { - _elem1223 = iprot.readI64(); - struct.records.add(_elem1223); + _elem1187 = iprot.readI64(); + struct.records.add(_elem1187); } iprot.readListEnd(); } @@ -199705,16 +198793,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -199723,7 +198802,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -199732,7 +198811,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -199752,7 +198831,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -199760,9 +198839,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeP oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1225 : struct.records) + for (long _iter1189 : struct.records) { - oprot.writeI64(_iter1225); + oprot.writeI64(_iter1189); } oprot.writeListEnd(); } @@ -199771,11 +198850,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeP oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -199797,17 +198871,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeP } - private static class selectRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimePage_argsTupleScheme getScheme() { - return new selectRecordsTimePage_argsTupleScheme(); + public selectRecordsTime_argsTupleScheme getScheme() { + return new selectRecordsTime_argsTupleScheme(); } } - private static class selectRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -199816,34 +198890,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePa if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1226 : struct.records) + for (long _iter1190 : struct.records) { - oprot.writeI64(_iter1226); + oprot.writeI64(_iter1190); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -199856,18 +198924,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1227 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1227.size); - long _elem1228; - for (int _i1229 = 0; _i1229 < _list1227.size; ++_i1229) + org.apache.thrift.protocol.TList _list1191 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1191.size); + long _elem1192; + for (int _i1193 = 0; _i1193 < _list1191.size; ++_i1193) { - _elem1228 = iprot.readI64(); - struct.records.add(_elem1228); + _elem1192 = iprot.readI64(); + struct.records.add(_elem1192); } } struct.setRecordsIsSet(true); @@ -199877,21 +198945,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePag struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -199903,16 +198966,16 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimePage_result"); + public static class selectRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -200008,13 +199071,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTime_result.class, metaDataMap); } - public selectRecordsTimePage_result() { + public selectRecordsTime_result() { } - public selectRecordsTimePage_result( + public selectRecordsTime_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -200030,7 +199093,7 @@ public selectRecordsTimePage_result( /** * Performs a deep copy on other. */ - public selectRecordsTimePage_result(selectRecordsTimePage_result other) { + public selectRecordsTime_result(selectRecordsTime_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -200072,8 +199135,8 @@ public selectRecordsTimePage_result(selectRecordsTimePage_result other) { } @Override - public selectRecordsTimePage_result deepCopy() { - return new selectRecordsTimePage_result(this); + public selectRecordsTime_result deepCopy() { + return new selectRecordsTime_result(this); } @Override @@ -200100,7 +199163,7 @@ public java.util.Map>> success) { + public selectRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -200125,7 +199188,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -200150,7 +199213,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -200175,7 +199238,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -200275,12 +199338,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimePage_result) - return this.equals((selectRecordsTimePage_result)that); + if (that instanceof selectRecordsTime_result) + return this.equals((selectRecordsTime_result)that); return false; } - public boolean equals(selectRecordsTimePage_result that) { + public boolean equals(selectRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -200349,7 +199412,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimePage_result other) { + public int compareTo(selectRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -200416,7 +199479,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTime_result("); boolean first = true; sb.append("success:"); @@ -200475,17 +199538,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimePage_resultStandardScheme getScheme() { - return new selectRecordsTimePage_resultStandardScheme(); + public selectRecordsTime_resultStandardScheme getScheme() { + return new selectRecordsTime_resultStandardScheme(); } } - private static class selectRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -200498,38 +199561,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePa case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1230 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1230.size); - long _key1231; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1232; - for (int _i1233 = 0; _i1233 < _map1230.size; ++_i1233) + org.apache.thrift.protocol.TMap _map1194 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1194.size); + long _key1195; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1196; + for (int _i1197 = 0; _i1197 < _map1194.size; ++_i1197) { - _key1231 = iprot.readI64(); + _key1195 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1234 = iprot.readMapBegin(); - _val1232 = new java.util.LinkedHashMap>(2*_map1234.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1235; - @org.apache.thrift.annotation.Nullable java.util.Set _val1236; - for (int _i1237 = 0; _i1237 < _map1234.size; ++_i1237) + org.apache.thrift.protocol.TMap _map1198 = iprot.readMapBegin(); + _val1196 = new java.util.LinkedHashMap>(2*_map1198.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1199; + @org.apache.thrift.annotation.Nullable java.util.Set _val1200; + for (int _i1201 = 0; _i1201 < _map1198.size; ++_i1201) { - _key1235 = iprot.readString(); + _key1199 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1238 = iprot.readSetBegin(); - _val1236 = new java.util.LinkedHashSet(2*_set1238.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1239; - for (int _i1240 = 0; _i1240 < _set1238.size; ++_i1240) + org.apache.thrift.protocol.TSet _set1202 = iprot.readSetBegin(); + _val1200 = new java.util.LinkedHashSet(2*_set1202.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1203; + for (int _i1204 = 0; _i1204 < _set1202.size; ++_i1204) { - _elem1239 = new com.cinchapi.concourse.thrift.TObject(); - _elem1239.read(iprot); - _val1236.add(_elem1239); + _elem1203 = new com.cinchapi.concourse.thrift.TObject(); + _elem1203.read(iprot); + _val1200.add(_elem1203); } iprot.readSetEnd(); } - _val1232.put(_key1235, _val1236); + _val1196.put(_key1199, _val1200); } iprot.readMapEnd(); } - struct.success.put(_key1231, _val1232); + struct.success.put(_key1195, _val1196); } iprot.readMapEnd(); } @@ -200577,7 +199640,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -200585,19 +199648,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeP oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1241 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1205 : struct.success.entrySet()) { - oprot.writeI64(_iter1241.getKey()); + oprot.writeI64(_iter1205.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1241.getValue().size())); - for (java.util.Map.Entry> _iter1242 : _iter1241.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1205.getValue().size())); + for (java.util.Map.Entry> _iter1206 : _iter1205.getValue().entrySet()) { - oprot.writeString(_iter1242.getKey()); + oprot.writeString(_iter1206.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1242.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1243 : _iter1242.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1206.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1207 : _iter1206.getValue()) { - _iter1243.write(oprot); + _iter1207.write(oprot); } oprot.writeSetEnd(); } @@ -200630,17 +199693,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeP } - private static class selectRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimePage_resultTupleScheme getScheme() { - return new selectRecordsTimePage_resultTupleScheme(); + public selectRecordsTime_resultTupleScheme getScheme() { + return new selectRecordsTime_resultTupleScheme(); } } - private static class selectRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -200659,19 +199722,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePa if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1244 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1208 : struct.success.entrySet()) { - oprot.writeI64(_iter1244.getKey()); + oprot.writeI64(_iter1208.getKey()); { - oprot.writeI32(_iter1244.getValue().size()); - for (java.util.Map.Entry> _iter1245 : _iter1244.getValue().entrySet()) + oprot.writeI32(_iter1208.getValue().size()); + for (java.util.Map.Entry> _iter1209 : _iter1208.getValue().entrySet()) { - oprot.writeString(_iter1245.getKey()); + oprot.writeString(_iter1209.getKey()); { - oprot.writeI32(_iter1245.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1246 : _iter1245.getValue()) + oprot.writeI32(_iter1209.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1210 : _iter1209.getValue()) { - _iter1246.write(oprot); + _iter1210.write(oprot); } } } @@ -200691,41 +199754,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1247 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1247.size); - long _key1248; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1249; - for (int _i1250 = 0; _i1250 < _map1247.size; ++_i1250) + org.apache.thrift.protocol.TMap _map1211 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1211.size); + long _key1212; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1213; + for (int _i1214 = 0; _i1214 < _map1211.size; ++_i1214) { - _key1248 = iprot.readI64(); + _key1212 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1251 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1249 = new java.util.LinkedHashMap>(2*_map1251.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1252; - @org.apache.thrift.annotation.Nullable java.util.Set _val1253; - for (int _i1254 = 0; _i1254 < _map1251.size; ++_i1254) + org.apache.thrift.protocol.TMap _map1215 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1213 = new java.util.LinkedHashMap>(2*_map1215.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1216; + @org.apache.thrift.annotation.Nullable java.util.Set _val1217; + for (int _i1218 = 0; _i1218 < _map1215.size; ++_i1218) { - _key1252 = iprot.readString(); + _key1216 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1255 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1253 = new java.util.LinkedHashSet(2*_set1255.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1256; - for (int _i1257 = 0; _i1257 < _set1255.size; ++_i1257) + org.apache.thrift.protocol.TSet _set1219 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1217 = new java.util.LinkedHashSet(2*_set1219.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1220; + for (int _i1221 = 0; _i1221 < _set1219.size; ++_i1221) { - _elem1256 = new com.cinchapi.concourse.thrift.TObject(); - _elem1256.read(iprot); - _val1253.add(_elem1256); + _elem1220 = new com.cinchapi.concourse.thrift.TObject(); + _elem1220.read(iprot); + _val1217.add(_elem1220); } } - _val1249.put(_key1252, _val1253); + _val1213.put(_key1216, _val1217); } } - struct.success.put(_key1248, _val1249); + struct.success.put(_key1212, _val1213); } } struct.setSuccessIsSet(true); @@ -200753,22 +199816,22 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimeOrder_args"); + public static class selectRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimePage_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -200777,7 +199840,7 @@ public static class selectRecordsTimeOrder_args implements org.apache.thrift.TBa public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), TIMESTAMP((short)2, "timestamp"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -200800,8 +199863,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -200861,8 +199924,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -200870,16 +199933,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimePage_args.class, metaDataMap); } - public selectRecordsTimeOrder_args() { + public selectRecordsTimePage_args() { } - public selectRecordsTimeOrder_args( + public selectRecordsTimePage_args( java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -200888,7 +199951,7 @@ public selectRecordsTimeOrder_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -200897,15 +199960,15 @@ public selectRecordsTimeOrder_args( /** * Performs a deep copy on other. */ - public selectRecordsTimeOrder_args(selectRecordsTimeOrder_args other) { + public selectRecordsTimePage_args(selectRecordsTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -200919,8 +199982,8 @@ public selectRecordsTimeOrder_args(selectRecordsTimeOrder_args other) { } @Override - public selectRecordsTimeOrder_args deepCopy() { - return new selectRecordsTimeOrder_args(this); + public selectRecordsTimePage_args deepCopy() { + return new selectRecordsTimePage_args(this); } @Override @@ -200928,7 +199991,7 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -200955,7 +200018,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -200979,7 +200042,7 @@ public long getTimestamp() { return this.timestamp; } - public selectRecordsTimeOrder_args setTimestamp(long timestamp) { + public selectRecordsTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -200999,27 +200062,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -201028,7 +200091,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -201053,7 +200116,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -201078,7 +200141,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -201117,11 +200180,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -201162,8 +200225,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -201190,8 +200253,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -201204,12 +200267,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimeOrder_args) - return this.equals((selectRecordsTimeOrder_args)that); + if (that instanceof selectRecordsTimePage_args) + return this.equals((selectRecordsTimePage_args)that); return false; } - public boolean equals(selectRecordsTimeOrder_args that) { + public boolean equals(selectRecordsTimePage_args that) { if (that == null) return false; if (this == that) @@ -201233,12 +200296,12 @@ public boolean equals(selectRecordsTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -201282,9 +200345,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -201302,7 +200365,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimeOrder_args other) { + public int compareTo(selectRecordsTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -201329,12 +200392,12 @@ public int compareTo(selectRecordsTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -201390,7 +200453,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimePage_args("); boolean first = true; sb.append("records:"); @@ -201405,11 +200468,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -201443,8 +200506,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -201472,17 +200535,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimeOrder_argsStandardScheme getScheme() { - return new selectRecordsTimeOrder_argsStandardScheme(); + public selectRecordsTimePage_argsStandardScheme getScheme() { + return new selectRecordsTimePage_argsStandardScheme(); } } - private static class selectRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -201495,13 +200558,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1258 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1258.size); - long _elem1259; - for (int _i1260 = 0; _i1260 < _list1258.size; ++_i1260) + org.apache.thrift.protocol.TList _list1222 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1222.size); + long _elem1223; + for (int _i1224 = 0; _i1224 < _list1222.size; ++_i1224) { - _elem1259 = iprot.readI64(); - struct.records.add(_elem1259); + _elem1223 = iprot.readI64(); + struct.records.add(_elem1223); } iprot.readListEnd(); } @@ -201518,11 +200581,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -201565,7 +200628,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -201573,9 +200636,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1261 : struct.records) + for (long _iter1225 : struct.records) { - oprot.writeI64(_iter1261); + oprot.writeI64(_iter1225); } oprot.writeListEnd(); } @@ -201584,9 +200647,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -201610,17 +200673,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO } - private static class selectRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimeOrder_argsTupleScheme getScheme() { - return new selectRecordsTimeOrder_argsTupleScheme(); + public selectRecordsTimePage_argsTupleScheme getScheme() { + return new selectRecordsTimePage_argsTupleScheme(); } } - private static class selectRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -201629,7 +200692,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -201645,17 +200708,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1262 : struct.records) + for (long _iter1226 : struct.records) { - oprot.writeI64(_iter1262); + oprot.writeI64(_iter1226); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -201669,18 +200732,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1263 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1263.size); - long _elem1264; - for (int _i1265 = 0; _i1265 < _list1263.size; ++_i1265) + org.apache.thrift.protocol.TList _list1227 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1227.size); + long _elem1228; + for (int _i1229 = 0; _i1229 < _list1227.size; ++_i1229) { - _elem1264 = iprot.readI64(); - struct.records.add(_elem1264); + _elem1228 = iprot.readI64(); + struct.records.add(_elem1228); } } struct.setRecordsIsSet(true); @@ -201690,9 +200753,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrd struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -201716,16 +200779,16 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimeOrder_result"); + public static class selectRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -201821,13 +200884,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimePage_result.class, metaDataMap); } - public selectRecordsTimeOrder_result() { + public selectRecordsTimePage_result() { } - public selectRecordsTimeOrder_result( + public selectRecordsTimePage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -201843,7 +200906,7 @@ public selectRecordsTimeOrder_result( /** * Performs a deep copy on other. */ - public selectRecordsTimeOrder_result(selectRecordsTimeOrder_result other) { + public selectRecordsTimePage_result(selectRecordsTimePage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -201885,8 +200948,8 @@ public selectRecordsTimeOrder_result(selectRecordsTimeOrder_result other) { } @Override - public selectRecordsTimeOrder_result deepCopy() { - return new selectRecordsTimeOrder_result(this); + public selectRecordsTimePage_result deepCopy() { + return new selectRecordsTimePage_result(this); } @Override @@ -201913,7 +200976,7 @@ public java.util.Map>> success) { + public selectRecordsTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -201938,7 +201001,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -201963,7 +201026,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -201988,7 +201051,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -202088,12 +201151,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimeOrder_result) - return this.equals((selectRecordsTimeOrder_result)that); + if (that instanceof selectRecordsTimePage_result) + return this.equals((selectRecordsTimePage_result)that); return false; } - public boolean equals(selectRecordsTimeOrder_result that) { + public boolean equals(selectRecordsTimePage_result that) { if (that == null) return false; if (this == that) @@ -202162,7 +201225,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimeOrder_result other) { + public int compareTo(selectRecordsTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -202229,7 +201292,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimePage_result("); boolean first = true; sb.append("success:"); @@ -202288,17 +201351,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimeOrder_resultStandardScheme getScheme() { - return new selectRecordsTimeOrder_resultStandardScheme(); + public selectRecordsTimePage_resultStandardScheme getScheme() { + return new selectRecordsTimePage_resultStandardScheme(); } } - private static class selectRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -202311,38 +201374,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1266 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1266.size); - long _key1267; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1268; - for (int _i1269 = 0; _i1269 < _map1266.size; ++_i1269) + org.apache.thrift.protocol.TMap _map1230 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1230.size); + long _key1231; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1232; + for (int _i1233 = 0; _i1233 < _map1230.size; ++_i1233) { - _key1267 = iprot.readI64(); + _key1231 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1270 = iprot.readMapBegin(); - _val1268 = new java.util.LinkedHashMap>(2*_map1270.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1271; - @org.apache.thrift.annotation.Nullable java.util.Set _val1272; - for (int _i1273 = 0; _i1273 < _map1270.size; ++_i1273) + org.apache.thrift.protocol.TMap _map1234 = iprot.readMapBegin(); + _val1232 = new java.util.LinkedHashMap>(2*_map1234.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1235; + @org.apache.thrift.annotation.Nullable java.util.Set _val1236; + for (int _i1237 = 0; _i1237 < _map1234.size; ++_i1237) { - _key1271 = iprot.readString(); + _key1235 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1274 = iprot.readSetBegin(); - _val1272 = new java.util.LinkedHashSet(2*_set1274.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1275; - for (int _i1276 = 0; _i1276 < _set1274.size; ++_i1276) + org.apache.thrift.protocol.TSet _set1238 = iprot.readSetBegin(); + _val1236 = new java.util.LinkedHashSet(2*_set1238.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1239; + for (int _i1240 = 0; _i1240 < _set1238.size; ++_i1240) { - _elem1275 = new com.cinchapi.concourse.thrift.TObject(); - _elem1275.read(iprot); - _val1272.add(_elem1275); + _elem1239 = new com.cinchapi.concourse.thrift.TObject(); + _elem1239.read(iprot); + _val1236.add(_elem1239); } iprot.readSetEnd(); } - _val1268.put(_key1271, _val1272); + _val1232.put(_key1235, _val1236); } iprot.readMapEnd(); } - struct.success.put(_key1267, _val1268); + struct.success.put(_key1231, _val1232); } iprot.readMapEnd(); } @@ -202390,7 +201453,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -202398,19 +201461,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1277 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1241 : struct.success.entrySet()) { - oprot.writeI64(_iter1277.getKey()); + oprot.writeI64(_iter1241.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1277.getValue().size())); - for (java.util.Map.Entry> _iter1278 : _iter1277.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1241.getValue().size())); + for (java.util.Map.Entry> _iter1242 : _iter1241.getValue().entrySet()) { - oprot.writeString(_iter1278.getKey()); + oprot.writeString(_iter1242.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1278.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1279 : _iter1278.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1242.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1243 : _iter1242.getValue()) { - _iter1279.write(oprot); + _iter1243.write(oprot); } oprot.writeSetEnd(); } @@ -202443,17 +201506,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO } - private static class selectRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimeOrder_resultTupleScheme getScheme() { - return new selectRecordsTimeOrder_resultTupleScheme(); + public selectRecordsTimePage_resultTupleScheme getScheme() { + return new selectRecordsTimePage_resultTupleScheme(); } } - private static class selectRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -202472,19 +201535,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1280 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1244 : struct.success.entrySet()) { - oprot.writeI64(_iter1280.getKey()); + oprot.writeI64(_iter1244.getKey()); { - oprot.writeI32(_iter1280.getValue().size()); - for (java.util.Map.Entry> _iter1281 : _iter1280.getValue().entrySet()) + oprot.writeI32(_iter1244.getValue().size()); + for (java.util.Map.Entry> _iter1245 : _iter1244.getValue().entrySet()) { - oprot.writeString(_iter1281.getKey()); + oprot.writeString(_iter1245.getKey()); { - oprot.writeI32(_iter1281.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1282 : _iter1281.getValue()) + oprot.writeI32(_iter1245.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1246 : _iter1245.getValue()) { - _iter1282.write(oprot); + _iter1246.write(oprot); } } } @@ -202504,41 +201567,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1283 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1283.size); - long _key1284; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1285; - for (int _i1286 = 0; _i1286 < _map1283.size; ++_i1286) + org.apache.thrift.protocol.TMap _map1247 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1247.size); + long _key1248; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1249; + for (int _i1250 = 0; _i1250 < _map1247.size; ++_i1250) { - _key1284 = iprot.readI64(); + _key1248 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1287 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1285 = new java.util.LinkedHashMap>(2*_map1287.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1288; - @org.apache.thrift.annotation.Nullable java.util.Set _val1289; - for (int _i1290 = 0; _i1290 < _map1287.size; ++_i1290) + org.apache.thrift.protocol.TMap _map1251 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1249 = new java.util.LinkedHashMap>(2*_map1251.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1252; + @org.apache.thrift.annotation.Nullable java.util.Set _val1253; + for (int _i1254 = 0; _i1254 < _map1251.size; ++_i1254) { - _key1288 = iprot.readString(); + _key1252 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1291 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1289 = new java.util.LinkedHashSet(2*_set1291.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1292; - for (int _i1293 = 0; _i1293 < _set1291.size; ++_i1293) + org.apache.thrift.protocol.TSet _set1255 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1253 = new java.util.LinkedHashSet(2*_set1255.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1256; + for (int _i1257 = 0; _i1257 < _set1255.size; ++_i1257) { - _elem1292 = new com.cinchapi.concourse.thrift.TObject(); - _elem1292.read(iprot); - _val1289.add(_elem1292); + _elem1256 = new com.cinchapi.concourse.thrift.TObject(); + _elem1256.read(iprot); + _val1253.add(_elem1256); } } - _val1285.put(_key1288, _val1289); + _val1249.put(_key1252, _val1253); } } - struct.success.put(_key1284, _val1285); + struct.success.put(_key1248, _val1249); } } struct.setSuccessIsSet(true); @@ -202566,24 +201629,22 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimeOrderPage_args"); + public static class selectRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimeOrder_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -202593,10 +201654,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), TIMESTAMP((short)2, "timestamp"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -202618,13 +201678,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -202681,8 +201739,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -202690,17 +201746,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimeOrder_args.class, metaDataMap); } - public selectRecordsTimeOrderPage_args() { + public selectRecordsTimeOrder_args() { } - public selectRecordsTimeOrderPage_args( + public selectRecordsTimeOrder_args( java.util.List records, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -202710,7 +201765,6 @@ public selectRecordsTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -202719,7 +201773,7 @@ public selectRecordsTimeOrderPage_args( /** * Performs a deep copy on other. */ - public selectRecordsTimeOrderPage_args(selectRecordsTimeOrderPage_args other) { + public selectRecordsTimeOrder_args(selectRecordsTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); @@ -202729,9 +201783,6 @@ public selectRecordsTimeOrderPage_args(selectRecordsTimeOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -202744,8 +201795,8 @@ public selectRecordsTimeOrderPage_args(selectRecordsTimeOrderPage_args other) { } @Override - public selectRecordsTimeOrderPage_args deepCopy() { - return new selectRecordsTimeOrderPage_args(this); + public selectRecordsTimeOrder_args deepCopy() { + return new selectRecordsTimeOrder_args(this); } @Override @@ -202754,7 +201805,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -202781,7 +201831,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -202805,7 +201855,7 @@ public long getTimestamp() { return this.timestamp; } - public selectRecordsTimeOrderPage_args setTimestamp(long timestamp) { + public selectRecordsTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -202829,7 +201879,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -202849,37 +201899,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -202904,7 +201929,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -202929,7 +201954,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -202976,14 +202001,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -203024,9 +202041,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -203054,8 +202068,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -203068,12 +202080,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimeOrderPage_args) - return this.equals((selectRecordsTimeOrderPage_args)that); + if (that instanceof selectRecordsTimeOrder_args) + return this.equals((selectRecordsTimeOrder_args)that); return false; } - public boolean equals(selectRecordsTimeOrderPage_args that) { + public boolean equals(selectRecordsTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -203106,15 +202118,6 @@ public boolean equals(selectRecordsTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -203159,10 +202162,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -203179,7 +202178,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimeOrderPage_args other) { + public int compareTo(selectRecordsTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -203216,16 +202215,6 @@ public int compareTo(selectRecordsTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -203277,7 +202266,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimeOrder_args("); boolean first = true; sb.append("records:"); @@ -203300,14 +202289,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -203341,9 +202322,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -203370,17 +202348,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimeOrderPage_argsStandardScheme getScheme() { - return new selectRecordsTimeOrderPage_argsStandardScheme(); + public selectRecordsTimeOrder_argsStandardScheme getScheme() { + return new selectRecordsTimeOrder_argsStandardScheme(); } } - private static class selectRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -203393,13 +202371,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1294 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1294.size); - long _elem1295; - for (int _i1296 = 0; _i1296 < _list1294.size; ++_i1296) + org.apache.thrift.protocol.TList _list1258 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1258.size); + long _elem1259; + for (int _i1260 = 0; _i1260 < _list1258.size; ++_i1260) { - _elem1295 = iprot.readI64(); - struct.records.add(_elem1295); + _elem1259 = iprot.readI64(); + struct.records.add(_elem1259); } iprot.readListEnd(); } @@ -203425,16 +202403,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -203443,7 +202412,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -203452,7 +202421,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -203472,7 +202441,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -203480,9 +202449,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1297 : struct.records) + for (long _iter1261 : struct.records) { - oprot.writeI64(_iter1297); + oprot.writeI64(_iter1261); } oprot.writeListEnd(); } @@ -203496,11 +202465,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -203522,17 +202486,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO } - private static class selectRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimeOrderPage_argsTupleScheme getScheme() { - return new selectRecordsTimeOrderPage_argsTupleScheme(); + public selectRecordsTimeOrder_argsTupleScheme getScheme() { + return new selectRecordsTimeOrder_argsTupleScheme(); } } - private static class selectRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -203544,25 +202508,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1298 : struct.records) + for (long _iter1262 : struct.records) { - oprot.writeI64(_iter1298); + oprot.writeI64(_iter1262); } } } @@ -203572,9 +202533,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -203587,18 +202545,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1299 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1299.size); - long _elem1300; - for (int _i1301 = 0; _i1301 < _list1299.size; ++_i1301) + org.apache.thrift.protocol.TList _list1263 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1263.size); + long _elem1264; + for (int _i1265 = 0; _i1265 < _list1263.size; ++_i1265) { - _elem1300 = iprot.readI64(); - struct.records.add(_elem1300); + _elem1264 = iprot.readI64(); + struct.records.add(_elem1264); } } struct.setRecordsIsSet(true); @@ -203613,21 +202571,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrd struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -203639,16 +202592,16 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimeOrderPage_result"); + public static class selectRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -203744,13 +202697,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimeOrder_result.class, metaDataMap); } - public selectRecordsTimeOrderPage_result() { + public selectRecordsTimeOrder_result() { } - public selectRecordsTimeOrderPage_result( + public selectRecordsTimeOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -203766,7 +202719,7 @@ public selectRecordsTimeOrderPage_result( /** * Performs a deep copy on other. */ - public selectRecordsTimeOrderPage_result(selectRecordsTimeOrderPage_result other) { + public selectRecordsTimeOrder_result(selectRecordsTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -203808,8 +202761,8 @@ public selectRecordsTimeOrderPage_result(selectRecordsTimeOrderPage_result other } @Override - public selectRecordsTimeOrderPage_result deepCopy() { - return new selectRecordsTimeOrderPage_result(this); + public selectRecordsTimeOrder_result deepCopy() { + return new selectRecordsTimeOrder_result(this); } @Override @@ -203836,7 +202789,7 @@ public java.util.Map>> success) { + public selectRecordsTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -203861,7 +202814,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -203886,7 +202839,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -203911,7 +202864,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -204011,12 +202964,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimeOrderPage_result) - return this.equals((selectRecordsTimeOrderPage_result)that); + if (that instanceof selectRecordsTimeOrder_result) + return this.equals((selectRecordsTimeOrder_result)that); return false; } - public boolean equals(selectRecordsTimeOrderPage_result that) { + public boolean equals(selectRecordsTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -204085,7 +203038,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimeOrderPage_result other) { + public int compareTo(selectRecordsTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -204152,7 +203105,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -204211,17 +203164,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimeOrderPage_resultStandardScheme getScheme() { - return new selectRecordsTimeOrderPage_resultStandardScheme(); + public selectRecordsTimeOrder_resultStandardScheme getScheme() { + return new selectRecordsTimeOrder_resultStandardScheme(); } } - private static class selectRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -204234,38 +203187,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1302 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1302.size); - long _key1303; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1304; - for (int _i1305 = 0; _i1305 < _map1302.size; ++_i1305) + org.apache.thrift.protocol.TMap _map1266 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1266.size); + long _key1267; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1268; + for (int _i1269 = 0; _i1269 < _map1266.size; ++_i1269) { - _key1303 = iprot.readI64(); + _key1267 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1306 = iprot.readMapBegin(); - _val1304 = new java.util.LinkedHashMap>(2*_map1306.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1307; - @org.apache.thrift.annotation.Nullable java.util.Set _val1308; - for (int _i1309 = 0; _i1309 < _map1306.size; ++_i1309) + org.apache.thrift.protocol.TMap _map1270 = iprot.readMapBegin(); + _val1268 = new java.util.LinkedHashMap>(2*_map1270.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1271; + @org.apache.thrift.annotation.Nullable java.util.Set _val1272; + for (int _i1273 = 0; _i1273 < _map1270.size; ++_i1273) { - _key1307 = iprot.readString(); + _key1271 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1310 = iprot.readSetBegin(); - _val1308 = new java.util.LinkedHashSet(2*_set1310.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1311; - for (int _i1312 = 0; _i1312 < _set1310.size; ++_i1312) + org.apache.thrift.protocol.TSet _set1274 = iprot.readSetBegin(); + _val1272 = new java.util.LinkedHashSet(2*_set1274.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1275; + for (int _i1276 = 0; _i1276 < _set1274.size; ++_i1276) { - _elem1311 = new com.cinchapi.concourse.thrift.TObject(); - _elem1311.read(iprot); - _val1308.add(_elem1311); + _elem1275 = new com.cinchapi.concourse.thrift.TObject(); + _elem1275.read(iprot); + _val1272.add(_elem1275); } iprot.readSetEnd(); } - _val1304.put(_key1307, _val1308); + _val1268.put(_key1271, _val1272); } iprot.readMapEnd(); } - struct.success.put(_key1303, _val1304); + struct.success.put(_key1267, _val1268); } iprot.readMapEnd(); } @@ -204313,7 +203266,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -204321,19 +203274,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1313 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1277 : struct.success.entrySet()) { - oprot.writeI64(_iter1313.getKey()); + oprot.writeI64(_iter1277.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1313.getValue().size())); - for (java.util.Map.Entry> _iter1314 : _iter1313.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1277.getValue().size())); + for (java.util.Map.Entry> _iter1278 : _iter1277.getValue().entrySet()) { - oprot.writeString(_iter1314.getKey()); + oprot.writeString(_iter1278.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1314.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1315 : _iter1314.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1278.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1279 : _iter1278.getValue()) { - _iter1315.write(oprot); + _iter1279.write(oprot); } oprot.writeSetEnd(); } @@ -204366,17 +203319,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeO } - private static class selectRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimeOrderPage_resultTupleScheme getScheme() { - return new selectRecordsTimeOrderPage_resultTupleScheme(); + public selectRecordsTimeOrder_resultTupleScheme getScheme() { + return new selectRecordsTimeOrder_resultTupleScheme(); } } - private static class selectRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -204395,19 +203348,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1316 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1280 : struct.success.entrySet()) { - oprot.writeI64(_iter1316.getKey()); + oprot.writeI64(_iter1280.getKey()); { - oprot.writeI32(_iter1316.getValue().size()); - for (java.util.Map.Entry> _iter1317 : _iter1316.getValue().entrySet()) + oprot.writeI32(_iter1280.getValue().size()); + for (java.util.Map.Entry> _iter1281 : _iter1280.getValue().entrySet()) { - oprot.writeString(_iter1317.getKey()); + oprot.writeString(_iter1281.getKey()); { - oprot.writeI32(_iter1317.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1318 : _iter1317.getValue()) + oprot.writeI32(_iter1281.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1282 : _iter1281.getValue()) { - _iter1318.write(oprot); + _iter1282.write(oprot); } } } @@ -204427,41 +203380,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1319 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1319.size); - long _key1320; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1321; - for (int _i1322 = 0; _i1322 < _map1319.size; ++_i1322) + org.apache.thrift.protocol.TMap _map1283 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1283.size); + long _key1284; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1285; + for (int _i1286 = 0; _i1286 < _map1283.size; ++_i1286) { - _key1320 = iprot.readI64(); + _key1284 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1323 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1321 = new java.util.LinkedHashMap>(2*_map1323.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1324; - @org.apache.thrift.annotation.Nullable java.util.Set _val1325; - for (int _i1326 = 0; _i1326 < _map1323.size; ++_i1326) + org.apache.thrift.protocol.TMap _map1287 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1285 = new java.util.LinkedHashMap>(2*_map1287.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1288; + @org.apache.thrift.annotation.Nullable java.util.Set _val1289; + for (int _i1290 = 0; _i1290 < _map1287.size; ++_i1290) { - _key1324 = iprot.readString(); + _key1288 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1327 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1325 = new java.util.LinkedHashSet(2*_set1327.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1328; - for (int _i1329 = 0; _i1329 < _set1327.size; ++_i1329) + org.apache.thrift.protocol.TSet _set1291 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1289 = new java.util.LinkedHashSet(2*_set1291.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1292; + for (int _i1293 = 0; _i1293 < _set1291.size; ++_i1293) { - _elem1328 = new com.cinchapi.concourse.thrift.TObject(); - _elem1328.read(iprot); - _val1325.add(_elem1328); + _elem1292 = new com.cinchapi.concourse.thrift.TObject(); + _elem1292.read(iprot); + _val1289.add(_elem1292); } } - _val1321.put(_key1324, _val1325); + _val1285.put(_key1288, _val1289); } } - struct.success.put(_key1320, _val1321); + struct.success.put(_key1284, _val1285); } } struct.setSuccessIsSet(true); @@ -204489,20 +203442,24 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestr_args"); + public static class selectRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -204511,9 +203468,11 @@ public static class selectRecordsTimestr_args implements org.apache.thrift.TBase public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -204533,11 +203492,15 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -204582,6 +203545,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -204589,7 +203554,11 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -204597,15 +203566,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimeOrderPage_args.class, metaDataMap); } - public selectRecordsTimestr_args() { + public selectRecordsTimeOrderPage_args() { } - public selectRecordsTimestr_args( + public selectRecordsTimeOrderPage_args( java.util.List records, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -204613,6 +203584,9 @@ public selectRecordsTimestr_args( this(); this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -204621,13 +203595,18 @@ public selectRecordsTimestr_args( /** * Performs a deep copy on other. */ - public selectRecordsTimestr_args(selectRecordsTimestr_args other) { + public selectRecordsTimeOrderPage_args(selectRecordsTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -204641,14 +203620,17 @@ public selectRecordsTimestr_args(selectRecordsTimestr_args other) { } @Override - public selectRecordsTimestr_args deepCopy() { - return new selectRecordsTimestr_args(this); + public selectRecordsTimeOrderPage_args deepCopy() { + return new selectRecordsTimeOrderPage_args(this); } @Override public void clear() { this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -204675,7 +203657,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -204695,28 +203677,76 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public selectRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectRecordsTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -204725,7 +203755,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -204750,7 +203780,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -204775,7 +203805,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -204810,7 +203840,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -204851,6 +203897,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -204876,6 +203928,10 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -204888,12 +203944,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimestr_args) - return this.equals((selectRecordsTimestr_args)that); + if (that instanceof selectRecordsTimeOrderPage_args) + return this.equals((selectRecordsTimeOrderPage_args)that); return false; } - public boolean equals(selectRecordsTimestr_args that) { + public boolean equals(selectRecordsTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -204908,12 +203964,30 @@ public boolean equals(selectRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -204955,9 +204029,15 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -204975,7 +204055,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimestr_args other) { + public int compareTo(selectRecordsTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -205002,6 +204082,26 @@ public int compareTo(selectRecordsTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -205053,7 +204153,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimeOrderPage_args("); boolean first = true; sb.append("records:"); @@ -205065,10 +204165,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -205102,6 +204214,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -205120,23 +204238,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestr_argsStandardScheme getScheme() { - return new selectRecordsTimestr_argsStandardScheme(); + public selectRecordsTimeOrderPage_argsStandardScheme getScheme() { + return new selectRecordsTimeOrderPage_argsStandardScheme(); } } - private static class selectRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -205149,13 +204269,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1330 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1330.size); - long _elem1331; - for (int _i1332 = 0; _i1332 < _list1330.size; ++_i1332) + org.apache.thrift.protocol.TList _list1294 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1294.size); + long _elem1295; + for (int _i1296 = 0; _i1296 < _list1294.size; ++_i1296) { - _elem1331 = iprot.readI64(); - struct.records.add(_elem1331); + _elem1295 = iprot.readI64(); + struct.records.add(_elem1295); } iprot.readListEnd(); } @@ -205165,14 +204285,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -205181,7 +204319,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -205190,7 +204328,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -205210,7 +204348,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -205218,17 +204356,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1333 : struct.records) + for (long _iter1297 : struct.records) { - oprot.writeI64(_iter1333); + oprot.writeI64(_iter1297); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -205252,17 +204398,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes } - private static class selectRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestr_argsTupleScheme getScheme() { - return new selectRecordsTimestr_argsTupleScheme(); + public selectRecordsTimeOrderPage_argsTupleScheme getScheme() { + return new selectRecordsTimeOrderPage_argsTupleScheme(); } } - private static class selectRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -205271,27 +204417,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1334 : struct.records) + for (long _iter1298 : struct.records) { - oprot.writeI64(_iter1334); + oprot.writeI64(_iter1298); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -205305,37 +204463,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1335 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1335.size); - long _elem1336; - for (int _i1337 = 0; _i1337 < _list1335.size; ++_i1337) + org.apache.thrift.protocol.TList _list1299 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1299.size); + long _elem1300; + for (int _i1301 = 0; _i1301 < _list1299.size; ++_i1301) { - _elem1336 = iprot.readI64(); - struct.records.add(_elem1336); + _elem1300 = iprot.readI64(); + struct.records.add(_elem1300); } } struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -205347,31 +204515,28 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestr_result"); + public static class selectRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -205395,8 +204560,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -205455,35 +204618,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimeOrderPage_result.class, metaDataMap); } - public selectRecordsTimestr_result() { + public selectRecordsTimeOrderPage_result() { } - public selectRecordsTimestr_result( + public selectRecordsTimeOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectRecordsTimestr_result(selectRecordsTimestr_result other) { + public selectRecordsTimeOrderPage_result(selectRecordsTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -205520,16 +204679,13 @@ public selectRecordsTimestr_result(selectRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectRecordsTimestr_result deepCopy() { - return new selectRecordsTimestr_result(this); + public selectRecordsTimeOrderPage_result deepCopy() { + return new selectRecordsTimeOrderPage_result(this); } @Override @@ -205538,7 +204694,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -205557,7 +204712,7 @@ public java.util.Map>> success) { + public selectRecordsTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -205582,7 +204737,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -205607,7 +204762,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -205628,11 +204783,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -205652,31 +204807,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -205708,15 +204838,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -205739,9 +204861,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -205762,20 +204881,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimestr_result) - return this.equals((selectRecordsTimestr_result)that); + if (that instanceof selectRecordsTimeOrderPage_result) + return this.equals((selectRecordsTimeOrderPage_result)that); return false; } - public boolean equals(selectRecordsTimestr_result that) { + public boolean equals(selectRecordsTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -205817,15 +204934,6 @@ public boolean equals(selectRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -205849,15 +204957,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectRecordsTimestr_result other) { + public int compareTo(selectRecordsTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -205904,16 +205008,6 @@ public int compareTo(selectRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -205934,7 +205028,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -205968,14 +205062,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -206001,17 +205087,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestr_resultStandardScheme getScheme() { - return new selectRecordsTimestr_resultStandardScheme(); + public selectRecordsTimeOrderPage_resultStandardScheme getScheme() { + return new selectRecordsTimeOrderPage_resultStandardScheme(); } } - private static class selectRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -206024,38 +205110,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1338 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1338.size); - long _key1339; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1340; - for (int _i1341 = 0; _i1341 < _map1338.size; ++_i1341) + org.apache.thrift.protocol.TMap _map1302 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1302.size); + long _key1303; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1304; + for (int _i1305 = 0; _i1305 < _map1302.size; ++_i1305) { - _key1339 = iprot.readI64(); + _key1303 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1342 = iprot.readMapBegin(); - _val1340 = new java.util.LinkedHashMap>(2*_map1342.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1343; - @org.apache.thrift.annotation.Nullable java.util.Set _val1344; - for (int _i1345 = 0; _i1345 < _map1342.size; ++_i1345) + org.apache.thrift.protocol.TMap _map1306 = iprot.readMapBegin(); + _val1304 = new java.util.LinkedHashMap>(2*_map1306.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1307; + @org.apache.thrift.annotation.Nullable java.util.Set _val1308; + for (int _i1309 = 0; _i1309 < _map1306.size; ++_i1309) { - _key1343 = iprot.readString(); + _key1307 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1346 = iprot.readSetBegin(); - _val1344 = new java.util.LinkedHashSet(2*_set1346.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1347; - for (int _i1348 = 0; _i1348 < _set1346.size; ++_i1348) + org.apache.thrift.protocol.TSet _set1310 = iprot.readSetBegin(); + _val1308 = new java.util.LinkedHashSet(2*_set1310.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1311; + for (int _i1312 = 0; _i1312 < _set1310.size; ++_i1312) { - _elem1347 = new com.cinchapi.concourse.thrift.TObject(); - _elem1347.read(iprot); - _val1344.add(_elem1347); + _elem1311 = new com.cinchapi.concourse.thrift.TObject(); + _elem1311.read(iprot); + _val1308.add(_elem1311); } iprot.readSetEnd(); } - _val1340.put(_key1343, _val1344); + _val1304.put(_key1307, _val1308); } iprot.readMapEnd(); } - struct.success.put(_key1339, _val1340); + struct.success.put(_key1303, _val1304); } iprot.readMapEnd(); } @@ -206084,22 +205170,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -206112,7 +205189,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -206120,19 +205197,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1349 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1313 : struct.success.entrySet()) { - oprot.writeI64(_iter1349.getKey()); + oprot.writeI64(_iter1313.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1349.getValue().size())); - for (java.util.Map.Entry> _iter1350 : _iter1349.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1313.getValue().size())); + for (java.util.Map.Entry> _iter1314 : _iter1313.getValue().entrySet()) { - oprot.writeString(_iter1350.getKey()); + oprot.writeString(_iter1314.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1350.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1351 : _iter1350.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1314.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1315 : _iter1314.getValue()) { - _iter1351.write(oprot); + _iter1315.write(oprot); } oprot.writeSetEnd(); } @@ -206159,28 +205236,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestr_resultTupleScheme getScheme() { - return new selectRecordsTimestr_resultTupleScheme(); + public selectRecordsTimeOrderPage_resultTupleScheme getScheme() { + return new selectRecordsTimeOrderPage_resultTupleScheme(); } } - private static class selectRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -206195,26 +205267,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1352 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1316 : struct.success.entrySet()) { - oprot.writeI64(_iter1352.getKey()); + oprot.writeI64(_iter1316.getKey()); { - oprot.writeI32(_iter1352.getValue().size()); - for (java.util.Map.Entry> _iter1353 : _iter1352.getValue().entrySet()) + oprot.writeI32(_iter1316.getValue().size()); + for (java.util.Map.Entry> _iter1317 : _iter1316.getValue().entrySet()) { - oprot.writeString(_iter1353.getKey()); + oprot.writeString(_iter1317.getKey()); { - oprot.writeI32(_iter1353.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1354 : _iter1353.getValue()) + oprot.writeI32(_iter1317.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1318 : _iter1317.getValue()) { - _iter1354.write(oprot); + _iter1318.write(oprot); } } } @@ -206231,47 +205300,44 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1355 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1355.size); - long _key1356; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1357; - for (int _i1358 = 0; _i1358 < _map1355.size; ++_i1358) + org.apache.thrift.protocol.TMap _map1319 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1319.size); + long _key1320; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1321; + for (int _i1322 = 0; _i1322 < _map1319.size; ++_i1322) { - _key1356 = iprot.readI64(); + _key1320 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1359 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1357 = new java.util.LinkedHashMap>(2*_map1359.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1360; - @org.apache.thrift.annotation.Nullable java.util.Set _val1361; - for (int _i1362 = 0; _i1362 < _map1359.size; ++_i1362) + org.apache.thrift.protocol.TMap _map1323 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1321 = new java.util.LinkedHashMap>(2*_map1323.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1324; + @org.apache.thrift.annotation.Nullable java.util.Set _val1325; + for (int _i1326 = 0; _i1326 < _map1323.size; ++_i1326) { - _key1360 = iprot.readString(); + _key1324 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1363 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1361 = new java.util.LinkedHashSet(2*_set1363.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1364; - for (int _i1365 = 0; _i1365 < _set1363.size; ++_i1365) + org.apache.thrift.protocol.TSet _set1327 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1325 = new java.util.LinkedHashSet(2*_set1327.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1328; + for (int _i1329 = 0; _i1329 < _set1327.size; ++_i1329) { - _elem1364 = new com.cinchapi.concourse.thrift.TObject(); - _elem1364.read(iprot); - _val1361.add(_elem1364); + _elem1328 = new com.cinchapi.concourse.thrift.TObject(); + _elem1328.read(iprot); + _val1325.add(_elem1328); } } - _val1357.put(_key1360, _val1361); + _val1321.put(_key1324, _val1325); } } - struct.success.put(_key1356, _val1357); + struct.success.put(_key1320, _val1321); } } struct.setSuccessIsSet(true); @@ -206287,15 +205353,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -206304,22 +205365,20 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrPage_args"); + public static class selectRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestr_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -206328,10 +205387,9 @@ public static class selectRecordsTimestrPage_args implements org.apache.thrift.T public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), TIMESTAMP((short)2, "timestamp"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -206351,13 +205409,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -206410,8 +205466,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -206419,16 +205473,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestr_args.class, metaDataMap); } - public selectRecordsTimestrPage_args() { + public selectRecordsTimestr_args() { } - public selectRecordsTimestrPage_args( + public selectRecordsTimestr_args( java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -206436,7 +205489,6 @@ public selectRecordsTimestrPage_args( this(); this.records = records; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -206445,7 +205497,7 @@ public selectRecordsTimestrPage_args( /** * Performs a deep copy on other. */ - public selectRecordsTimestrPage_args(selectRecordsTimestrPage_args other) { + public selectRecordsTimestr_args(selectRecordsTimestr_args other) { if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; @@ -206453,9 +205505,6 @@ public selectRecordsTimestrPage_args(selectRecordsTimestrPage_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -206468,15 +205517,14 @@ public selectRecordsTimestrPage_args(selectRecordsTimestrPage_args other) { } @Override - public selectRecordsTimestrPage_args deepCopy() { - return new selectRecordsTimestrPage_args(this); + public selectRecordsTimestr_args deepCopy() { + return new selectRecordsTimestr_args(this); } @Override public void clear() { this.records = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -206503,7 +205551,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -206528,7 +205576,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -206548,37 +205596,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -206603,7 +205626,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -206628,7 +205651,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -206667,14 +205690,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -206712,9 +205727,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -206740,8 +205752,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -206754,12 +205764,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimestrPage_args) - return this.equals((selectRecordsTimestrPage_args)that); + if (that instanceof selectRecordsTimestr_args) + return this.equals((selectRecordsTimestr_args)that); return false; } - public boolean equals(selectRecordsTimestrPage_args that) { + public boolean equals(selectRecordsTimestr_args that) { if (that == null) return false; if (this == that) @@ -206783,15 +205793,6 @@ public boolean equals(selectRecordsTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -206834,10 +205835,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -206854,7 +205851,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimestrPage_args other) { + public int compareTo(selectRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -206881,16 +205878,6 @@ public int compareTo(selectRecordsTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -206942,7 +205929,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestr_args("); boolean first = true; sb.append("records:"); @@ -206961,14 +205948,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -206999,9 +205978,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -207026,17 +206002,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrPage_argsStandardScheme getScheme() { - return new selectRecordsTimestrPage_argsStandardScheme(); + public selectRecordsTimestr_argsStandardScheme getScheme() { + return new selectRecordsTimestr_argsStandardScheme(); } } - private static class selectRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -207049,13 +206025,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1366 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1366.size); - long _elem1367; - for (int _i1368 = 0; _i1368 < _list1366.size; ++_i1368) + org.apache.thrift.protocol.TList _list1330 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1330.size); + long _elem1331; + for (int _i1332 = 0; _i1332 < _list1330.size; ++_i1332) { - _elem1367 = iprot.readI64(); - struct.records.add(_elem1367); + _elem1331 = iprot.readI64(); + struct.records.add(_elem1331); } iprot.readListEnd(); } @@ -207072,16 +206048,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -207090,7 +206057,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -207099,7 +206066,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -207119,7 +206086,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -207127,9 +206094,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1369 : struct.records) + for (long _iter1333 : struct.records) { - oprot.writeI64(_iter1369); + oprot.writeI64(_iter1333); } oprot.writeListEnd(); } @@ -207140,11 +206107,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -207166,17 +206128,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes } - private static class selectRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrPage_argsTupleScheme getScheme() { - return new selectRecordsTimestrPage_argsTupleScheme(); + public selectRecordsTimestr_argsTupleScheme getScheme() { + return new selectRecordsTimestr_argsTupleScheme(); } } - private static class selectRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -207185,34 +206147,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1370 : struct.records) + for (long _iter1334 : struct.records) { - oprot.writeI64(_iter1370); + oprot.writeI64(_iter1334); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -207225,18 +206181,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1371 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1371.size); - long _elem1372; - for (int _i1373 = 0; _i1373 < _list1371.size; ++_i1373) + org.apache.thrift.protocol.TList _list1335 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1335.size); + long _elem1336; + for (int _i1337 = 0; _i1337 < _list1335.size; ++_i1337) { - _elem1372 = iprot.readI64(); - struct.records.add(_elem1372); + _elem1336 = iprot.readI64(); + struct.records.add(_elem1336); } } struct.setRecordsIsSet(true); @@ -207246,21 +206202,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -207272,8 +206223,8 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrPage_result"); + public static class selectRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -207281,8 +206232,8 @@ public static class selectRecordsTimestrPage_result implements org.apache.thrift private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -207384,13 +206335,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestr_result.class, metaDataMap); } - public selectRecordsTimestrPage_result() { + public selectRecordsTimestr_result() { } - public selectRecordsTimestrPage_result( + public selectRecordsTimestr_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -207408,7 +206359,7 @@ public selectRecordsTimestrPage_result( /** * Performs a deep copy on other. */ - public selectRecordsTimestrPage_result(selectRecordsTimestrPage_result other) { + public selectRecordsTimestr_result(selectRecordsTimestr_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -207453,8 +206404,8 @@ public selectRecordsTimestrPage_result(selectRecordsTimestrPage_result other) { } @Override - public selectRecordsTimestrPage_result deepCopy() { - return new selectRecordsTimestrPage_result(this); + public selectRecordsTimestr_result deepCopy() { + return new selectRecordsTimestr_result(this); } @Override @@ -207482,7 +206433,7 @@ public java.util.Map>> success) { + public selectRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -207507,7 +206458,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -207532,7 +206483,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -207557,7 +206508,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -207582,7 +206533,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -207695,12 +206646,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimestrPage_result) - return this.equals((selectRecordsTimestrPage_result)that); + if (that instanceof selectRecordsTimestr_result) + return this.equals((selectRecordsTimestr_result)that); return false; } - public boolean equals(selectRecordsTimestrPage_result that) { + public boolean equals(selectRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -207782,7 +206733,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimestrPage_result other) { + public int compareTo(selectRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -207859,7 +206810,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestr_result("); boolean first = true; sb.append("success:"); @@ -207926,17 +206877,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrPage_resultStandardScheme getScheme() { - return new selectRecordsTimestrPage_resultStandardScheme(); + public selectRecordsTimestr_resultStandardScheme getScheme() { + return new selectRecordsTimestr_resultStandardScheme(); } } - private static class selectRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -207949,38 +206900,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1374 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1374.size); - long _key1375; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1376; - for (int _i1377 = 0; _i1377 < _map1374.size; ++_i1377) + org.apache.thrift.protocol.TMap _map1338 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1338.size); + long _key1339; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1340; + for (int _i1341 = 0; _i1341 < _map1338.size; ++_i1341) { - _key1375 = iprot.readI64(); + _key1339 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1378 = iprot.readMapBegin(); - _val1376 = new java.util.LinkedHashMap>(2*_map1378.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1379; - @org.apache.thrift.annotation.Nullable java.util.Set _val1380; - for (int _i1381 = 0; _i1381 < _map1378.size; ++_i1381) + org.apache.thrift.protocol.TMap _map1342 = iprot.readMapBegin(); + _val1340 = new java.util.LinkedHashMap>(2*_map1342.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1343; + @org.apache.thrift.annotation.Nullable java.util.Set _val1344; + for (int _i1345 = 0; _i1345 < _map1342.size; ++_i1345) { - _key1379 = iprot.readString(); + _key1343 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1382 = iprot.readSetBegin(); - _val1380 = new java.util.LinkedHashSet(2*_set1382.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1383; - for (int _i1384 = 0; _i1384 < _set1382.size; ++_i1384) + org.apache.thrift.protocol.TSet _set1346 = iprot.readSetBegin(); + _val1344 = new java.util.LinkedHashSet(2*_set1346.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1347; + for (int _i1348 = 0; _i1348 < _set1346.size; ++_i1348) { - _elem1383 = new com.cinchapi.concourse.thrift.TObject(); - _elem1383.read(iprot); - _val1380.add(_elem1383); + _elem1347 = new com.cinchapi.concourse.thrift.TObject(); + _elem1347.read(iprot); + _val1344.add(_elem1347); } iprot.readSetEnd(); } - _val1376.put(_key1379, _val1380); + _val1340.put(_key1343, _val1344); } iprot.readMapEnd(); } - struct.success.put(_key1375, _val1376); + struct.success.put(_key1339, _val1340); } iprot.readMapEnd(); } @@ -208037,7 +206988,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -208045,19 +206996,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1385 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1349 : struct.success.entrySet()) { - oprot.writeI64(_iter1385.getKey()); + oprot.writeI64(_iter1349.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1385.getValue().size())); - for (java.util.Map.Entry> _iter1386 : _iter1385.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1349.getValue().size())); + for (java.util.Map.Entry> _iter1350 : _iter1349.getValue().entrySet()) { - oprot.writeString(_iter1386.getKey()); + oprot.writeString(_iter1350.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1386.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1387 : _iter1386.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1350.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1351 : _iter1350.getValue()) { - _iter1387.write(oprot); + _iter1351.write(oprot); } oprot.writeSetEnd(); } @@ -208095,17 +207046,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes } - private static class selectRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrPage_resultTupleScheme getScheme() { - return new selectRecordsTimestrPage_resultTupleScheme(); + public selectRecordsTimestr_resultTupleScheme getScheme() { + return new selectRecordsTimestr_resultTupleScheme(); } } - private static class selectRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -208127,19 +207078,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1388 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1352 : struct.success.entrySet()) { - oprot.writeI64(_iter1388.getKey()); + oprot.writeI64(_iter1352.getKey()); { - oprot.writeI32(_iter1388.getValue().size()); - for (java.util.Map.Entry> _iter1389 : _iter1388.getValue().entrySet()) + oprot.writeI32(_iter1352.getValue().size()); + for (java.util.Map.Entry> _iter1353 : _iter1352.getValue().entrySet()) { - oprot.writeString(_iter1389.getKey()); + oprot.writeString(_iter1353.getKey()); { - oprot.writeI32(_iter1389.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1390 : _iter1389.getValue()) + oprot.writeI32(_iter1353.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1354 : _iter1353.getValue()) { - _iter1390.write(oprot); + _iter1354.write(oprot); } } } @@ -208162,41 +207113,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1391 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1391.size); - long _key1392; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1393; - for (int _i1394 = 0; _i1394 < _map1391.size; ++_i1394) + org.apache.thrift.protocol.TMap _map1355 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1355.size); + long _key1356; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1357; + for (int _i1358 = 0; _i1358 < _map1355.size; ++_i1358) { - _key1392 = iprot.readI64(); + _key1356 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1395 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1393 = new java.util.LinkedHashMap>(2*_map1395.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1396; - @org.apache.thrift.annotation.Nullable java.util.Set _val1397; - for (int _i1398 = 0; _i1398 < _map1395.size; ++_i1398) + org.apache.thrift.protocol.TMap _map1359 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1357 = new java.util.LinkedHashMap>(2*_map1359.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1360; + @org.apache.thrift.annotation.Nullable java.util.Set _val1361; + for (int _i1362 = 0; _i1362 < _map1359.size; ++_i1362) { - _key1396 = iprot.readString(); + _key1360 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1399 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1397 = new java.util.LinkedHashSet(2*_set1399.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1400; - for (int _i1401 = 0; _i1401 < _set1399.size; ++_i1401) + org.apache.thrift.protocol.TSet _set1363 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1361 = new java.util.LinkedHashSet(2*_set1363.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1364; + for (int _i1365 = 0; _i1365 < _set1363.size; ++_i1365) { - _elem1400 = new com.cinchapi.concourse.thrift.TObject(); - _elem1400.read(iprot); - _val1397.add(_elem1400); + _elem1364 = new com.cinchapi.concourse.thrift.TObject(); + _elem1364.read(iprot); + _val1361.add(_elem1364); } } - _val1393.put(_key1396, _val1397); + _val1357.put(_key1360, _val1361); } } - struct.success.put(_key1392, _val1393); + struct.success.put(_key1356, _val1357); } } struct.setSuccessIsSet(true); @@ -208229,22 +207180,22 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrOrder_args"); + public static class selectRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrPage_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -208253,7 +207204,7 @@ public static class selectRecordsTimestrOrder_args implements org.apache.thrift. public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), TIMESTAMP((short)2, "timestamp"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -208276,8 +207227,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -208335,8 +207286,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -208344,16 +207295,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrPage_args.class, metaDataMap); } - public selectRecordsTimestrOrder_args() { + public selectRecordsTimestrPage_args() { } - public selectRecordsTimestrOrder_args( + public selectRecordsTimestrPage_args( java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -208361,7 +207312,7 @@ public selectRecordsTimestrOrder_args( this(); this.records = records; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -208370,7 +207321,7 @@ public selectRecordsTimestrOrder_args( /** * Performs a deep copy on other. */ - public selectRecordsTimestrOrder_args(selectRecordsTimestrOrder_args other) { + public selectRecordsTimestrPage_args(selectRecordsTimestrPage_args other) { if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; @@ -208378,8 +207329,8 @@ public selectRecordsTimestrOrder_args(selectRecordsTimestrOrder_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -208393,15 +207344,15 @@ public selectRecordsTimestrOrder_args(selectRecordsTimestrOrder_args other) { } @Override - public selectRecordsTimestrOrder_args deepCopy() { - return new selectRecordsTimestrOrder_args(this); + public selectRecordsTimestrPage_args deepCopy() { + return new selectRecordsTimestrPage_args(this); } @Override public void clear() { this.records = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -208428,7 +207379,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -208453,7 +207404,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -208474,27 +207425,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -208503,7 +207454,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -208528,7 +207479,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -208553,7 +207504,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -208592,11 +207543,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -208637,8 +207588,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -208665,8 +207616,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -208679,12 +207630,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimestrOrder_args) - return this.equals((selectRecordsTimestrOrder_args)that); + if (that instanceof selectRecordsTimestrPage_args) + return this.equals((selectRecordsTimestrPage_args)that); return false; } - public boolean equals(selectRecordsTimestrOrder_args that) { + public boolean equals(selectRecordsTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -208708,12 +207659,12 @@ public boolean equals(selectRecordsTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -208759,9 +207710,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -208779,7 +207730,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimestrOrder_args other) { + public int compareTo(selectRecordsTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -208806,12 +207757,12 @@ public int compareTo(selectRecordsTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -208867,7 +207818,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrPage_args("); boolean first = true; sb.append("records:"); @@ -208886,11 +207837,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -208924,8 +207875,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -208951,17 +207902,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrOrder_argsStandardScheme getScheme() { - return new selectRecordsTimestrOrder_argsStandardScheme(); + public selectRecordsTimestrPage_argsStandardScheme getScheme() { + return new selectRecordsTimestrPage_argsStandardScheme(); } } - private static class selectRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -208974,13 +207925,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1402 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1402.size); - long _elem1403; - for (int _i1404 = 0; _i1404 < _list1402.size; ++_i1404) + org.apache.thrift.protocol.TList _list1366 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1366.size); + long _elem1367; + for (int _i1368 = 0; _i1368 < _list1366.size; ++_i1368) { - _elem1403 = iprot.readI64(); - struct.records.add(_elem1403); + _elem1367 = iprot.readI64(); + struct.records.add(_elem1367); } iprot.readListEnd(); } @@ -208997,11 +207948,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -209044,7 +207995,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -209052,9 +208003,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1405 : struct.records) + for (long _iter1369 : struct.records) { - oprot.writeI64(_iter1405); + oprot.writeI64(_iter1369); } oprot.writeListEnd(); } @@ -209065,9 +208016,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -209091,17 +208042,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes } - private static class selectRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrOrder_argsTupleScheme getScheme() { - return new selectRecordsTimestrOrder_argsTupleScheme(); + public selectRecordsTimestrPage_argsTupleScheme getScheme() { + return new selectRecordsTimestrPage_argsTupleScheme(); } } - private static class selectRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -209110,7 +208061,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -209126,17 +208077,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1406 : struct.records) + for (long _iter1370 : struct.records) { - oprot.writeI64(_iter1406); + oprot.writeI64(_iter1370); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -209150,18 +208101,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1407 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1407.size); - long _elem1408; - for (int _i1409 = 0; _i1409 < _list1407.size; ++_i1409) + org.apache.thrift.protocol.TList _list1371 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1371.size); + long _elem1372; + for (int _i1373 = 0; _i1373 < _list1371.size; ++_i1373) { - _elem1408 = iprot.readI64(); - struct.records.add(_elem1408); + _elem1372 = iprot.readI64(); + struct.records.add(_elem1372); } } struct.setRecordsIsSet(true); @@ -209171,9 +208122,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -209197,8 +208148,8 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrOrder_result"); + public static class selectRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -209206,8 +208157,8 @@ public static class selectRecordsTimestrOrder_result implements org.apache.thrif private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -209309,13 +208260,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrPage_result.class, metaDataMap); } - public selectRecordsTimestrOrder_result() { + public selectRecordsTimestrPage_result() { } - public selectRecordsTimestrOrder_result( + public selectRecordsTimestrPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -209333,7 +208284,7 @@ public selectRecordsTimestrOrder_result( /** * Performs a deep copy on other. */ - public selectRecordsTimestrOrder_result(selectRecordsTimestrOrder_result other) { + public selectRecordsTimestrPage_result(selectRecordsTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -209378,8 +208329,8 @@ public selectRecordsTimestrOrder_result(selectRecordsTimestrOrder_result other) } @Override - public selectRecordsTimestrOrder_result deepCopy() { - return new selectRecordsTimestrOrder_result(this); + public selectRecordsTimestrPage_result deepCopy() { + return new selectRecordsTimestrPage_result(this); } @Override @@ -209407,7 +208358,7 @@ public java.util.Map>> success) { + public selectRecordsTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -209432,7 +208383,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -209457,7 +208408,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -209482,7 +208433,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -209507,7 +208458,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -209620,12 +208571,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimestrOrder_result) - return this.equals((selectRecordsTimestrOrder_result)that); + if (that instanceof selectRecordsTimestrPage_result) + return this.equals((selectRecordsTimestrPage_result)that); return false; } - public boolean equals(selectRecordsTimestrOrder_result that) { + public boolean equals(selectRecordsTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -209707,7 +208658,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimestrOrder_result other) { + public int compareTo(selectRecordsTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -209784,7 +208735,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -209851,17 +208802,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrOrder_resultStandardScheme getScheme() { - return new selectRecordsTimestrOrder_resultStandardScheme(); + public selectRecordsTimestrPage_resultStandardScheme getScheme() { + return new selectRecordsTimestrPage_resultStandardScheme(); } } - private static class selectRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -209874,38 +208825,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1410 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1410.size); - long _key1411; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1412; - for (int _i1413 = 0; _i1413 < _map1410.size; ++_i1413) + org.apache.thrift.protocol.TMap _map1374 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1374.size); + long _key1375; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1376; + for (int _i1377 = 0; _i1377 < _map1374.size; ++_i1377) { - _key1411 = iprot.readI64(); + _key1375 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1414 = iprot.readMapBegin(); - _val1412 = new java.util.LinkedHashMap>(2*_map1414.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1415; - @org.apache.thrift.annotation.Nullable java.util.Set _val1416; - for (int _i1417 = 0; _i1417 < _map1414.size; ++_i1417) + org.apache.thrift.protocol.TMap _map1378 = iprot.readMapBegin(); + _val1376 = new java.util.LinkedHashMap>(2*_map1378.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1379; + @org.apache.thrift.annotation.Nullable java.util.Set _val1380; + for (int _i1381 = 0; _i1381 < _map1378.size; ++_i1381) { - _key1415 = iprot.readString(); + _key1379 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1418 = iprot.readSetBegin(); - _val1416 = new java.util.LinkedHashSet(2*_set1418.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1419; - for (int _i1420 = 0; _i1420 < _set1418.size; ++_i1420) + org.apache.thrift.protocol.TSet _set1382 = iprot.readSetBegin(); + _val1380 = new java.util.LinkedHashSet(2*_set1382.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1383; + for (int _i1384 = 0; _i1384 < _set1382.size; ++_i1384) { - _elem1419 = new com.cinchapi.concourse.thrift.TObject(); - _elem1419.read(iprot); - _val1416.add(_elem1419); + _elem1383 = new com.cinchapi.concourse.thrift.TObject(); + _elem1383.read(iprot); + _val1380.add(_elem1383); } iprot.readSetEnd(); } - _val1412.put(_key1415, _val1416); + _val1376.put(_key1379, _val1380); } iprot.readMapEnd(); } - struct.success.put(_key1411, _val1412); + struct.success.put(_key1375, _val1376); } iprot.readMapEnd(); } @@ -209962,7 +208913,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -209970,19 +208921,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1421 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1385 : struct.success.entrySet()) { - oprot.writeI64(_iter1421.getKey()); + oprot.writeI64(_iter1385.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1421.getValue().size())); - for (java.util.Map.Entry> _iter1422 : _iter1421.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1385.getValue().size())); + for (java.util.Map.Entry> _iter1386 : _iter1385.getValue().entrySet()) { - oprot.writeString(_iter1422.getKey()); + oprot.writeString(_iter1386.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1422.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1423 : _iter1422.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1386.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1387 : _iter1386.getValue()) { - _iter1423.write(oprot); + _iter1387.write(oprot); } oprot.writeSetEnd(); } @@ -210020,17 +208971,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes } - private static class selectRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrOrder_resultTupleScheme getScheme() { - return new selectRecordsTimestrOrder_resultTupleScheme(); + public selectRecordsTimestrPage_resultTupleScheme getScheme() { + return new selectRecordsTimestrPage_resultTupleScheme(); } } - private static class selectRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -210052,19 +209003,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1424 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1388 : struct.success.entrySet()) { - oprot.writeI64(_iter1424.getKey()); + oprot.writeI64(_iter1388.getKey()); { - oprot.writeI32(_iter1424.getValue().size()); - for (java.util.Map.Entry> _iter1425 : _iter1424.getValue().entrySet()) + oprot.writeI32(_iter1388.getValue().size()); + for (java.util.Map.Entry> _iter1389 : _iter1388.getValue().entrySet()) { - oprot.writeString(_iter1425.getKey()); + oprot.writeString(_iter1389.getKey()); { - oprot.writeI32(_iter1425.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1426 : _iter1425.getValue()) + oprot.writeI32(_iter1389.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1390 : _iter1389.getValue()) { - _iter1426.write(oprot); + _iter1390.write(oprot); } } } @@ -210087,41 +209038,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1427 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1427.size); - long _key1428; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1429; - for (int _i1430 = 0; _i1430 < _map1427.size; ++_i1430) + org.apache.thrift.protocol.TMap _map1391 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1391.size); + long _key1392; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1393; + for (int _i1394 = 0; _i1394 < _map1391.size; ++_i1394) { - _key1428 = iprot.readI64(); + _key1392 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1431 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1429 = new java.util.LinkedHashMap>(2*_map1431.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1432; - @org.apache.thrift.annotation.Nullable java.util.Set _val1433; - for (int _i1434 = 0; _i1434 < _map1431.size; ++_i1434) + org.apache.thrift.protocol.TMap _map1395 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1393 = new java.util.LinkedHashMap>(2*_map1395.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1396; + @org.apache.thrift.annotation.Nullable java.util.Set _val1397; + for (int _i1398 = 0; _i1398 < _map1395.size; ++_i1398) { - _key1432 = iprot.readString(); + _key1396 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1435 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1433 = new java.util.LinkedHashSet(2*_set1435.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1436; - for (int _i1437 = 0; _i1437 < _set1435.size; ++_i1437) + org.apache.thrift.protocol.TSet _set1399 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1397 = new java.util.LinkedHashSet(2*_set1399.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1400; + for (int _i1401 = 0; _i1401 < _set1399.size; ++_i1401) { - _elem1436 = new com.cinchapi.concourse.thrift.TObject(); - _elem1436.read(iprot); - _val1433.add(_elem1436); + _elem1400 = new com.cinchapi.concourse.thrift.TObject(); + _elem1400.read(iprot); + _val1397.add(_elem1400); } } - _val1429.put(_key1432, _val1433); + _val1393.put(_key1396, _val1397); } } - struct.success.put(_key1428, _val1429); + struct.success.put(_key1392, _val1393); } } struct.setSuccessIsSet(true); @@ -210154,24 +209105,22 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrOrderPage_args"); + public static class selectRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrOrder_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -210181,10 +209130,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)1, "records"), TIMESTAMP((short)2, "timestamp"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -210206,13 +209154,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -210267,8 +209213,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -210276,17 +209220,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrOrder_args.class, metaDataMap); } - public selectRecordsTimestrOrderPage_args() { + public selectRecordsTimestrOrder_args() { } - public selectRecordsTimestrOrderPage_args( + public selectRecordsTimestrOrder_args( java.util.List records, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -210295,7 +209238,6 @@ public selectRecordsTimestrOrderPage_args( this.records = records; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -210304,7 +209246,7 @@ public selectRecordsTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public selectRecordsTimestrOrderPage_args(selectRecordsTimestrOrderPage_args other) { + public selectRecordsTimestrOrder_args(selectRecordsTimestrOrder_args other) { if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; @@ -210315,9 +209257,6 @@ public selectRecordsTimestrOrderPage_args(selectRecordsTimestrOrderPage_args oth if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -210330,8 +209269,8 @@ public selectRecordsTimestrOrderPage_args(selectRecordsTimestrOrderPage_args oth } @Override - public selectRecordsTimestrOrderPage_args deepCopy() { - return new selectRecordsTimestrOrderPage_args(this); + public selectRecordsTimestrOrder_args deepCopy() { + return new selectRecordsTimestrOrder_args(this); } @Override @@ -210339,7 +209278,6 @@ public void clear() { this.records = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -210366,7 +209304,7 @@ public java.util.List getRecords() { return this.records; } - public selectRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -210391,7 +209329,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -210416,7 +209354,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -210436,37 +209374,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -210491,7 +209404,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -210516,7 +209429,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -210563,14 +209476,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -210611,9 +209516,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -210641,8 +209543,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -210655,12 +209555,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimestrOrderPage_args) - return this.equals((selectRecordsTimestrOrderPage_args)that); + if (that instanceof selectRecordsTimestrOrder_args) + return this.equals((selectRecordsTimestrOrder_args)that); return false; } - public boolean equals(selectRecordsTimestrOrderPage_args that) { + public boolean equals(selectRecordsTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -210693,15 +209593,6 @@ public boolean equals(selectRecordsTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -210748,10 +209639,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -210768,7 +209655,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimestrOrderPage_args other) { + public int compareTo(selectRecordsTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -210805,16 +209692,6 @@ public int compareTo(selectRecordsTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -210866,7 +209743,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrOrder_args("); boolean first = true; sb.append("records:"); @@ -210893,14 +209770,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -210934,9 +209803,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -210961,17 +209827,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrOrderPage_argsStandardScheme getScheme() { - return new selectRecordsTimestrOrderPage_argsStandardScheme(); + public selectRecordsTimestrOrder_argsStandardScheme getScheme() { + return new selectRecordsTimestrOrder_argsStandardScheme(); } } - private static class selectRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -210984,13 +209850,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1438 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1438.size); - long _elem1439; - for (int _i1440 = 0; _i1440 < _list1438.size; ++_i1440) + org.apache.thrift.protocol.TList _list1402 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1402.size); + long _elem1403; + for (int _i1404 = 0; _i1404 < _list1402.size; ++_i1404) { - _elem1439 = iprot.readI64(); - struct.records.add(_elem1439); + _elem1403 = iprot.readI64(); + struct.records.add(_elem1403); } iprot.readListEnd(); } @@ -211016,16 +209882,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -211034,7 +209891,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -211043,7 +209900,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -211063,7 +209920,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -211071,9 +209928,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1441 : struct.records) + for (long _iter1405 : struct.records) { - oprot.writeI64(_iter1441); + oprot.writeI64(_iter1405); } oprot.writeListEnd(); } @@ -211089,11 +209946,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -211115,17 +209967,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes } - private static class selectRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrOrderPage_argsTupleScheme getScheme() { - return new selectRecordsTimestrOrderPage_argsTupleScheme(); + public selectRecordsTimestrOrder_argsTupleScheme getScheme() { + return new selectRecordsTimestrOrder_argsTupleScheme(); } } - private static class selectRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -211137,25 +209989,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1442 : struct.records) + for (long _iter1406 : struct.records) { - oprot.writeI64(_iter1442); + oprot.writeI64(_iter1406); } } } @@ -211165,9 +210014,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -211180,18 +210026,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1443 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1443.size); - long _elem1444; - for (int _i1445 = 0; _i1445 < _list1443.size; ++_i1445) + org.apache.thrift.protocol.TList _list1407 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1407.size); + long _elem1408; + for (int _i1409 = 0; _i1409 < _list1407.size; ++_i1409) { - _elem1444 = iprot.readI64(); - struct.records.add(_elem1444); + _elem1408 = iprot.readI64(); + struct.records.add(_elem1408); } } struct.setRecordsIsSet(true); @@ -211206,21 +210052,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestr struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -211232,8 +210073,8 @@ private static S scheme(org.apache. } } - public static class selectRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrOrderPage_result"); + public static class selectRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -211241,8 +210082,8 @@ public static class selectRecordsTimestrOrderPage_result implements org.apache.t private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -211344,13 +210185,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrOrder_result.class, metaDataMap); } - public selectRecordsTimestrOrderPage_result() { + public selectRecordsTimestrOrder_result() { } - public selectRecordsTimestrOrderPage_result( + public selectRecordsTimestrOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -211368,7 +210209,7 @@ public selectRecordsTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public selectRecordsTimestrOrderPage_result(selectRecordsTimestrOrderPage_result other) { + public selectRecordsTimestrOrder_result(selectRecordsTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -211413,8 +210254,8 @@ public selectRecordsTimestrOrderPage_result(selectRecordsTimestrOrderPage_result } @Override - public selectRecordsTimestrOrderPage_result deepCopy() { - return new selectRecordsTimestrOrderPage_result(this); + public selectRecordsTimestrOrder_result deepCopy() { + return new selectRecordsTimestrOrder_result(this); } @Override @@ -211442,7 +210283,7 @@ public java.util.Map>> success) { + public selectRecordsTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -211467,7 +210308,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -211492,7 +210333,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -211517,7 +210358,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -211542,7 +210383,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -211655,12 +210496,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectRecordsTimestrOrderPage_result) - return this.equals((selectRecordsTimestrOrderPage_result)that); + if (that instanceof selectRecordsTimestrOrder_result) + return this.equals((selectRecordsTimestrOrder_result)that); return false; } - public boolean equals(selectRecordsTimestrOrderPage_result that) { + public boolean equals(selectRecordsTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -211742,7 +210583,7 @@ public int hashCode() { } @Override - public int compareTo(selectRecordsTimestrOrderPage_result other) { + public int compareTo(selectRecordsTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -211819,7 +210660,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -211886,17 +210727,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrOrderPage_resultStandardScheme getScheme() { - return new selectRecordsTimestrOrderPage_resultStandardScheme(); + public selectRecordsTimestrOrder_resultStandardScheme getScheme() { + return new selectRecordsTimestrOrder_resultStandardScheme(); } } - private static class selectRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -211909,38 +210750,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1446 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1446.size); - long _key1447; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1448; - for (int _i1449 = 0; _i1449 < _map1446.size; ++_i1449) + org.apache.thrift.protocol.TMap _map1410 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1410.size); + long _key1411; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1412; + for (int _i1413 = 0; _i1413 < _map1410.size; ++_i1413) { - _key1447 = iprot.readI64(); + _key1411 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1450 = iprot.readMapBegin(); - _val1448 = new java.util.LinkedHashMap>(2*_map1450.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1451; - @org.apache.thrift.annotation.Nullable java.util.Set _val1452; - for (int _i1453 = 0; _i1453 < _map1450.size; ++_i1453) + org.apache.thrift.protocol.TMap _map1414 = iprot.readMapBegin(); + _val1412 = new java.util.LinkedHashMap>(2*_map1414.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1415; + @org.apache.thrift.annotation.Nullable java.util.Set _val1416; + for (int _i1417 = 0; _i1417 < _map1414.size; ++_i1417) { - _key1451 = iprot.readString(); + _key1415 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1454 = iprot.readSetBegin(); - _val1452 = new java.util.LinkedHashSet(2*_set1454.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1455; - for (int _i1456 = 0; _i1456 < _set1454.size; ++_i1456) + org.apache.thrift.protocol.TSet _set1418 = iprot.readSetBegin(); + _val1416 = new java.util.LinkedHashSet(2*_set1418.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1419; + for (int _i1420 = 0; _i1420 < _set1418.size; ++_i1420) { - _elem1455 = new com.cinchapi.concourse.thrift.TObject(); - _elem1455.read(iprot); - _val1452.add(_elem1455); + _elem1419 = new com.cinchapi.concourse.thrift.TObject(); + _elem1419.read(iprot); + _val1416.add(_elem1419); } iprot.readSetEnd(); } - _val1448.put(_key1451, _val1452); + _val1412.put(_key1415, _val1416); } iprot.readMapEnd(); } - struct.success.put(_key1447, _val1448); + struct.success.put(_key1411, _val1412); } iprot.readMapEnd(); } @@ -211997,7 +210838,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -212005,19 +210846,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1457 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1421 : struct.success.entrySet()) { - oprot.writeI64(_iter1457.getKey()); + oprot.writeI64(_iter1421.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1457.getValue().size())); - for (java.util.Map.Entry> _iter1458 : _iter1457.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1421.getValue().size())); + for (java.util.Map.Entry> _iter1422 : _iter1421.getValue().entrySet()) { - oprot.writeString(_iter1458.getKey()); + oprot.writeString(_iter1422.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1458.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1459 : _iter1458.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1422.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1423 : _iter1422.getValue()) { - _iter1459.write(oprot); + _iter1423.write(oprot); } oprot.writeSetEnd(); } @@ -212055,17 +210896,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimes } - private static class selectRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectRecordsTimestrOrderPage_resultTupleScheme getScheme() { - return new selectRecordsTimestrOrderPage_resultTupleScheme(); + public selectRecordsTimestrOrder_resultTupleScheme getScheme() { + return new selectRecordsTimestrOrder_resultTupleScheme(); } } - private static class selectRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -212087,19 +210928,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1460 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1424 : struct.success.entrySet()) { - oprot.writeI64(_iter1460.getKey()); + oprot.writeI64(_iter1424.getKey()); { - oprot.writeI32(_iter1460.getValue().size()); - for (java.util.Map.Entry> _iter1461 : _iter1460.getValue().entrySet()) + oprot.writeI32(_iter1424.getValue().size()); + for (java.util.Map.Entry> _iter1425 : _iter1424.getValue().entrySet()) { - oprot.writeString(_iter1461.getKey()); + oprot.writeString(_iter1425.getKey()); { - oprot.writeI32(_iter1461.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1462 : _iter1461.getValue()) + oprot.writeI32(_iter1425.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1426 : _iter1425.getValue()) { - _iter1462.write(oprot); + _iter1426.write(oprot); } } } @@ -212122,41 +210963,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1463 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1463.size); - long _key1464; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1465; - for (int _i1466 = 0; _i1466 < _map1463.size; ++_i1466) + org.apache.thrift.protocol.TMap _map1427 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1427.size); + long _key1428; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1429; + for (int _i1430 = 0; _i1430 < _map1427.size; ++_i1430) { - _key1464 = iprot.readI64(); + _key1428 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1467 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1465 = new java.util.LinkedHashMap>(2*_map1467.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1468; - @org.apache.thrift.annotation.Nullable java.util.Set _val1469; - for (int _i1470 = 0; _i1470 < _map1467.size; ++_i1470) + org.apache.thrift.protocol.TMap _map1431 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1429 = new java.util.LinkedHashMap>(2*_map1431.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1432; + @org.apache.thrift.annotation.Nullable java.util.Set _val1433; + for (int _i1434 = 0; _i1434 < _map1431.size; ++_i1434) { - _key1468 = iprot.readString(); + _key1432 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1471 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1469 = new java.util.LinkedHashSet(2*_set1471.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1472; - for (int _i1473 = 0; _i1473 < _set1471.size; ++_i1473) + org.apache.thrift.protocol.TSet _set1435 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1433 = new java.util.LinkedHashSet(2*_set1435.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1436; + for (int _i1437 = 0; _i1437 < _set1435.size; ++_i1437) { - _elem1472 = new com.cinchapi.concourse.thrift.TObject(); - _elem1472.read(iprot); - _val1469.add(_elem1472); + _elem1436 = new com.cinchapi.concourse.thrift.TObject(); + _elem1436.read(iprot); + _val1433.add(_elem1436); } } - _val1465.put(_key1468, _val1469); + _val1429.put(_key1432, _val1433); } } - struct.success.put(_key1464, _val1465); + struct.success.put(_key1428, _val1429); } } struct.setSuccessIsSet(true); @@ -212189,31 +211030,37 @@ private static S scheme(org.apache. } } - public static class selectKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecord_args"); + public static class selectRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - RECORD((short)2, "record"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + RECORDS((short)1, "records"), + TIMESTAMP((short)2, "timestamp"), + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -212229,15 +211076,19 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // RECORD - return RECORD; - case 3: // CREDS + case 1: // RECORDS + return RECORDS; + case 2: // TIMESTAMP + return TIMESTAMP; + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -212282,15 +211133,18 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -212298,23 +211152,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrOrderPage_args.class, metaDataMap); } - public selectKeyRecord_args() { + public selectRecordsTimestrOrderPage_args() { } - public selectKeyRecord_args( - java.lang.String key, - long record, + public selectRecordsTimestrOrderPage_args( + java.util.List records, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.record = record; - setRecordIsSet(true); + this.records = records; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -212323,12 +211180,20 @@ public selectKeyRecord_args( /** * Performs a deep copy on other. */ - public selectKeyRecord_args(selectKeyRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; + public selectRecordsTimestrOrderPage_args(selectRecordsTimestrOrderPage_args other) { + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -212341,66 +211206,135 @@ public selectKeyRecord_args(selectKeyRecord_args other) { } @Override - public selectKeyRecord_args deepCopy() { - return new selectKeyRecord_args(this); + public selectRecordsTimestrOrderPage_args deepCopy() { + return new selectRecordsTimestrOrderPage_args(this); } @Override public void clear() { - this.key = null; - setRecordIsSet(false); - this.record = 0; + this.records = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); } - public selectKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public selectRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetKey() { - this.key = null; + public void unsetRecords() { + this.records = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setKeyIsSet(boolean value) { + public void setRecordsIsSet(boolean value) { if (!value) { - this.key = null; + this.records = null; } } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; } - public selectKeyRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public selectRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -212408,7 +211342,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -212433,7 +211367,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -212458,7 +211392,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -212481,19 +211415,35 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case RECORDS: if (value == null) { - unsetKey(); + unsetRecords(); } else { - setKey((java.lang.String)value); + setRecords((java.util.List)value); } break; - case RECORD: + case TIMESTAMP: if (value == null) { - unsetRecord(); + unsetTimestamp(); } else { - setRecord((java.lang.Long)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -212528,11 +211478,17 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case RECORDS: + return getRecords(); - case RECORD: - return getRecord(); + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -212555,10 +211511,14 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case RECORD: - return isSetRecord(); + case RECORDS: + return isSetRecords(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -212571,32 +211531,50 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecord_args) - return this.equals((selectKeyRecord_args)that); + if (that instanceof selectRecordsTimestrOrderPage_args) + return this.equals((selectRecordsTimestrOrderPage_args)that); return false; } - public boolean equals(selectKeyRecord_args that) { + public boolean equals(selectRecordsTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (!this.key.equals(that.key)) + if (!this.records.equals(that.records)) return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.record != that.record) + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -212634,11 +211612,21 @@ public boolean equals(selectKeyRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -212656,29 +211644,49 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecord_args other) { + public int compareTo(selectRecordsTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -212734,19 +211742,39 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrOrderPage_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("records:"); + if (this.records == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.records); } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -212779,6 +211807,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -212797,25 +211831,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecord_argsStandardScheme getScheme() { - return new selectKeyRecord_argsStandardScheme(); + public selectRecordsTimestrOrderPage_argsStandardScheme getScheme() { + return new selectRecordsTimestrOrderPage_argsStandardScheme(); } } - private static class selectKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -212825,23 +211857,51 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_arg break; } switch (schemeField.id) { - case 1: // KEY + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list1438 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1438.size); + long _elem1439; + for (int _i1440 = 0; _i1440 < _list1438.size; ++_i1440) + { + _elem1439 = iprot.readI64(); + struct.records.add(_elem1439); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // TIMESTAMP if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -212850,7 +211910,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -212859,7 +211919,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -212879,18 +211939,37 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter1441 : struct.records) + { + oprot.writeI64(_iter1441); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -212912,40 +211991,58 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecord_ar } - private static class selectKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecord_argsTupleScheme getScheme() { - return new selectKeyRecord_argsTupleScheme(); + public selectRecordsTimestrOrderPage_argsTupleScheme getScheme() { + return new selectRecordsTimestrOrderPage_argsTupleScheme(); } } - private static class selectKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetRecord()) { + if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetTransaction()) { + optionals.set(5); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter1442 : struct.records) + { + oprot.writeI64(_iter1442); + } + } + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -212959,28 +212056,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list1443 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1443.size); + long _elem1444; + for (int _i1445 = 0; _i1445 < _list1443.size; ++_i1445) + { + _elem1444 = iprot.readI64(); + struct.records.add(_elem1444); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -212992,28 +212108,31 @@ private static S scheme(org.apache. } } - public static class selectKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecord_result"); + public static class selectRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectRecordsTimestrOrderPage_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectRecordsTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectRecordsTimestrOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Set success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -213037,6 +212156,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -213084,42 +212205,72 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectRecordsTimestrOrderPage_result.class, metaDataMap); } - public selectKeyRecord_result() { + public selectRecordsTimestrOrderPage_result() { } - public selectKeyRecord_result( - java.util.Set success, + public selectRecordsTimestrOrderPage_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeyRecord_result(selectKeyRecord_result other) { + public selectRecordsTimestrOrderPage_result(selectRecordsTimestrOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Set __this__success = new java.util.LinkedHashSet(other.success.size()); - for (com.cinchapi.concourse.thrift.TObject other_element : other.success) { - __this__success.add(new com.cinchapi.concourse.thrift.TObject(other_element)); + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { + + java.lang.Long other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); + + java.lang.Long __this__success_copy_key = other_element_key; + + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { + __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); + } + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } + + __this__success.put(__this__success_copy_key, __this__success_copy_value); } this.success = __this__success; } @@ -213130,13 +212281,16 @@ public selectKeyRecord_result(selectKeyRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public selectKeyRecord_result deepCopy() { - return new selectKeyRecord_result(this); + public selectRecordsTimestrOrderPage_result deepCopy() { + return new selectRecordsTimestrOrderPage_result(this); } @Override @@ -213145,30 +212299,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getSuccessIterator() { - return (this.success == null) ? null : this.success.iterator(); - } - - public void addToSuccess(com.cinchapi.concourse.thrift.TObject elem) { + public void putToSuccess(long key, java.util.Map> val) { if (this.success == null) { - this.success = new java.util.LinkedHashSet(); + this.success = new java.util.LinkedHashMap>>(); } - this.success.add(elem); + this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Set getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public selectKeyRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public selectRecordsTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -213193,7 +212343,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -213218,7 +212368,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -213239,11 +212389,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -213263,6 +212413,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public selectRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -213270,7 +212445,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Set)value); + setSuccess((java.util.Map>>)value); } break; @@ -213294,7 +212469,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -213317,6 +212500,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -213337,18 +212523,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecord_result) - return this.equals((selectKeyRecord_result)that); + if (that instanceof selectRecordsTimestrOrderPage_result) + return this.equals((selectRecordsTimestrOrderPage_result)that); return false; } - public boolean equals(selectKeyRecord_result that) { + public boolean equals(selectRecordsTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -213390,6 +212578,15 @@ public boolean equals(selectKeyRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -213413,11 +212610,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(selectKeyRecord_result other) { + public int compareTo(selectRecordsTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -213464,6 +212665,16 @@ public int compareTo(selectKeyRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -213484,7 +212695,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectRecordsTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -213518,6 +212729,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -213543,17 +212762,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecord_resultStandardScheme getScheme() { - return new selectKeyRecord_resultStandardScheme(); + public selectRecordsTimestrOrderPage_resultStandardScheme getScheme() { + return new selectRecordsTimestrOrderPage_resultStandardScheme(); } } - private static class selectKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -213564,18 +212783,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_res } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.SET) { + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TSet _set1474 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set1474.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1475; - for (int _i1476 = 0; _i1476 < _set1474.size; ++_i1476) + org.apache.thrift.protocol.TMap _map1446 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1446.size); + long _key1447; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1448; + for (int _i1449 = 0; _i1449 < _map1446.size; ++_i1449) { - _elem1475 = new com.cinchapi.concourse.thrift.TObject(); - _elem1475.read(iprot); - struct.success.add(_elem1475); + _key1447 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map1450 = iprot.readMapBegin(); + _val1448 = new java.util.LinkedHashMap>(2*_map1450.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1451; + @org.apache.thrift.annotation.Nullable java.util.Set _val1452; + for (int _i1453 = 0; _i1453 < _map1450.size; ++_i1453) + { + _key1451 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set1454 = iprot.readSetBegin(); + _val1452 = new java.util.LinkedHashSet(2*_set1454.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1455; + for (int _i1456 = 0; _i1456 < _set1454.size; ++_i1456) + { + _elem1455 = new com.cinchapi.concourse.thrift.TObject(); + _elem1455.read(iprot); + _val1452.add(_elem1455); + } + iprot.readSetEnd(); + } + _val1448.put(_key1451, _val1452); + } + iprot.readMapEnd(); + } + struct.success.put(_key1447, _val1448); } - iprot.readSetEnd(); + iprot.readMapEnd(); } struct.setSuccessIsSet(true); } else { @@ -213602,13 +212845,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_res break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -213621,19 +212873,35 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (com.cinchapi.concourse.thrift.TObject _iter1477 : struct.success) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter1457 : struct.success.entrySet()) { - _iter1477.write(oprot); + oprot.writeI64(_iter1457.getKey()); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1457.getValue().size())); + for (java.util.Map.Entry> _iter1458 : _iter1457.getValue().entrySet()) + { + oprot.writeString(_iter1458.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1458.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1459 : _iter1458.getValue()) + { + _iter1459.write(oprot); + } + oprot.writeSetEnd(); + } + } + oprot.writeMapEnd(); + } } - oprot.writeSetEnd(); + oprot.writeMapEnd(); } oprot.writeFieldEnd(); } @@ -213652,23 +212920,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecord_re struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecord_resultTupleScheme getScheme() { - return new selectKeyRecord_resultTupleScheme(); + public selectRecordsTimestrOrderPage_resultTupleScheme getScheme() { + return new selectRecordsTimestrOrderPage_resultTupleScheme(); } } - private static class selectKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -213683,13 +212956,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_res if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (com.cinchapi.concourse.thrift.TObject _iter1478 : struct.success) + for (java.util.Map.Entry>> _iter1460 : struct.success.entrySet()) { - _iter1478.write(oprot); + oprot.writeI64(_iter1460.getKey()); + { + oprot.writeI32(_iter1460.getValue().size()); + for (java.util.Map.Entry> _iter1461 : _iter1460.getValue().entrySet()) + { + oprot.writeString(_iter1461.getKey()); + { + oprot.writeI32(_iter1461.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1462 : _iter1461.getValue()) + { + _iter1462.write(oprot); + } + } + } + } } } } @@ -213702,22 +212992,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_res if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set1479 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashSet(2*_set1479.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1480; - for (int _i1481 = 0; _i1481 < _set1479.size; ++_i1481) + org.apache.thrift.protocol.TMap _map1463 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1463.size); + long _key1464; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1465; + for (int _i1466 = 0; _i1466 < _map1463.size; ++_i1466) { - _elem1480 = new com.cinchapi.concourse.thrift.TObject(); - _elem1480.read(iprot); - struct.success.add(_elem1480); + _key1464 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map1467 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1465 = new java.util.LinkedHashMap>(2*_map1467.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1468; + @org.apache.thrift.annotation.Nullable java.util.Set _val1469; + for (int _i1470 = 0; _i1470 < _map1467.size; ++_i1470) + { + _key1468 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set1471 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1469 = new java.util.LinkedHashSet(2*_set1471.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1472; + for (int _i1473 = 0; _i1473 < _set1471.size; ++_i1473) + { + _elem1472 = new com.cinchapi.concourse.thrift.TObject(); + _elem1472.read(iprot); + _val1469.add(_elem1472); + } + } + _val1465.put(_key1468, _val1469); + } + } + struct.success.put(_key1464, _val1465); } } struct.setSuccessIsSet(true); @@ -213733,10 +213048,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_resu struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -213745,22 +213065,20 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordTime_args"); + public static class selectKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecord_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -213769,10 +213087,9 @@ public static class selectKeyRecordTime_args implements org.apache.thrift.TBase< public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORD((short)2, "record"), - TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -213792,13 +213109,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORD return RECORD; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -213844,7 +213159,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -213853,8 +213167,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -213862,16 +213174,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecord_args.class, metaDataMap); } - public selectKeyRecordTime_args() { + public selectKeyRecord_args() { } - public selectKeyRecordTime_args( + public selectKeyRecord_args( java.lang.String key, long record, - long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -213880,8 +213191,6 @@ public selectKeyRecordTime_args( this.key = key; this.record = record; setRecordIsSet(true); - this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -213890,13 +213199,12 @@ public selectKeyRecordTime_args( /** * Performs a deep copy on other. */ - public selectKeyRecordTime_args(selectKeyRecordTime_args other) { + public selectKeyRecord_args(selectKeyRecord_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -213909,8 +213217,8 @@ public selectKeyRecordTime_args(selectKeyRecordTime_args other) { } @Override - public selectKeyRecordTime_args deepCopy() { - return new selectKeyRecordTime_args(this); + public selectKeyRecord_args deepCopy() { + return new selectKeyRecord_args(this); } @Override @@ -213918,8 +213226,6 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -213930,7 +213236,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -213954,7 +213260,7 @@ public long getRecord() { return this.record; } - public selectKeyRecordTime_args setRecord(long record) { + public selectKeyRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -213973,35 +213279,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getTimestamp() { - return this.timestamp; - } - - public selectKeyRecordTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -214026,7 +213309,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -214051,7 +213334,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -214090,14 +213373,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -214135,9 +213410,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case TIMESTAMP: - return getTimestamp(); - case CREDS: return getCreds(); @@ -214163,8 +213435,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORD: return isSetRecord(); - case TIMESTAMP: - return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -214177,12 +213447,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordTime_args) - return this.equals((selectKeyRecordTime_args)that); + if (that instanceof selectKeyRecord_args) + return this.equals((selectKeyRecord_args)that); return false; } - public boolean equals(selectKeyRecordTime_args that) { + public boolean equals(selectKeyRecord_args that) { if (that == null) return false; if (this == that) @@ -214206,15 +213476,6 @@ public boolean equals(selectKeyRecordTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -214255,8 +213516,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -214273,7 +213532,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordTime_args other) { + public int compareTo(selectKeyRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -214300,16 +213559,6 @@ public int compareTo(selectKeyRecordTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -214361,7 +213610,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecord_args("); boolean first = true; sb.append("key:"); @@ -214376,10 +213625,6 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -214436,17 +213681,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordTime_argsStandardScheme getScheme() { - return new selectKeyRecordTime_argsStandardScheme(); + public selectKeyRecord_argsStandardScheme getScheme() { + return new selectKeyRecord_argsStandardScheme(); } } - private static class selectKeyRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -214472,15 +213717,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -214489,7 +213726,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -214498,7 +213735,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -214518,7 +213755,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -214530,9 +213767,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTim oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -214554,17 +213788,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTim } - private static class selectKeyRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordTime_argsTupleScheme getScheme() { - return new selectKeyRecordTime_argsTupleScheme(); + public selectKeyRecord_argsTupleScheme getScheme() { + return new selectKeyRecord_argsTupleScheme(); } } - private static class selectKeyRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -214573,28 +213807,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetTimestamp()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -214607,9 +213835,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -214619,20 +213847,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_ struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -214644,16 +213868,16 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordTime_result"); + public static class selectKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecord_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -214745,13 +213969,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecord_result.class, metaDataMap); } - public selectKeyRecordTime_result() { + public selectKeyRecord_result() { } - public selectKeyRecordTime_result( + public selectKeyRecord_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -214767,7 +213991,7 @@ public selectKeyRecordTime_result( /** * Performs a deep copy on other. */ - public selectKeyRecordTime_result(selectKeyRecordTime_result other) { + public selectKeyRecord_result(selectKeyRecord_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success.size()); for (com.cinchapi.concourse.thrift.TObject other_element : other.success) { @@ -214787,8 +214011,8 @@ public selectKeyRecordTime_result(selectKeyRecordTime_result other) { } @Override - public selectKeyRecordTime_result deepCopy() { - return new selectKeyRecordTime_result(this); + public selectKeyRecord_result deepCopy() { + return new selectKeyRecord_result(this); } @Override @@ -214820,7 +214044,7 @@ public java.util.Set getSuccess() { return this.success; } - public selectKeyRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public selectKeyRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -214845,7 +214069,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -214870,7 +214094,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -214895,7 +214119,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -214995,12 +214219,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordTime_result) - return this.equals((selectKeyRecordTime_result)that); + if (that instanceof selectKeyRecord_result) + return this.equals((selectKeyRecord_result)that); return false; } - public boolean equals(selectKeyRecordTime_result that) { + public boolean equals(selectKeyRecord_result that) { if (that == null) return false; if (this == that) @@ -215069,7 +214293,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordTime_result other) { + public int compareTo(selectKeyRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -215136,7 +214360,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecord_result("); boolean first = true; sb.append("success:"); @@ -215195,17 +214419,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordTime_resultStandardScheme getScheme() { - return new selectKeyRecordTime_resultStandardScheme(); + public selectKeyRecord_resultStandardScheme getScheme() { + return new selectKeyRecord_resultStandardScheme(); } } - private static class selectKeyRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -215218,14 +214442,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set1482 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set1482.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1483; - for (int _i1484 = 0; _i1484 < _set1482.size; ++_i1484) + org.apache.thrift.protocol.TSet _set1474 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set1474.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1475; + for (int _i1476 = 0; _i1476 < _set1474.size; ++_i1476) { - _elem1483 = new com.cinchapi.concourse.thrift.TObject(); - _elem1483.read(iprot); - struct.success.add(_elem1483); + _elem1475 = new com.cinchapi.concourse.thrift.TObject(); + _elem1475.read(iprot); + struct.success.add(_elem1475); } iprot.readSetEnd(); } @@ -215273,7 +214497,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -215281,9 +214505,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (com.cinchapi.concourse.thrift.TObject _iter1485 : struct.success) + for (com.cinchapi.concourse.thrift.TObject _iter1477 : struct.success) { - _iter1485.write(oprot); + _iter1477.write(oprot); } oprot.writeSetEnd(); } @@ -215310,17 +214534,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTim } - private static class selectKeyRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordTime_resultTupleScheme getScheme() { - return new selectKeyRecordTime_resultTupleScheme(); + public selectKeyRecord_resultTupleScheme getScheme() { + return new selectKeyRecord_resultTupleScheme(); } } - private static class selectKeyRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -215339,9 +214563,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (com.cinchapi.concourse.thrift.TObject _iter1486 : struct.success) + for (com.cinchapi.concourse.thrift.TObject _iter1478 : struct.success) { - _iter1486.write(oprot); + _iter1478.write(oprot); } } } @@ -215357,19 +214581,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set1487 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashSet(2*_set1487.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1488; - for (int _i1489 = 0; _i1489 < _set1487.size; ++_i1489) + org.apache.thrift.protocol.TSet _set1479 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashSet(2*_set1479.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1480; + for (int _i1481 = 0; _i1481 < _set1479.size; ++_i1481) { - _elem1488 = new com.cinchapi.concourse.thrift.TObject(); - _elem1488.read(iprot); - struct.success.add(_elem1488); + _elem1480 = new com.cinchapi.concourse.thrift.TObject(); + _elem1480.read(iprot); + struct.success.add(_elem1480); } } struct.setSuccessIsSet(true); @@ -215397,22 +214621,22 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordTimestr_args"); + public static class selectKeyRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -215496,6 +214720,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -215505,7 +214730,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -215513,16 +214738,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordTime_args.class, metaDataMap); } - public selectKeyRecordTimestr_args() { + public selectKeyRecordTime_args() { } - public selectKeyRecordTimestr_args( + public selectKeyRecordTime_args( java.lang.String key, long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -215532,6 +214757,7 @@ public selectKeyRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -215540,15 +214766,13 @@ public selectKeyRecordTimestr_args( /** * Performs a deep copy on other. */ - public selectKeyRecordTimestr_args(selectKeyRecordTimestr_args other) { + public selectKeyRecordTime_args(selectKeyRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -215561,8 +214785,8 @@ public selectKeyRecordTimestr_args(selectKeyRecordTimestr_args other) { } @Override - public selectKeyRecordTimestr_args deepCopy() { - return new selectKeyRecordTimestr_args(this); + public selectKeyRecordTime_args deepCopy() { + return new selectKeyRecordTime_args(this); } @Override @@ -215570,7 +214794,8 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -215581,7 +214806,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -215605,7 +214830,7 @@ public long getRecord() { return this.record; } - public selectKeyRecordTimestr_args setRecord(long record) { + public selectKeyRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -215624,29 +214849,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public selectKeyRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeyRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -215654,7 +214877,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -215679,7 +214902,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -215704,7 +214927,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -215747,7 +214970,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -215830,12 +215053,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordTimestr_args) - return this.equals((selectKeyRecordTimestr_args)that); + if (that instanceof selectKeyRecordTime_args) + return this.equals((selectKeyRecordTime_args)that); return false; } - public boolean equals(selectKeyRecordTimestr_args that) { + public boolean equals(selectKeyRecordTime_args that) { if (that == null) return false; if (this == that) @@ -215859,12 +215082,12 @@ public boolean equals(selectKeyRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -215908,9 +215131,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -215928,7 +215149,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordTimestr_args other) { + public int compareTo(selectKeyRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -216016,7 +215237,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordTime_args("); boolean first = true; sb.append("key:"); @@ -216032,11 +215253,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -216095,17 +215312,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordTimestr_argsStandardScheme getScheme() { - return new selectKeyRecordTimestr_argsStandardScheme(); + public selectKeyRecordTime_argsStandardScheme getScheme() { + return new selectKeyRecordTime_argsStandardScheme(); } } - private static class selectKeyRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -216132,8 +215349,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -216177,7 +215394,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -216189,11 +215406,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTim oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -216215,17 +215430,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTim } - private static class selectKeyRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordTimestr_argsTupleScheme getScheme() { - return new selectKeyRecordTimestr_argsTupleScheme(); + public selectKeyRecordTime_argsTupleScheme getScheme() { + return new selectKeyRecordTime_argsTupleScheme(); } } - private static class selectKeyRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -216254,7 +215469,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -216268,7 +215483,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -216280,7 +215495,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimes struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -216305,31 +215520,28 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordTimestr_result"); + public static class selectKeyRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -216353,8 +215565,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -216409,35 +215619,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordTime_result.class, metaDataMap); } - public selectKeyRecordTimestr_result() { + public selectKeyRecordTime_result() { } - public selectKeyRecordTimestr_result( + public selectKeyRecordTime_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeyRecordTimestr_result(selectKeyRecordTimestr_result other) { + public selectKeyRecordTime_result(selectKeyRecordTime_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success.size()); for (com.cinchapi.concourse.thrift.TObject other_element : other.success) { @@ -216452,16 +215658,13 @@ public selectKeyRecordTimestr_result(selectKeyRecordTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectKeyRecordTimestr_result deepCopy() { - return new selectKeyRecordTimestr_result(this); + public selectKeyRecordTime_result deepCopy() { + return new selectKeyRecordTime_result(this); } @Override @@ -216470,7 +215673,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -216494,7 +215696,7 @@ public java.util.Set getSuccess() { return this.success; } - public selectKeyRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public selectKeyRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -216519,7 +215721,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -216544,7 +215746,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -216565,11 +215767,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeyRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -216589,31 +215791,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectKeyRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -216645,15 +215822,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -216676,9 +215845,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -216699,20 +215865,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordTimestr_result) - return this.equals((selectKeyRecordTimestr_result)that); + if (that instanceof selectKeyRecordTime_result) + return this.equals((selectKeyRecordTime_result)that); return false; } - public boolean equals(selectKeyRecordTimestr_result that) { + public boolean equals(selectKeyRecordTime_result that) { if (that == null) return false; if (this == that) @@ -216754,15 +215918,6 @@ public boolean equals(selectKeyRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -216786,15 +215941,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectKeyRecordTimestr_result other) { + public int compareTo(selectKeyRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -216841,16 +215992,6 @@ public int compareTo(selectKeyRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -216871,7 +216012,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordTime_result("); boolean first = true; sb.append("success:"); @@ -216905,14 +216046,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -216938,17 +216071,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordTimestr_resultStandardScheme getScheme() { - return new selectKeyRecordTimestr_resultStandardScheme(); + public selectKeyRecordTime_resultStandardScheme getScheme() { + return new selectKeyRecordTime_resultStandardScheme(); } } - private static class selectKeyRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -216961,14 +216094,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set1490 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set1490.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1491; - for (int _i1492 = 0; _i1492 < _set1490.size; ++_i1492) + org.apache.thrift.protocol.TSet _set1482 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set1482.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1483; + for (int _i1484 = 0; _i1484 < _set1482.size; ++_i1484) { - _elem1491 = new com.cinchapi.concourse.thrift.TObject(); - _elem1491.read(iprot); - struct.success.add(_elem1491); + _elem1483 = new com.cinchapi.concourse.thrift.TObject(); + _elem1483.read(iprot); + struct.success.add(_elem1483); } iprot.readSetEnd(); } @@ -216997,22 +216130,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -217025,7 +216149,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -217033,9 +216157,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (com.cinchapi.concourse.thrift.TObject _iter1493 : struct.success) + for (com.cinchapi.concourse.thrift.TObject _iter1485 : struct.success) { - _iter1493.write(oprot); + _iter1485.write(oprot); } oprot.writeSetEnd(); } @@ -217056,28 +216180,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTim struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeyRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordTimestr_resultTupleScheme getScheme() { - return new selectKeyRecordTimestr_resultTupleScheme(); + public selectKeyRecordTime_resultTupleScheme getScheme() { + return new selectKeyRecordTime_resultTupleScheme(); } } - private static class selectKeyRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -217092,16 +216211,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (com.cinchapi.concourse.thrift.TObject _iter1494 : struct.success) + for (com.cinchapi.concourse.thrift.TObject _iter1486 : struct.success) { - _iter1494.write(oprot); + _iter1486.write(oprot); } } } @@ -217114,25 +216230,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set1495 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashSet(2*_set1495.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1496; - for (int _i1497 = 0; _i1497 < _set1495.size; ++_i1497) + org.apache.thrift.protocol.TSet _set1487 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashSet(2*_set1487.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1488; + for (int _i1489 = 0; _i1489 < _set1487.size; ++_i1489) { - _elem1496 = new com.cinchapi.concourse.thrift.TObject(); - _elem1496.read(iprot); - struct.success.add(_elem1496); + _elem1488 = new com.cinchapi.concourse.thrift.TObject(); + _elem1488.read(iprot); + struct.success.add(_elem1488); } } struct.setSuccessIsSet(true); @@ -217148,15 +216261,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimes struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -217165,31 +216273,34 @@ private static S scheme(org.apache. } } - public static class selectKeysRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecord_args"); + public static class selectKeyRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordTimestr_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEYS((short)1, "keys"), + KEY((short)1, "key"), RECORD((short)2, "record"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + TIMESTAMP((short)3, "timestamp"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -217205,15 +216316,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEYS - return KEYS; + case 1: // KEY + return KEY; case 2: // RECORD return RECORD; - case 3: // CREDS + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -217263,11 +216376,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -217275,23 +216389,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordTimestr_args.class, metaDataMap); } - public selectKeysRecord_args() { + public selectKeyRecordTimestr_args() { } - public selectKeysRecord_args( - java.util.List keys, + public selectKeyRecordTimestr_args( + java.lang.String key, long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; + this.key = key; this.record = record; setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -217300,13 +216416,15 @@ public selectKeysRecord_args( /** * Performs a deep copy on other. */ - public selectKeysRecord_args(selectKeysRecord_args other) { + public selectKeyRecordTimestr_args(selectKeyRecordTimestr_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + if (other.isSetKey()) { + this.key = other.key; } this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -217319,58 +216437,43 @@ public selectKeysRecord_args(selectKeysRecord_args other) { } @Override - public selectKeysRecord_args deepCopy() { - return new selectKeysRecord_args(this); + public selectKeyRecordTimestr_args deepCopy() { + return new selectKeyRecordTimestr_args(this); } @Override public void clear() { - this.keys = null; + this.key = null; setRecordIsSet(false); this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public selectKeysRecord_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public selectKeyRecordTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; + this.key = null; } } @@ -217378,7 +216481,7 @@ public long getRecord() { return this.record; } - public selectKeysRecord_args setRecord(long record) { + public selectKeyRecordTimestr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -217397,12 +216500,37 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public selectKeyRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -217427,7 +216555,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -217452,7 +216580,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -217475,11 +216603,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; @@ -217491,6 +216619,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -217522,12 +216658,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); case RECORD: return getRecord(); + case TIMESTAMP: + return getTimestamp(); + case CREDS: return getCreds(); @@ -217549,10 +216688,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); + case KEY: + return isSetKey(); case RECORD: return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -217565,23 +216706,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecord_args) - return this.equals((selectKeysRecord_args)that); + if (that instanceof selectKeyRecordTimestr_args) + return this.equals((selectKeyRecordTimestr_args)that); return false; } - public boolean equals(selectKeysRecord_args that) { + public boolean equals(selectKeyRecordTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } @@ -217594,6 +216735,15 @@ public boolean equals(selectKeysRecord_args that) { return false; } + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -217628,12 +216778,16 @@ public boolean equals(selectKeysRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -217650,19 +216804,19 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecord_args other) { + public int compareTo(selectKeyRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } @@ -217677,6 +216831,16 @@ public int compareTo(selectKeysRecord_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -217728,14 +216892,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordTimestr_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); @@ -217743,6 +216907,14 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -217799,17 +216971,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecord_argsStandardScheme getScheme() { - return new selectKeysRecord_argsStandardScheme(); + public selectKeyRecordTimestr_argsStandardScheme getScheme() { + return new selectKeyRecordTimestr_argsStandardScheme(); } } - private static class selectKeysRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -217819,20 +216991,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_ar break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list1498 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list1498.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1499; - for (int _i1500 = 0; _i1500 < _list1498.size; ++_i1500) - { - _elem1499 = iprot.readString(); - struct.keys.add(_elem1499); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -217845,7 +217007,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -217854,7 +217024,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -217863,7 +217033,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -217883,25 +217053,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter1501 : struct.keys) - { - oprot.writeString(_iter1501); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -217923,47 +217091,47 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecord_a } - private static class selectKeysRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecord_argsTupleScheme getScheme() { - return new selectKeysRecord_argsTupleScheme(); + public selectKeyRecordTimestr_argsTupleScheme getScheme() { + return new selectKeyRecordTimestr_argsTupleScheme(); } } - private static class selectKeysRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter1502 : struct.keys) - { - oprot.writeString(_iter1502); - } - } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetKey()) { + oprot.writeString(struct.key); } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -217976,37 +217144,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list1503 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list1503.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1504; - for (int _i1505 = 0; _i1505 < _list1503.size; ++_i1505) - { - _elem1504 = iprot.readString(); - struct.keys.add(_elem1504); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -218018,28 +217181,31 @@ private static S scheme(org.apache. } } - public static class selectKeysRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecord_result"); + public static class selectKeyRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordTimestr_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -218063,6 +217229,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -218110,55 +217278,46 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordTimestr_result.class, metaDataMap); } - public selectKeysRecord_result() { + public selectKeyRecordTimestr_result() { } - public selectKeysRecord_result( - java.util.Map> success, + public selectKeyRecordTimestr_result( + java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeysRecord_result(selectKeysRecord_result other) { + public selectKeyRecordTimestr_result(selectKeyRecordTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { - - java.lang.String other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); - - java.lang.String __this__success_copy_key = other_element_key; - - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { - __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); - } - - __this__success.put(__this__success_copy_key, __this__success_copy_value); + java.util.Set __this__success = new java.util.LinkedHashSet(other.success.size()); + for (com.cinchapi.concourse.thrift.TObject other_element : other.success) { + __this__success.add(new com.cinchapi.concourse.thrift.TObject(other_element)); } this.success = __this__success; } @@ -218169,13 +217328,16 @@ public selectKeysRecord_result(selectKeysRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public selectKeysRecord_result deepCopy() { - return new selectKeysRecord_result(this); + public selectKeyRecordTimestr_result deepCopy() { + return new selectKeyRecordTimestr_result(this); } @Override @@ -218184,25 +217346,31 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.lang.String key, java.util.Set val) { + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(com.cinchapi.concourse.thrift.TObject elem) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashSet(); } - this.success.put(key, val); + this.success.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Set getSuccess() { return this.success; } - public selectKeysRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public selectKeyRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -218227,7 +217395,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -218252,7 +217420,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -218273,11 +217441,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -218297,6 +217465,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public selectKeyRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -218304,7 +217497,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Set)value); } break; @@ -218328,7 +217521,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -218351,6 +217552,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -218371,18 +217575,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecord_result) - return this.equals((selectKeysRecord_result)that); + if (that instanceof selectKeyRecordTimestr_result) + return this.equals((selectKeyRecordTimestr_result)that); return false; } - public boolean equals(selectKeysRecord_result that) { + public boolean equals(selectKeyRecordTimestr_result that) { if (that == null) return false; if (this == that) @@ -218424,6 +217630,15 @@ public boolean equals(selectKeysRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -218447,11 +217662,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(selectKeysRecord_result other) { + public int compareTo(selectKeyRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -218498,6 +217717,16 @@ public int compareTo(selectKeysRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -218518,7 +217747,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordTimestr_result("); boolean first = true; sb.append("success:"); @@ -218552,6 +217781,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -218577,17 +217814,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecord_resultStandardScheme getScheme() { - return new selectKeysRecord_resultStandardScheme(); + public selectKeyRecordTimestr_resultStandardScheme getScheme() { + return new selectKeyRecordTimestr_resultStandardScheme(); } } - private static class selectKeysRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -218598,30 +217835,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_re } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TMap _map1506 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1506.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1507; - @org.apache.thrift.annotation.Nullable java.util.Set _val1508; - for (int _i1509 = 0; _i1509 < _map1506.size; ++_i1509) + org.apache.thrift.protocol.TSet _set1490 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set1490.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1491; + for (int _i1492 = 0; _i1492 < _set1490.size; ++_i1492) { - _key1507 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1510 = iprot.readSetBegin(); - _val1508 = new java.util.LinkedHashSet(2*_set1510.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1511; - for (int _i1512 = 0; _i1512 < _set1510.size; ++_i1512) - { - _elem1511 = new com.cinchapi.concourse.thrift.TObject(); - _elem1511.read(iprot); - _val1508.add(_elem1511); - } - iprot.readSetEnd(); - } - struct.success.put(_key1507, _val1508); + _elem1491 = new com.cinchapi.concourse.thrift.TObject(); + _elem1491.read(iprot); + struct.success.add(_elem1491); } - iprot.readMapEnd(); + iprot.readSetEnd(); } struct.setSuccessIsSet(true); } else { @@ -218648,13 +217873,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_re break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -218667,27 +217901,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1513 : struct.success.entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); + for (com.cinchapi.concourse.thrift.TObject _iter1493 : struct.success) { - oprot.writeString(_iter1513.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1513.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1514 : _iter1513.getValue()) - { - _iter1514.write(oprot); - } - oprot.writeSetEnd(); - } + _iter1493.write(oprot); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } oprot.writeFieldEnd(); } @@ -218706,23 +217932,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecord_r struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeysRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecord_resultTupleScheme getScheme() { - return new selectKeysRecord_resultTupleScheme(); + public selectKeyRecordTimestr_resultTupleScheme getScheme() { + return new selectKeyRecordTimestr_resultTupleScheme(); } } - private static class selectKeysRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -218737,20 +217968,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_re if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1515 : struct.success.entrySet()) + for (com.cinchapi.concourse.thrift.TObject _iter1494 : struct.success) { - oprot.writeString(_iter1515.getKey()); - { - oprot.writeI32(_iter1515.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1516 : _iter1515.getValue()) - { - _iter1516.write(oprot); - } - } + _iter1494.write(oprot); } } } @@ -218763,33 +217990,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_re if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1517 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1517.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1518; - @org.apache.thrift.annotation.Nullable java.util.Set _val1519; - for (int _i1520 = 0; _i1520 < _map1517.size; ++_i1520) + org.apache.thrift.protocol.TSet _set1495 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashSet(2*_set1495.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1496; + for (int _i1497 = 0; _i1497 < _set1495.size; ++_i1497) { - _key1518 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1521 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1519 = new java.util.LinkedHashSet(2*_set1521.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1522; - for (int _i1523 = 0; _i1523 < _set1521.size; ++_i1523) - { - _elem1522 = new com.cinchapi.concourse.thrift.TObject(); - _elem1522.read(iprot); - _val1519.add(_elem1522); - } - } - struct.success.put(_key1518, _val1519); + _elem1496 = new com.cinchapi.concourse.thrift.TObject(); + _elem1496.read(iprot); + struct.success.add(_elem1496); } } struct.setSuccessIsSet(true); @@ -218805,10 +218024,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_res struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -218817,22 +218041,20 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordTime_args"); + public static class selectKeysRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecord_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public long record; // required - public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -218841,10 +218063,9 @@ public static class selectKeysRecordTime_args implements org.apache.thrift.TBase public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORD((short)2, "record"), - TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -218864,13 +218085,11 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // RECORD return RECORD; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -218916,7 +218135,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -218926,8 +218144,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -218935,16 +218151,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecord_args.class, metaDataMap); } - public selectKeysRecordTime_args() { + public selectKeysRecord_args() { } - public selectKeysRecordTime_args( + public selectKeysRecord_args( java.util.List keys, long record, - long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -218953,8 +218168,6 @@ public selectKeysRecordTime_args( this.keys = keys; this.record = record; setRecordIsSet(true); - this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -218963,14 +218176,13 @@ public selectKeysRecordTime_args( /** * Performs a deep copy on other. */ - public selectKeysRecordTime_args(selectKeysRecordTime_args other) { + public selectKeysRecord_args(selectKeysRecord_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } this.record = other.record; - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -218983,8 +218195,8 @@ public selectKeysRecordTime_args(selectKeysRecordTime_args other) { } @Override - public selectKeysRecordTime_args deepCopy() { - return new selectKeysRecordTime_args(this); + public selectKeysRecord_args deepCopy() { + return new selectKeysRecord_args(this); } @Override @@ -218992,8 +218204,6 @@ public void clear() { this.keys = null; setRecordIsSet(false); this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -219020,7 +218230,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecord_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -219044,7 +218254,7 @@ public long getRecord() { return this.record; } - public selectKeysRecordTime_args setRecord(long record) { + public selectKeysRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -219063,35 +218273,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getTimestamp() { - return this.timestamp; - } - - public selectKeysRecordTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -219116,7 +218303,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -219141,7 +218328,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -219180,14 +218367,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -219225,9 +218404,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case TIMESTAMP: - return getTimestamp(); - case CREDS: return getCreds(); @@ -219253,8 +218429,6 @@ public boolean isSet(_Fields field) { return isSetKeys(); case RECORD: return isSetRecord(); - case TIMESTAMP: - return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -219267,12 +218441,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordTime_args) - return this.equals((selectKeysRecordTime_args)that); + if (that instanceof selectKeysRecord_args) + return this.equals((selectKeysRecord_args)that); return false; } - public boolean equals(selectKeysRecordTime_args that) { + public boolean equals(selectKeysRecord_args that) { if (that == null) return false; if (this == that) @@ -219296,15 +218470,6 @@ public boolean equals(selectKeysRecordTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -219345,8 +218510,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -219363,7 +218526,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordTime_args other) { + public int compareTo(selectKeysRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -219390,16 +218553,6 @@ public int compareTo(selectKeysRecordTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -219451,7 +218604,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecord_args("); boolean first = true; sb.append("keys:"); @@ -219466,10 +218619,6 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -219526,17 +218675,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordTime_argsStandardScheme getScheme() { - return new selectKeysRecordTime_argsStandardScheme(); + public selectKeysRecord_argsStandardScheme getScheme() { + return new selectKeysRecord_argsStandardScheme(); } } - private static class selectKeysRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -219549,13 +218698,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1524 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list1524.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1525; - for (int _i1526 = 0; _i1526 < _list1524.size; ++_i1526) + org.apache.thrift.protocol.TList _list1498 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list1498.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1499; + for (int _i1500 = 0; _i1500 < _list1498.size; ++_i1500) { - _elem1525 = iprot.readString(); - struct.keys.add(_elem1525); + _elem1499 = iprot.readString(); + struct.keys.add(_elem1499); } iprot.readListEnd(); } @@ -219572,15 +218721,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -219589,7 +218730,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -219598,7 +218739,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -219618,7 +218759,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -219626,9 +218767,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter1527 : struct.keys) + for (java.lang.String _iter1501 : struct.keys) { - oprot.writeString(_iter1527); + oprot.writeString(_iter1501); } oprot.writeListEnd(); } @@ -219637,9 +218778,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -219661,17 +218799,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi } - private static class selectKeysRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordTime_argsTupleScheme getScheme() { - return new selectKeysRecordTime_argsTupleScheme(); + public selectKeysRecord_argsTupleScheme getScheme() { + return new selectKeysRecord_argsTupleScheme(); } } - private static class selectKeysRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -219680,34 +218818,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetTimestamp()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter1528 : struct.keys) + for (java.lang.String _iter1502 : struct.keys) { - oprot.writeString(_iter1528); + oprot.writeString(_iter1502); } } } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -219720,18 +218852,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1529 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list1529.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1530; - for (int _i1531 = 0; _i1531 < _list1529.size; ++_i1531) + org.apache.thrift.protocol.TList _list1503 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list1503.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1504; + for (int _i1505 = 0; _i1505 < _list1503.size; ++_i1505) { - _elem1530 = iprot.readString(); - struct.keys.add(_elem1530); + _elem1504 = iprot.readString(); + struct.keys.add(_elem1504); } } struct.setKeysIsSet(true); @@ -219741,20 +218873,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -219766,16 +218894,16 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordTime_result"); + public static class selectKeysRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecord_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -219869,13 +218997,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecord_result.class, metaDataMap); } - public selectKeysRecordTime_result() { + public selectKeysRecord_result() { } - public selectKeysRecordTime_result( + public selectKeysRecord_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -219891,7 +219019,7 @@ public selectKeysRecordTime_result( /** * Performs a deep copy on other. */ - public selectKeysRecordTime_result(selectKeysRecordTime_result other) { + public selectKeysRecord_result(selectKeysRecord_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -219922,8 +219050,8 @@ public selectKeysRecordTime_result(selectKeysRecordTime_result other) { } @Override - public selectKeysRecordTime_result deepCopy() { - return new selectKeysRecordTime_result(this); + public selectKeysRecord_result deepCopy() { + return new selectKeysRecord_result(this); } @Override @@ -219950,7 +219078,7 @@ public java.util.Map> success) { + public selectKeysRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -219975,7 +219103,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -220000,7 +219128,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -220025,7 +219153,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -220125,12 +219253,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordTime_result) - return this.equals((selectKeysRecordTime_result)that); + if (that instanceof selectKeysRecord_result) + return this.equals((selectKeysRecord_result)that); return false; } - public boolean equals(selectKeysRecordTime_result that) { + public boolean equals(selectKeysRecord_result that) { if (that == null) return false; if (this == that) @@ -220199,7 +219327,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordTime_result other) { + public int compareTo(selectKeysRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -220266,7 +219394,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecord_result("); boolean first = true; sb.append("success:"); @@ -220325,17 +219453,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordTime_resultStandardScheme getScheme() { - return new selectKeysRecordTime_resultStandardScheme(); + public selectKeysRecord_resultStandardScheme getScheme() { + return new selectKeysRecord_resultStandardScheme(); } } - private static class selectKeysRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -220348,26 +219476,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1532 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1532.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1533; - @org.apache.thrift.annotation.Nullable java.util.Set _val1534; - for (int _i1535 = 0; _i1535 < _map1532.size; ++_i1535) + org.apache.thrift.protocol.TMap _map1506 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1506.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1507; + @org.apache.thrift.annotation.Nullable java.util.Set _val1508; + for (int _i1509 = 0; _i1509 < _map1506.size; ++_i1509) { - _key1533 = iprot.readString(); + _key1507 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1536 = iprot.readSetBegin(); - _val1534 = new java.util.LinkedHashSet(2*_set1536.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1537; - for (int _i1538 = 0; _i1538 < _set1536.size; ++_i1538) + org.apache.thrift.protocol.TSet _set1510 = iprot.readSetBegin(); + _val1508 = new java.util.LinkedHashSet(2*_set1510.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1511; + for (int _i1512 = 0; _i1512 < _set1510.size; ++_i1512) { - _elem1537 = new com.cinchapi.concourse.thrift.TObject(); - _elem1537.read(iprot); - _val1534.add(_elem1537); + _elem1511 = new com.cinchapi.concourse.thrift.TObject(); + _elem1511.read(iprot); + _val1508.add(_elem1511); } iprot.readSetEnd(); } - struct.success.put(_key1533, _val1534); + struct.success.put(_key1507, _val1508); } iprot.readMapEnd(); } @@ -220415,7 +219543,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -220423,14 +219551,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1539 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1513 : struct.success.entrySet()) { - oprot.writeString(_iter1539.getKey()); + oprot.writeString(_iter1513.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1539.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1540 : _iter1539.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1513.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1514 : _iter1513.getValue()) { - _iter1540.write(oprot); + _iter1514.write(oprot); } oprot.writeSetEnd(); } @@ -220460,17 +219588,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi } - private static class selectKeysRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordTime_resultTupleScheme getScheme() { - return new selectKeysRecordTime_resultTupleScheme(); + public selectKeysRecord_resultTupleScheme getScheme() { + return new selectKeysRecord_resultTupleScheme(); } } - private static class selectKeysRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -220489,14 +219617,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1541 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1515 : struct.success.entrySet()) { - oprot.writeString(_iter1541.getKey()); + oprot.writeString(_iter1515.getKey()); { - oprot.writeI32(_iter1541.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1542 : _iter1541.getValue()) + oprot.writeI32(_iter1515.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1516 : _iter1515.getValue()) { - _iter1542.write(oprot); + _iter1516.write(oprot); } } } @@ -220514,30 +219642,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1543 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1543.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1544; - @org.apache.thrift.annotation.Nullable java.util.Set _val1545; - for (int _i1546 = 0; _i1546 < _map1543.size; ++_i1546) + org.apache.thrift.protocol.TMap _map1517 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1517.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1518; + @org.apache.thrift.annotation.Nullable java.util.Set _val1519; + for (int _i1520 = 0; _i1520 < _map1517.size; ++_i1520) { - _key1544 = iprot.readString(); + _key1518 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1547 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1545 = new java.util.LinkedHashSet(2*_set1547.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1548; - for (int _i1549 = 0; _i1549 < _set1547.size; ++_i1549) + org.apache.thrift.protocol.TSet _set1521 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1519 = new java.util.LinkedHashSet(2*_set1521.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1522; + for (int _i1523 = 0; _i1523 < _set1521.size; ++_i1523) { - _elem1548 = new com.cinchapi.concourse.thrift.TObject(); - _elem1548.read(iprot); - _val1545.add(_elem1548); + _elem1522 = new com.cinchapi.concourse.thrift.TObject(); + _elem1522.read(iprot); + _val1519.add(_elem1522); } } - struct.success.put(_key1544, _val1545); + struct.success.put(_key1518, _val1519); } } struct.setSuccessIsSet(true); @@ -220565,22 +219693,22 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordTimestr_args"); + public static class selectKeysRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -220664,6 +219792,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -220674,7 +219803,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -220682,16 +219811,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordTime_args.class, metaDataMap); } - public selectKeysRecordTimestr_args() { + public selectKeysRecordTime_args() { } - public selectKeysRecordTimestr_args( + public selectKeysRecordTime_args( java.util.List keys, long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -220701,6 +219830,7 @@ public selectKeysRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -220709,16 +219839,14 @@ public selectKeysRecordTimestr_args( /** * Performs a deep copy on other. */ - public selectKeysRecordTimestr_args(selectKeysRecordTimestr_args other) { + public selectKeysRecordTime_args(selectKeysRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -220731,8 +219859,8 @@ public selectKeysRecordTimestr_args(selectKeysRecordTimestr_args other) { } @Override - public selectKeysRecordTimestr_args deepCopy() { - return new selectKeysRecordTimestr_args(this); + public selectKeysRecordTime_args deepCopy() { + return new selectKeysRecordTime_args(this); } @Override @@ -220740,7 +219868,8 @@ public void clear() { this.keys = null; setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -220767,7 +219896,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -220791,7 +219920,7 @@ public long getRecord() { return this.record; } - public selectKeysRecordTimestr_args setRecord(long record) { + public selectKeysRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -220810,29 +219939,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public selectKeysRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -220840,7 +219967,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -220865,7 +219992,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -220890,7 +220017,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -220933,7 +220060,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -221016,12 +220143,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordTimestr_args) - return this.equals((selectKeysRecordTimestr_args)that); + if (that instanceof selectKeysRecordTime_args) + return this.equals((selectKeysRecordTime_args)that); return false; } - public boolean equals(selectKeysRecordTimestr_args that) { + public boolean equals(selectKeysRecordTime_args that) { if (that == null) return false; if (this == that) @@ -221045,12 +220172,12 @@ public boolean equals(selectKeysRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -221094,9 +220221,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -221114,7 +220239,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordTimestr_args other) { + public int compareTo(selectKeysRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -221202,7 +220327,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordTime_args("); boolean first = true; sb.append("keys:"); @@ -221218,11 +220343,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -221281,17 +220402,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordTimestr_argsStandardScheme getScheme() { - return new selectKeysRecordTimestr_argsStandardScheme(); + public selectKeysRecordTime_argsStandardScheme getScheme() { + return new selectKeysRecordTime_argsStandardScheme(); } } - private static class selectKeysRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -221304,13 +220425,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1550 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list1550.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1551; - for (int _i1552 = 0; _i1552 < _list1550.size; ++_i1552) + org.apache.thrift.protocol.TList _list1524 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list1524.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1525; + for (int _i1526 = 0; _i1526 < _list1524.size; ++_i1526) { - _elem1551 = iprot.readString(); - struct.keys.add(_elem1551); + _elem1525 = iprot.readString(); + struct.keys.add(_elem1525); } iprot.readListEnd(); } @@ -221328,8 +220449,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -221373,7 +220494,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -221381,9 +220502,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter1553 : struct.keys) + for (java.lang.String _iter1527 : struct.keys) { - oprot.writeString(_iter1553); + oprot.writeString(_iter1527); } oprot.writeListEnd(); } @@ -221392,11 +220513,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -221418,17 +220537,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi } - private static class selectKeysRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordTimestr_argsTupleScheme getScheme() { - return new selectKeysRecordTimestr_argsTupleScheme(); + public selectKeysRecordTime_argsTupleScheme getScheme() { + return new selectKeysRecordTime_argsTupleScheme(); } } - private static class selectKeysRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -221453,9 +220572,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter1554 : struct.keys) + for (java.lang.String _iter1528 : struct.keys) { - oprot.writeString(_iter1554); + oprot.writeString(_iter1528); } } } @@ -221463,7 +220582,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -221477,18 +220596,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1555 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list1555.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1556; - for (int _i1557 = 0; _i1557 < _list1555.size; ++_i1557) + org.apache.thrift.protocol.TList _list1529 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list1529.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1530; + for (int _i1531 = 0; _i1531 < _list1529.size; ++_i1531) { - _elem1556 = iprot.readString(); - struct.keys.add(_elem1556); + _elem1530 = iprot.readString(); + struct.keys.add(_elem1530); } } struct.setKeysIsSet(true); @@ -221498,7 +220617,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -221523,31 +220642,28 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordTimestr_result"); + public static class selectKeysRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -221571,8 +220687,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -221629,35 +220743,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordTime_result.class, metaDataMap); } - public selectKeysRecordTimestr_result() { + public selectKeysRecordTime_result() { } - public selectKeysRecordTimestr_result( + public selectKeysRecordTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeysRecordTimestr_result(selectKeysRecordTimestr_result other) { + public selectKeysRecordTime_result(selectKeysRecordTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -221683,16 +220793,13 @@ public selectKeysRecordTimestr_result(selectKeysRecordTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectKeysRecordTimestr_result deepCopy() { - return new selectKeysRecordTimestr_result(this); + public selectKeysRecordTime_result deepCopy() { + return new selectKeysRecordTime_result(this); } @Override @@ -221701,7 +220808,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -221720,7 +220826,7 @@ public java.util.Map> success) { + public selectKeysRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -221745,7 +220851,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -221770,7 +220876,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -221791,11 +220897,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -221815,31 +220921,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectKeysRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -221871,15 +220952,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -221902,9 +220975,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -221925,20 +220995,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordTimestr_result) - return this.equals((selectKeysRecordTimestr_result)that); + if (that instanceof selectKeysRecordTime_result) + return this.equals((selectKeysRecordTime_result)that); return false; } - public boolean equals(selectKeysRecordTimestr_result that) { + public boolean equals(selectKeysRecordTime_result that) { if (that == null) return false; if (this == that) @@ -221980,15 +221048,6 @@ public boolean equals(selectKeysRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -222012,15 +221071,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectKeysRecordTimestr_result other) { + public int compareTo(selectKeysRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -222067,16 +221122,6 @@ public int compareTo(selectKeysRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -222097,7 +221142,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordTime_result("); boolean first = true; sb.append("success:"); @@ -222131,14 +221176,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -222164,17 +221201,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordTimestr_resultStandardScheme getScheme() { - return new selectKeysRecordTimestr_resultStandardScheme(); + public selectKeysRecordTime_resultStandardScheme getScheme() { + return new selectKeysRecordTime_resultStandardScheme(); } } - private static class selectKeysRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -222187,26 +221224,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1558 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1558.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1559; - @org.apache.thrift.annotation.Nullable java.util.Set _val1560; - for (int _i1561 = 0; _i1561 < _map1558.size; ++_i1561) + org.apache.thrift.protocol.TMap _map1532 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1532.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1533; + @org.apache.thrift.annotation.Nullable java.util.Set _val1534; + for (int _i1535 = 0; _i1535 < _map1532.size; ++_i1535) { - _key1559 = iprot.readString(); + _key1533 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1562 = iprot.readSetBegin(); - _val1560 = new java.util.LinkedHashSet(2*_set1562.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1563; - for (int _i1564 = 0; _i1564 < _set1562.size; ++_i1564) + org.apache.thrift.protocol.TSet _set1536 = iprot.readSetBegin(); + _val1534 = new java.util.LinkedHashSet(2*_set1536.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1537; + for (int _i1538 = 0; _i1538 < _set1536.size; ++_i1538) { - _elem1563 = new com.cinchapi.concourse.thrift.TObject(); - _elem1563.read(iprot); - _val1560.add(_elem1563); + _elem1537 = new com.cinchapi.concourse.thrift.TObject(); + _elem1537.read(iprot); + _val1534.add(_elem1537); } iprot.readSetEnd(); } - struct.success.put(_key1559, _val1560); + struct.success.put(_key1533, _val1534); } iprot.readMapEnd(); } @@ -222235,22 +221272,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -222263,7 +221291,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -222271,14 +221299,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1565 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1539 : struct.success.entrySet()) { - oprot.writeString(_iter1565.getKey()); + oprot.writeString(_iter1539.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1565.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1566 : _iter1565.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1539.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1540 : _iter1539.getValue()) { - _iter1566.write(oprot); + _iter1540.write(oprot); } oprot.writeSetEnd(); } @@ -222302,28 +221330,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTi struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeysRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordTimestr_resultTupleScheme getScheme() { - return new selectKeysRecordTimestr_resultTupleScheme(); + public selectKeysRecordTime_resultTupleScheme getScheme() { + return new selectKeysRecordTime_resultTupleScheme(); } } - private static class selectKeysRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -222338,21 +221361,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1567 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1541 : struct.success.entrySet()) { - oprot.writeString(_iter1567.getKey()); + oprot.writeString(_iter1541.getKey()); { - oprot.writeI32(_iter1567.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1568 : _iter1567.getValue()) + oprot.writeI32(_iter1541.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1542 : _iter1541.getValue()) { - _iter1568.write(oprot); + _iter1542.write(oprot); } } } @@ -222367,36 +221387,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTim if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1569 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1569.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1570; - @org.apache.thrift.annotation.Nullable java.util.Set _val1571; - for (int _i1572 = 0; _i1572 < _map1569.size; ++_i1572) + org.apache.thrift.protocol.TMap _map1543 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1543.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1544; + @org.apache.thrift.annotation.Nullable java.util.Set _val1545; + for (int _i1546 = 0; _i1546 < _map1543.size; ++_i1546) { - _key1570 = iprot.readString(); + _key1544 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1573 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1571 = new java.util.LinkedHashSet(2*_set1573.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1574; - for (int _i1575 = 0; _i1575 < _set1573.size; ++_i1575) + org.apache.thrift.protocol.TSet _set1547 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1545 = new java.util.LinkedHashSet(2*_set1547.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1548; + for (int _i1549 = 0; _i1549 < _set1547.size; ++_i1549) { - _elem1574 = new com.cinchapi.concourse.thrift.TObject(); - _elem1574.read(iprot); - _val1571.add(_elem1574); + _elem1548 = new com.cinchapi.concourse.thrift.TObject(); + _elem1548.read(iprot); + _val1545.add(_elem1548); } } - struct.success.put(_key1570, _val1571); + struct.success.put(_key1544, _val1545); } } struct.setSuccessIsSet(true); @@ -222412,15 +221429,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTime struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -222429,20 +221441,22 @@ private static S scheme(org.apache. } } - public static class selectKeysRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecords_args"); + public static class selectKeysRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -222450,10 +221464,11 @@ public static class selectKeysRecords_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -222471,13 +221486,15 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // RECORDS - return RECORDS; - case 3: // CREDS + case 2: // RECORD + return RECORD; + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -222522,15 +221539,18 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -222538,22 +221558,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordTimestr_args.class, metaDataMap); } - public selectKeysRecords_args() { + public selectKeysRecordTimestr_args() { } - public selectKeysRecords_args( + public selectKeysRecordTimestr_args( java.util.List keys, - java.util.List records, + long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.records = records; + this.record = record; + setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -222562,14 +221585,15 @@ public selectKeysRecords_args( /** * Performs a deep copy on other. */ - public selectKeysRecords_args(selectKeysRecords_args other) { + public selectKeysRecordTimestr_args(selectKeysRecordTimestr_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -222583,14 +221607,16 @@ public selectKeysRecords_args(selectKeysRecords_args other) { } @Override - public selectKeysRecords_args deepCopy() { - return new selectKeysRecords_args(this); + public selectKeysRecordTimestr_args deepCopy() { + return new selectKeysRecordTimestr_args(this); } @Override public void clear() { this.keys = null; - this.records = null; + setRecordIsSet(false); + this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; @@ -222617,7 +221643,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecords_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -222637,44 +221663,51 @@ public void setKeysIsSet(boolean value) { } } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + public long getRecord() { + return this.record; } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + public selectKeysRecordTimestr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public java.lang.String getTimestamp() { + return this.timestamp; } - public selectKeysRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public selectKeysRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetRecords() { - this.records = null; + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setRecordsIsSet(boolean value) { + public void setTimestampIsSet(boolean value) { if (!value) { - this.records = null; + this.timestamp = null; } } @@ -222683,7 +221716,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -222708,7 +221741,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -222733,7 +221766,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -222764,11 +221797,19 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); } break; @@ -222806,8 +221847,11 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); + + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -222832,8 +221876,10 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -222846,12 +221892,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecords_args) - return this.equals((selectKeysRecords_args)that); + if (that instanceof selectKeysRecordTimestr_args) + return this.equals((selectKeysRecordTimestr_args)that); return false; } - public boolean equals(selectKeysRecords_args that) { + public boolean equals(selectKeysRecordTimestr_args that) { if (that == null) return false; if (this == that) @@ -222866,12 +221912,21 @@ public boolean equals(selectKeysRecords_args that) { return false; } - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -222913,9 +221968,11 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -222933,7 +221990,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecords_args other) { + public int compareTo(selectKeysRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -222950,12 +222007,22 @@ public int compareTo(selectKeysRecords_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -223011,7 +222078,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordTimestr_args("); boolean first = true; sb.append("keys:"); @@ -223022,11 +222089,15 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.timestamp); } first = false; if (!first) sb.append(", "); @@ -223078,23 +222149,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeysRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecords_argsStandardScheme getScheme() { - return new selectKeysRecords_argsStandardScheme(); + public selectKeysRecordTimestr_argsStandardScheme getScheme() { + return new selectKeysRecordTimestr_argsStandardScheme(); } } - private static class selectKeysRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -223107,13 +222180,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_a case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1576 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list1576.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1577; - for (int _i1578 = 0; _i1578 < _list1576.size; ++_i1578) + org.apache.thrift.protocol.TList _list1550 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list1550.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1551; + for (int _i1552 = 0; _i1552 < _list1550.size; ++_i1552) { - _elem1577 = iprot.readString(); - struct.keys.add(_elem1577); + _elem1551 = iprot.readString(); + struct.keys.add(_elem1551); } iprot.readListEnd(); } @@ -223122,25 +222195,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list1579 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1579.size); - long _elem1580; - for (int _i1581 = 0; _i1581 < _list1579.size; ++_i1581) - { - _elem1580 = iprot.readI64(); - struct.records.add(_elem1580); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 2: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -223149,7 +222220,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -223158,7 +222229,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -223178,7 +222249,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -223186,24 +222257,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecords_ oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter1582 : struct.keys) + for (java.lang.String _iter1553 : struct.keys) { - oprot.writeString(_iter1582); + oprot.writeString(_iter1553); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1583 : struct.records) - { - oprot.writeI64(_iter1583); - } - oprot.writeListEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -223227,52 +222294,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecords_ } - private static class selectKeysRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecords_argsTupleScheme getScheme() { - return new selectKeysRecords_argsTupleScheme(); + public selectKeysRecordTimestr_argsTupleScheme getScheme() { + return new selectKeysRecordTimestr_argsTupleScheme(); } } - private static class selectKeysRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter1584 : struct.keys) + for (java.lang.String _iter1554 : struct.keys) { - oprot.writeString(_iter1584); + oprot.writeString(_iter1554); } } } - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter1585 : struct.records) - { - oprot.writeI64(_iter1585); - } - } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -223286,46 +222353,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1586 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list1586.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1587; - for (int _i1588 = 0; _i1588 < _list1586.size; ++_i1588) + org.apache.thrift.protocol.TList _list1555 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list1555.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1556; + for (int _i1557 = 0; _i1557 < _list1555.size; ++_i1557) { - _elem1587 = iprot.readString(); - struct.keys.add(_elem1587); + _elem1556 = iprot.readString(); + struct.keys.add(_elem1556); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - { - org.apache.thrift.protocol.TList _list1589 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1589.size); - long _elem1590; - for (int _i1591 = 0; _i1591 < _list1589.size; ++_i1591) - { - _elem1590 = iprot.readI64(); - struct.records.add(_elem1590); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -223337,28 +222399,31 @@ private static S scheme(org.apache. } } - public static class selectKeysRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecords_result"); + public static class selectKeysRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -223382,6 +222447,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -223430,64 +222497,55 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordTimestr_result.class, metaDataMap); } - public selectKeysRecords_result() { + public selectKeysRecordTimestr_result() { } - public selectKeysRecords_result( - java.util.Map>> success, + public selectKeysRecordTimestr_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeysRecords_result(selectKeysRecords_result other) { + public selectKeysRecordTimestr_result(selectKeysRecordTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + java.lang.String other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { - __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); - } + java.lang.String __this__success_copy_key = other_element_key; - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { + __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -223501,13 +222559,16 @@ public selectKeysRecords_result(selectKeysRecords_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public selectKeysRecords_result deepCopy() { - return new selectKeysRecords_result(this); + public selectKeysRecordTimestr_result deepCopy() { + return new selectKeysRecordTimestr_result(this); } @Override @@ -223516,25 +222577,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map> val) { + public void putToSuccess(java.lang.String key, java.util.Set val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public selectKeysRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public selectKeysRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -223559,7 +222621,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -223584,7 +222646,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -223605,11 +222667,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -223629,6 +222691,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public selectKeysRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -223636,7 +222723,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.Map>)value); } break; @@ -223660,7 +222747,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -223683,6 +222778,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -223703,18 +222801,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecords_result) - return this.equals((selectKeysRecords_result)that); + if (that instanceof selectKeysRecordTimestr_result) + return this.equals((selectKeysRecordTimestr_result)that); return false; } - public boolean equals(selectKeysRecords_result that) { + public boolean equals(selectKeysRecordTimestr_result that) { if (that == null) return false; if (this == that) @@ -223756,6 +222856,15 @@ public boolean equals(selectKeysRecords_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -223779,11 +222888,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(selectKeysRecords_result other) { + public int compareTo(selectKeysRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -223830,6 +222943,16 @@ public int compareTo(selectKeysRecords_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -223850,7 +222973,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordTimestr_result("); boolean first = true; sb.append("success:"); @@ -223884,6 +223007,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -223909,17 +223040,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecords_resultStandardScheme getScheme() { - return new selectKeysRecords_resultStandardScheme(); + public selectKeysRecordTimestr_resultStandardScheme getScheme() { + return new selectKeysRecordTimestr_resultStandardScheme(); } } - private static class selectKeysRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -223932,38 +223063,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1592 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1592.size); - long _key1593; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1594; - for (int _i1595 = 0; _i1595 < _map1592.size; ++_i1595) + org.apache.thrift.protocol.TMap _map1558 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1558.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1559; + @org.apache.thrift.annotation.Nullable java.util.Set _val1560; + for (int _i1561 = 0; _i1561 < _map1558.size; ++_i1561) { - _key1593 = iprot.readI64(); + _key1559 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map1596 = iprot.readMapBegin(); - _val1594 = new java.util.LinkedHashMap>(2*_map1596.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1597; - @org.apache.thrift.annotation.Nullable java.util.Set _val1598; - for (int _i1599 = 0; _i1599 < _map1596.size; ++_i1599) + org.apache.thrift.protocol.TSet _set1562 = iprot.readSetBegin(); + _val1560 = new java.util.LinkedHashSet(2*_set1562.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1563; + for (int _i1564 = 0; _i1564 < _set1562.size; ++_i1564) { - _key1597 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1600 = iprot.readSetBegin(); - _val1598 = new java.util.LinkedHashSet(2*_set1600.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1601; - for (int _i1602 = 0; _i1602 < _set1600.size; ++_i1602) - { - _elem1601 = new com.cinchapi.concourse.thrift.TObject(); - _elem1601.read(iprot); - _val1598.add(_elem1601); - } - iprot.readSetEnd(); - } - _val1594.put(_key1597, _val1598); + _elem1563 = new com.cinchapi.concourse.thrift.TObject(); + _elem1563.read(iprot); + _val1560.add(_elem1563); } - iprot.readMapEnd(); + iprot.readSetEnd(); } - struct.success.put(_key1593, _val1594); + struct.success.put(_key1559, _val1560); } iprot.readMapEnd(); } @@ -223992,13 +223111,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_r break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -224011,32 +223139,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1603 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter1565 : struct.success.entrySet()) { - oprot.writeI64(_iter1603.getKey()); + oprot.writeString(_iter1565.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1603.getValue().size())); - for (java.util.Map.Entry> _iter1604 : _iter1603.getValue().entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1565.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1566 : _iter1565.getValue()) { - oprot.writeString(_iter1604.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1604.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1605 : _iter1604.getValue()) - { - _iter1605.write(oprot); - } - oprot.writeSetEnd(); - } + _iter1566.write(oprot); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } } oprot.writeMapEnd(); @@ -224058,23 +223178,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecords_ struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeysRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecords_resultTupleScheme getScheme() { - return new selectKeysRecords_resultTupleScheme(); + public selectKeysRecordTimestr_resultTupleScheme getScheme() { + return new selectKeysRecordTimestr_resultTupleScheme(); } } - private static class selectKeysRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -224089,25 +223214,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_r if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1606 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1567 : struct.success.entrySet()) { - oprot.writeI64(_iter1606.getKey()); + oprot.writeString(_iter1567.getKey()); { - oprot.writeI32(_iter1606.getValue().size()); - for (java.util.Map.Entry> _iter1607 : _iter1606.getValue().entrySet()) + oprot.writeI32(_iter1567.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1568 : _iter1567.getValue()) { - oprot.writeString(_iter1607.getKey()); - { - oprot.writeI32(_iter1607.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1608 : _iter1607.getValue()) - { - _iter1608.write(oprot); - } - } + _iter1568.write(oprot); } } } @@ -224122,44 +223243,36 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_r if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1609 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1609.size); - long _key1610; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1611; - for (int _i1612 = 0; _i1612 < _map1609.size; ++_i1612) + org.apache.thrift.protocol.TMap _map1569 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1569.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1570; + @org.apache.thrift.annotation.Nullable java.util.Set _val1571; + for (int _i1572 = 0; _i1572 < _map1569.size; ++_i1572) { - _key1610 = iprot.readI64(); + _key1570 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map1613 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1611 = new java.util.LinkedHashMap>(2*_map1613.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1614; - @org.apache.thrift.annotation.Nullable java.util.Set _val1615; - for (int _i1616 = 0; _i1616 < _map1613.size; ++_i1616) + org.apache.thrift.protocol.TSet _set1573 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1571 = new java.util.LinkedHashSet(2*_set1573.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1574; + for (int _i1575 = 0; _i1575 < _set1573.size; ++_i1575) { - _key1614 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set1617 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1615 = new java.util.LinkedHashSet(2*_set1617.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1618; - for (int _i1619 = 0; _i1619 < _set1617.size; ++_i1619) - { - _elem1618 = new com.cinchapi.concourse.thrift.TObject(); - _elem1618.read(iprot); - _val1615.add(_elem1618); - } - } - _val1611.put(_key1614, _val1615); + _elem1574 = new com.cinchapi.concourse.thrift.TObject(); + _elem1574.read(iprot); + _val1571.add(_elem1574); } } - struct.success.put(_key1610, _val1611); + struct.success.put(_key1570, _val1571); } } struct.setSuccessIsSet(true); @@ -224175,10 +223288,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_re struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -224187,22 +223305,20 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsPage_args"); + public static class selectKeysRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecords_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -224211,10 +223327,9 @@ public static class selectKeysRecordsPage_args implements org.apache.thrift.TBas public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -224234,13 +223349,11 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // RECORDS return RECORDS; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -224294,8 +223407,6 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -224303,16 +223414,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecords_args.class, metaDataMap); } - public selectKeysRecordsPage_args() { + public selectKeysRecords_args() { } - public selectKeysRecordsPage_args( + public selectKeysRecords_args( java.util.List keys, java.util.List records, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -224320,7 +223430,6 @@ public selectKeysRecordsPage_args( this(); this.keys = keys; this.records = records; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -224329,7 +223438,7 @@ public selectKeysRecordsPage_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsPage_args(selectKeysRecordsPage_args other) { + public selectKeysRecords_args(selectKeysRecords_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -224338,9 +223447,6 @@ public selectKeysRecordsPage_args(selectKeysRecordsPage_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -224353,15 +223459,14 @@ public selectKeysRecordsPage_args(selectKeysRecordsPage_args other) { } @Override - public selectKeysRecordsPage_args deepCopy() { - return new selectKeysRecordsPage_args(this); + public selectKeysRecords_args deepCopy() { + return new selectKeysRecords_args(this); } @Override public void clear() { this.keys = null; this.records = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -224388,7 +223493,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecords_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -224429,7 +223534,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -224449,37 +223554,12 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -224504,7 +223584,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -224529,7 +223609,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -224568,14 +223648,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -224613,9 +223685,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -224641,8 +223710,6 @@ public boolean isSet(_Fields field) { return isSetKeys(); case RECORDS: return isSetRecords(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -224655,12 +223722,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsPage_args) - return this.equals((selectKeysRecordsPage_args)that); + if (that instanceof selectKeysRecords_args) + return this.equals((selectKeysRecords_args)that); return false; } - public boolean equals(selectKeysRecordsPage_args that) { + public boolean equals(selectKeysRecords_args that) { if (that == null) return false; if (this == that) @@ -224684,15 +223751,6 @@ public boolean equals(selectKeysRecordsPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -224735,10 +223793,6 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -224755,7 +223809,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsPage_args other) { + public int compareTo(selectKeysRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -224782,16 +223836,6 @@ public int compareTo(selectKeysRecordsPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -224843,7 +223887,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecords_args("); boolean first = true; sb.append("keys:"); @@ -224862,14 +223906,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -224900,9 +223936,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -224927,17 +223960,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsPage_argsStandardScheme getScheme() { - return new selectKeysRecordsPage_argsStandardScheme(); + public selectKeysRecords_argsStandardScheme getScheme() { + return new selectKeysRecords_argsStandardScheme(); } } - private static class selectKeysRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -224950,13 +223983,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPa case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1620 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list1620.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1621; - for (int _i1622 = 0; _i1622 < _list1620.size; ++_i1622) + org.apache.thrift.protocol.TList _list1576 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list1576.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1577; + for (int _i1578 = 0; _i1578 < _list1576.size; ++_i1578) { - _elem1621 = iprot.readString(); - struct.keys.add(_elem1621); + _elem1577 = iprot.readString(); + struct.keys.add(_elem1577); } iprot.readListEnd(); } @@ -224968,13 +224001,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPa case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1623 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1623.size); - long _elem1624; - for (int _i1625 = 0; _i1625 < _list1623.size; ++_i1625) + org.apache.thrift.protocol.TList _list1579 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1579.size); + long _elem1580; + for (int _i1581 = 0; _i1581 < _list1579.size; ++_i1581) { - _elem1624 = iprot.readI64(); - struct.records.add(_elem1624); + _elem1580 = iprot.readI64(); + struct.records.add(_elem1580); } iprot.readListEnd(); } @@ -224983,16 +224016,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -225001,7 +224025,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -225010,7 +224034,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -225030,7 +224054,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -225038,9 +224062,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsP oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter1626 : struct.keys) + for (java.lang.String _iter1582 : struct.keys) { - oprot.writeString(_iter1626); + oprot.writeString(_iter1582); } oprot.writeListEnd(); } @@ -225050,19 +224074,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsP oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1627 : struct.records) + for (long _iter1583 : struct.records) { - oprot.writeI64(_iter1627); + oprot.writeI64(_iter1583); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -225084,17 +224103,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsP } - private static class selectKeysRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsPage_argsTupleScheme getScheme() { - return new selectKeysRecordsPage_argsTupleScheme(); + public selectKeysRecords_argsTupleScheme getScheme() { + return new selectKeysRecords_argsTupleScheme(); } } - private static class selectKeysRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -225103,40 +224122,34 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPa if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter1628 : struct.keys) + for (java.lang.String _iter1584 : struct.keys) { - oprot.writeString(_iter1628); + oprot.writeString(_iter1584); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1629 : struct.records) + for (long _iter1585 : struct.records) { - oprot.writeI64(_iter1629); + oprot.writeI64(_iter1585); } } } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -225149,51 +224162,46 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1630 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list1630.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1631; - for (int _i1632 = 0; _i1632 < _list1630.size; ++_i1632) + org.apache.thrift.protocol.TList _list1586 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list1586.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1587; + for (int _i1588 = 0; _i1588 < _list1586.size; ++_i1588) { - _elem1631 = iprot.readString(); - struct.keys.add(_elem1631); + _elem1587 = iprot.readString(); + struct.keys.add(_elem1587); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1633 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1633.size); - long _elem1634; - for (int _i1635 = 0; _i1635 < _list1633.size; ++_i1635) + org.apache.thrift.protocol.TList _list1589 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1589.size); + long _elem1590; + for (int _i1591 = 0; _i1591 < _list1589.size; ++_i1591) { - _elem1634 = iprot.readI64(); - struct.records.add(_elem1634); + _elem1590 = iprot.readI64(); + struct.records.add(_elem1590); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -225205,16 +224213,16 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsPage_result"); + public static class selectKeysRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecords_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -225310,13 +224318,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecords_result.class, metaDataMap); } - public selectKeysRecordsPage_result() { + public selectKeysRecords_result() { } - public selectKeysRecordsPage_result( + public selectKeysRecords_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -225332,7 +224340,7 @@ public selectKeysRecordsPage_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsPage_result(selectKeysRecordsPage_result other) { + public selectKeysRecords_result(selectKeysRecords_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -225374,8 +224382,8 @@ public selectKeysRecordsPage_result(selectKeysRecordsPage_result other) { } @Override - public selectKeysRecordsPage_result deepCopy() { - return new selectKeysRecordsPage_result(this); + public selectKeysRecords_result deepCopy() { + return new selectKeysRecords_result(this); } @Override @@ -225402,7 +224410,7 @@ public java.util.Map>> success) { + public selectKeysRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -225427,7 +224435,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -225452,7 +224460,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -225477,7 +224485,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -225577,12 +224585,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsPage_result) - return this.equals((selectKeysRecordsPage_result)that); + if (that instanceof selectKeysRecords_result) + return this.equals((selectKeysRecords_result)that); return false; } - public boolean equals(selectKeysRecordsPage_result that) { + public boolean equals(selectKeysRecords_result that) { if (that == null) return false; if (this == that) @@ -225651,7 +224659,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsPage_result other) { + public int compareTo(selectKeysRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -225718,7 +224726,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecords_result("); boolean first = true; sb.append("success:"); @@ -225777,17 +224785,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsPage_resultStandardScheme getScheme() { - return new selectKeysRecordsPage_resultStandardScheme(); + public selectKeysRecords_resultStandardScheme getScheme() { + return new selectKeysRecords_resultStandardScheme(); } } - private static class selectKeysRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -225800,38 +224808,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPa case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1636 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1636.size); - long _key1637; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1638; - for (int _i1639 = 0; _i1639 < _map1636.size; ++_i1639) + org.apache.thrift.protocol.TMap _map1592 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1592.size); + long _key1593; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1594; + for (int _i1595 = 0; _i1595 < _map1592.size; ++_i1595) { - _key1637 = iprot.readI64(); + _key1593 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1640 = iprot.readMapBegin(); - _val1638 = new java.util.LinkedHashMap>(2*_map1640.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1641; - @org.apache.thrift.annotation.Nullable java.util.Set _val1642; - for (int _i1643 = 0; _i1643 < _map1640.size; ++_i1643) + org.apache.thrift.protocol.TMap _map1596 = iprot.readMapBegin(); + _val1594 = new java.util.LinkedHashMap>(2*_map1596.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1597; + @org.apache.thrift.annotation.Nullable java.util.Set _val1598; + for (int _i1599 = 0; _i1599 < _map1596.size; ++_i1599) { - _key1641 = iprot.readString(); + _key1597 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1644 = iprot.readSetBegin(); - _val1642 = new java.util.LinkedHashSet(2*_set1644.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1645; - for (int _i1646 = 0; _i1646 < _set1644.size; ++_i1646) + org.apache.thrift.protocol.TSet _set1600 = iprot.readSetBegin(); + _val1598 = new java.util.LinkedHashSet(2*_set1600.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1601; + for (int _i1602 = 0; _i1602 < _set1600.size; ++_i1602) { - _elem1645 = new com.cinchapi.concourse.thrift.TObject(); - _elem1645.read(iprot); - _val1642.add(_elem1645); + _elem1601 = new com.cinchapi.concourse.thrift.TObject(); + _elem1601.read(iprot); + _val1598.add(_elem1601); } iprot.readSetEnd(); } - _val1638.put(_key1641, _val1642); + _val1594.put(_key1597, _val1598); } iprot.readMapEnd(); } - struct.success.put(_key1637, _val1638); + struct.success.put(_key1593, _val1594); } iprot.readMapEnd(); } @@ -225879,7 +224887,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -225887,19 +224895,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsP oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1647 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1603 : struct.success.entrySet()) { - oprot.writeI64(_iter1647.getKey()); + oprot.writeI64(_iter1603.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1647.getValue().size())); - for (java.util.Map.Entry> _iter1648 : _iter1647.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1603.getValue().size())); + for (java.util.Map.Entry> _iter1604 : _iter1603.getValue().entrySet()) { - oprot.writeString(_iter1648.getKey()); + oprot.writeString(_iter1604.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1648.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1649 : _iter1648.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1604.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1605 : _iter1604.getValue()) { - _iter1649.write(oprot); + _iter1605.write(oprot); } oprot.writeSetEnd(); } @@ -225932,17 +224940,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsP } - private static class selectKeysRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsPage_resultTupleScheme getScheme() { - return new selectKeysRecordsPage_resultTupleScheme(); + public selectKeysRecords_resultTupleScheme getScheme() { + return new selectKeysRecords_resultTupleScheme(); } } - private static class selectKeysRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -225961,19 +224969,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPa if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1650 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1606 : struct.success.entrySet()) { - oprot.writeI64(_iter1650.getKey()); + oprot.writeI64(_iter1606.getKey()); { - oprot.writeI32(_iter1650.getValue().size()); - for (java.util.Map.Entry> _iter1651 : _iter1650.getValue().entrySet()) + oprot.writeI32(_iter1606.getValue().size()); + for (java.util.Map.Entry> _iter1607 : _iter1606.getValue().entrySet()) { - oprot.writeString(_iter1651.getKey()); + oprot.writeString(_iter1607.getKey()); { - oprot.writeI32(_iter1651.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1652 : _iter1651.getValue()) + oprot.writeI32(_iter1607.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1608 : _iter1607.getValue()) { - _iter1652.write(oprot); + _iter1608.write(oprot); } } } @@ -225993,41 +225001,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1653 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1653.size); - long _key1654; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1655; - for (int _i1656 = 0; _i1656 < _map1653.size; ++_i1656) + org.apache.thrift.protocol.TMap _map1609 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1609.size); + long _key1610; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1611; + for (int _i1612 = 0; _i1612 < _map1609.size; ++_i1612) { - _key1654 = iprot.readI64(); + _key1610 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1657 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1655 = new java.util.LinkedHashMap>(2*_map1657.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1658; - @org.apache.thrift.annotation.Nullable java.util.Set _val1659; - for (int _i1660 = 0; _i1660 < _map1657.size; ++_i1660) + org.apache.thrift.protocol.TMap _map1613 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1611 = new java.util.LinkedHashMap>(2*_map1613.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1614; + @org.apache.thrift.annotation.Nullable java.util.Set _val1615; + for (int _i1616 = 0; _i1616 < _map1613.size; ++_i1616) { - _key1658 = iprot.readString(); + _key1614 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1661 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1659 = new java.util.LinkedHashSet(2*_set1661.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1662; - for (int _i1663 = 0; _i1663 < _set1661.size; ++_i1663) + org.apache.thrift.protocol.TSet _set1617 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1615 = new java.util.LinkedHashSet(2*_set1617.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1618; + for (int _i1619 = 0; _i1619 < _set1617.size; ++_i1619) { - _elem1662 = new com.cinchapi.concourse.thrift.TObject(); - _elem1662.read(iprot); - _val1659.add(_elem1662); + _elem1618 = new com.cinchapi.concourse.thrift.TObject(); + _elem1618.read(iprot); + _val1615.add(_elem1618); } } - _val1655.put(_key1658, _val1659); + _val1611.put(_key1614, _val1615); } } - struct.success.put(_key1654, _val1655); + struct.success.put(_key1610, _val1611); } } struct.setSuccessIsSet(true); @@ -226055,22 +225063,22 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsOrder_args"); + public static class selectKeysRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -226079,7 +225087,7 @@ public static class selectKeysRecordsOrder_args implements org.apache.thrift.TBa public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -226102,8 +225110,8 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // RECORDS return RECORDS; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -226162,8 +225170,8 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -226171,16 +225179,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsPage_args.class, metaDataMap); } - public selectKeysRecordsOrder_args() { + public selectKeysRecordsPage_args() { } - public selectKeysRecordsOrder_args( + public selectKeysRecordsPage_args( java.util.List keys, java.util.List records, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -226188,7 +225196,7 @@ public selectKeysRecordsOrder_args( this(); this.keys = keys; this.records = records; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -226197,7 +225205,7 @@ public selectKeysRecordsOrder_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsOrder_args(selectKeysRecordsOrder_args other) { + public selectKeysRecordsPage_args(selectKeysRecordsPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -226206,8 +225214,8 @@ public selectKeysRecordsOrder_args(selectKeysRecordsOrder_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -226221,15 +225229,15 @@ public selectKeysRecordsOrder_args(selectKeysRecordsOrder_args other) { } @Override - public selectKeysRecordsOrder_args deepCopy() { - return new selectKeysRecordsOrder_args(this); + public selectKeysRecordsPage_args deepCopy() { + return new selectKeysRecordsPage_args(this); } @Override public void clear() { this.keys = null; this.records = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -226256,7 +225264,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -226297,7 +225305,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -226318,27 +225326,27 @@ public void setRecordsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeysRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeysRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -226347,7 +225355,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -226372,7 +225380,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -226397,7 +225405,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -226436,11 +225444,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -226481,8 +225489,8 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -226509,8 +225517,8 @@ public boolean isSet(_Fields field) { return isSetKeys(); case RECORDS: return isSetRecords(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -226523,12 +225531,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsOrder_args) - return this.equals((selectKeysRecordsOrder_args)that); + if (that instanceof selectKeysRecordsPage_args) + return this.equals((selectKeysRecordsPage_args)that); return false; } - public boolean equals(selectKeysRecordsOrder_args that) { + public boolean equals(selectKeysRecordsPage_args that) { if (that == null) return false; if (this == that) @@ -226552,12 +225560,12 @@ public boolean equals(selectKeysRecordsOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -226603,9 +225611,9 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -226623,7 +225631,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsOrder_args other) { + public int compareTo(selectKeysRecordsPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -226650,12 +225658,12 @@ public int compareTo(selectKeysRecordsOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -226711,7 +225719,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsPage_args("); boolean first = true; sb.append("keys:"); @@ -226730,11 +225738,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -226768,8 +225776,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -226795,17 +225803,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsOrder_argsStandardScheme getScheme() { - return new selectKeysRecordsOrder_argsStandardScheme(); + public selectKeysRecordsPage_argsStandardScheme getScheme() { + return new selectKeysRecordsPage_argsStandardScheme(); } } - private static class selectKeysRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -226818,13 +225826,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1664 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list1664.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1665; - for (int _i1666 = 0; _i1666 < _list1664.size; ++_i1666) + org.apache.thrift.protocol.TList _list1620 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list1620.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1621; + for (int _i1622 = 0; _i1622 < _list1620.size; ++_i1622) { - _elem1665 = iprot.readString(); - struct.keys.add(_elem1665); + _elem1621 = iprot.readString(); + struct.keys.add(_elem1621); } iprot.readListEnd(); } @@ -226836,13 +225844,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1667 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1667.size); - long _elem1668; - for (int _i1669 = 0; _i1669 < _list1667.size; ++_i1669) + org.apache.thrift.protocol.TList _list1623 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1623.size); + long _elem1624; + for (int _i1625 = 0; _i1625 < _list1623.size; ++_i1625) { - _elem1668 = iprot.readI64(); - struct.records.add(_elem1668); + _elem1624 = iprot.readI64(); + struct.records.add(_elem1624); } iprot.readListEnd(); } @@ -226851,11 +225859,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -226898,7 +225906,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -226906,9 +225914,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter1670 : struct.keys) + for (java.lang.String _iter1626 : struct.keys) { - oprot.writeString(_iter1670); + oprot.writeString(_iter1626); } oprot.writeListEnd(); } @@ -226918,17 +225926,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1671 : struct.records) + for (long _iter1627 : struct.records) { - oprot.writeI64(_iter1671); + oprot.writeI64(_iter1627); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -226952,17 +225960,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO } - private static class selectKeysRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsOrder_argsTupleScheme getScheme() { - return new selectKeysRecordsOrder_argsTupleScheme(); + public selectKeysRecordsPage_argsTupleScheme getScheme() { + return new selectKeysRecordsPage_argsTupleScheme(); } } - private static class selectKeysRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -226971,7 +225979,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -226987,23 +225995,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter1672 : struct.keys) + for (java.lang.String _iter1628 : struct.keys) { - oprot.writeString(_iter1672); + oprot.writeString(_iter1628); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1673 : struct.records) + for (long _iter1629 : struct.records) { - oprot.writeI64(_iter1673); + oprot.writeI64(_iter1629); } } } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -227017,39 +226025,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1674 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list1674.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1675; - for (int _i1676 = 0; _i1676 < _list1674.size; ++_i1676) + org.apache.thrift.protocol.TList _list1630 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list1630.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1631; + for (int _i1632 = 0; _i1632 < _list1630.size; ++_i1632) { - _elem1675 = iprot.readString(); - struct.keys.add(_elem1675); + _elem1631 = iprot.readString(); + struct.keys.add(_elem1631); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1677 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1677.size); - long _elem1678; - for (int _i1679 = 0; _i1679 < _list1677.size; ++_i1679) + org.apache.thrift.protocol.TList _list1633 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1633.size); + long _elem1634; + for (int _i1635 = 0; _i1635 < _list1633.size; ++_i1635) { - _elem1678 = iprot.readI64(); - struct.records.add(_elem1678); + _elem1634 = iprot.readI64(); + struct.records.add(_elem1634); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -227073,16 +226081,16 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsOrder_result"); + public static class selectKeysRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -227178,13 +226186,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsPage_result.class, metaDataMap); } - public selectKeysRecordsOrder_result() { + public selectKeysRecordsPage_result() { } - public selectKeysRecordsOrder_result( + public selectKeysRecordsPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -227200,7 +226208,7 @@ public selectKeysRecordsOrder_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsOrder_result(selectKeysRecordsOrder_result other) { + public selectKeysRecordsPage_result(selectKeysRecordsPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -227242,8 +226250,8 @@ public selectKeysRecordsOrder_result(selectKeysRecordsOrder_result other) { } @Override - public selectKeysRecordsOrder_result deepCopy() { - return new selectKeysRecordsOrder_result(this); + public selectKeysRecordsPage_result deepCopy() { + return new selectKeysRecordsPage_result(this); } @Override @@ -227270,7 +226278,7 @@ public java.util.Map>> success) { + public selectKeysRecordsPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -227295,7 +226303,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -227320,7 +226328,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -227345,7 +226353,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -227445,12 +226453,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsOrder_result) - return this.equals((selectKeysRecordsOrder_result)that); + if (that instanceof selectKeysRecordsPage_result) + return this.equals((selectKeysRecordsPage_result)that); return false; } - public boolean equals(selectKeysRecordsOrder_result that) { + public boolean equals(selectKeysRecordsPage_result that) { if (that == null) return false; if (this == that) @@ -227519,7 +226527,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsOrder_result other) { + public int compareTo(selectKeysRecordsPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -227586,7 +226594,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsPage_result("); boolean first = true; sb.append("success:"); @@ -227645,17 +226653,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsOrder_resultStandardScheme getScheme() { - return new selectKeysRecordsOrder_resultStandardScheme(); + public selectKeysRecordsPage_resultStandardScheme getScheme() { + return new selectKeysRecordsPage_resultStandardScheme(); } } - private static class selectKeysRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -227668,38 +226676,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1680 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1680.size); - long _key1681; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1682; - for (int _i1683 = 0; _i1683 < _map1680.size; ++_i1683) + org.apache.thrift.protocol.TMap _map1636 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1636.size); + long _key1637; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1638; + for (int _i1639 = 0; _i1639 < _map1636.size; ++_i1639) { - _key1681 = iprot.readI64(); + _key1637 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1684 = iprot.readMapBegin(); - _val1682 = new java.util.LinkedHashMap>(2*_map1684.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1685; - @org.apache.thrift.annotation.Nullable java.util.Set _val1686; - for (int _i1687 = 0; _i1687 < _map1684.size; ++_i1687) + org.apache.thrift.protocol.TMap _map1640 = iprot.readMapBegin(); + _val1638 = new java.util.LinkedHashMap>(2*_map1640.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1641; + @org.apache.thrift.annotation.Nullable java.util.Set _val1642; + for (int _i1643 = 0; _i1643 < _map1640.size; ++_i1643) { - _key1685 = iprot.readString(); + _key1641 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1688 = iprot.readSetBegin(); - _val1686 = new java.util.LinkedHashSet(2*_set1688.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1689; - for (int _i1690 = 0; _i1690 < _set1688.size; ++_i1690) + org.apache.thrift.protocol.TSet _set1644 = iprot.readSetBegin(); + _val1642 = new java.util.LinkedHashSet(2*_set1644.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1645; + for (int _i1646 = 0; _i1646 < _set1644.size; ++_i1646) { - _elem1689 = new com.cinchapi.concourse.thrift.TObject(); - _elem1689.read(iprot); - _val1686.add(_elem1689); + _elem1645 = new com.cinchapi.concourse.thrift.TObject(); + _elem1645.read(iprot); + _val1642.add(_elem1645); } iprot.readSetEnd(); } - _val1682.put(_key1685, _val1686); + _val1638.put(_key1641, _val1642); } iprot.readMapEnd(); } - struct.success.put(_key1681, _val1682); + struct.success.put(_key1637, _val1638); } iprot.readMapEnd(); } @@ -227747,7 +226755,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -227755,19 +226763,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1691 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1647 : struct.success.entrySet()) { - oprot.writeI64(_iter1691.getKey()); + oprot.writeI64(_iter1647.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1691.getValue().size())); - for (java.util.Map.Entry> _iter1692 : _iter1691.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1647.getValue().size())); + for (java.util.Map.Entry> _iter1648 : _iter1647.getValue().entrySet()) { - oprot.writeString(_iter1692.getKey()); + oprot.writeString(_iter1648.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1692.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1693 : _iter1692.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1648.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1649 : _iter1648.getValue()) { - _iter1693.write(oprot); + _iter1649.write(oprot); } oprot.writeSetEnd(); } @@ -227800,17 +226808,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO } - private static class selectKeysRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsOrder_resultTupleScheme getScheme() { - return new selectKeysRecordsOrder_resultTupleScheme(); + public selectKeysRecordsPage_resultTupleScheme getScheme() { + return new selectKeysRecordsPage_resultTupleScheme(); } } - private static class selectKeysRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -227829,19 +226837,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1694 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1650 : struct.success.entrySet()) { - oprot.writeI64(_iter1694.getKey()); + oprot.writeI64(_iter1650.getKey()); { - oprot.writeI32(_iter1694.getValue().size()); - for (java.util.Map.Entry> _iter1695 : _iter1694.getValue().entrySet()) + oprot.writeI32(_iter1650.getValue().size()); + for (java.util.Map.Entry> _iter1651 : _iter1650.getValue().entrySet()) { - oprot.writeString(_iter1695.getKey()); + oprot.writeString(_iter1651.getKey()); { - oprot.writeI32(_iter1695.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1696 : _iter1695.getValue()) + oprot.writeI32(_iter1651.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1652 : _iter1651.getValue()) { - _iter1696.write(oprot); + _iter1652.write(oprot); } } } @@ -227861,41 +226869,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1697 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1697.size); - long _key1698; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1699; - for (int _i1700 = 0; _i1700 < _map1697.size; ++_i1700) + org.apache.thrift.protocol.TMap _map1653 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1653.size); + long _key1654; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1655; + for (int _i1656 = 0; _i1656 < _map1653.size; ++_i1656) { - _key1698 = iprot.readI64(); + _key1654 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1701 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1699 = new java.util.LinkedHashMap>(2*_map1701.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1702; - @org.apache.thrift.annotation.Nullable java.util.Set _val1703; - for (int _i1704 = 0; _i1704 < _map1701.size; ++_i1704) + org.apache.thrift.protocol.TMap _map1657 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1655 = new java.util.LinkedHashMap>(2*_map1657.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1658; + @org.apache.thrift.annotation.Nullable java.util.Set _val1659; + for (int _i1660 = 0; _i1660 < _map1657.size; ++_i1660) { - _key1702 = iprot.readString(); + _key1658 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1705 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1703 = new java.util.LinkedHashSet(2*_set1705.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1706; - for (int _i1707 = 0; _i1707 < _set1705.size; ++_i1707) + org.apache.thrift.protocol.TSet _set1661 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1659 = new java.util.LinkedHashSet(2*_set1661.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1662; + for (int _i1663 = 0; _i1663 < _set1661.size; ++_i1663) { - _elem1706 = new com.cinchapi.concourse.thrift.TObject(); - _elem1706.read(iprot); - _val1703.add(_elem1706); + _elem1662 = new com.cinchapi.concourse.thrift.TObject(); + _elem1662.read(iprot); + _val1659.add(_elem1662); } } - _val1699.put(_key1702, _val1703); + _val1655.put(_key1658, _val1659); } } - struct.success.put(_key1698, _val1699); + struct.success.put(_key1654, _val1655); } } struct.setSuccessIsSet(true); @@ -227923,24 +226931,22 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsOrderPage_args"); + public static class selectKeysRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -227950,10 +226956,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -227975,13 +226980,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -228037,8 +227040,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -228046,17 +227047,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsOrder_args.class, metaDataMap); } - public selectKeysRecordsOrderPage_args() { + public selectKeysRecordsOrder_args() { } - public selectKeysRecordsOrderPage_args( + public selectKeysRecordsOrder_args( java.util.List keys, java.util.List records, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -228065,7 +227065,6 @@ public selectKeysRecordsOrderPage_args( this.keys = keys; this.records = records; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -228074,7 +227073,7 @@ public selectKeysRecordsOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsOrderPage_args(selectKeysRecordsOrderPage_args other) { + public selectKeysRecordsOrder_args(selectKeysRecordsOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -228086,9 +227085,6 @@ public selectKeysRecordsOrderPage_args(selectKeysRecordsOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -228101,8 +227097,8 @@ public selectKeysRecordsOrderPage_args(selectKeysRecordsOrderPage_args other) { } @Override - public selectKeysRecordsOrderPage_args deepCopy() { - return new selectKeysRecordsOrderPage_args(this); + public selectKeysRecordsOrder_args deepCopy() { + return new selectKeysRecordsOrder_args(this); } @Override @@ -228110,7 +227106,6 @@ public void clear() { this.keys = null; this.records = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -228137,7 +227132,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -228178,7 +227173,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -228203,7 +227198,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeysRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeysRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -228223,37 +227218,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -228278,7 +227248,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -228303,7 +227273,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -228350,14 +227320,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -228398,9 +227360,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -228428,8 +227387,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -228442,12 +227399,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsOrderPage_args) - return this.equals((selectKeysRecordsOrderPage_args)that); + if (that instanceof selectKeysRecordsOrder_args) + return this.equals((selectKeysRecordsOrder_args)that); return false; } - public boolean equals(selectKeysRecordsOrderPage_args that) { + public boolean equals(selectKeysRecordsOrder_args that) { if (that == null) return false; if (this == that) @@ -228480,15 +227437,6 @@ public boolean equals(selectKeysRecordsOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -228535,10 +227483,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -228555,7 +227499,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsOrderPage_args other) { + public int compareTo(selectKeysRecordsOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -228592,16 +227536,6 @@ public int compareTo(selectKeysRecordsOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -228653,7 +227587,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsOrder_args("); boolean first = true; sb.append("keys:"); @@ -228680,14 +227614,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -228721,9 +227647,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -228748,17 +227671,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsOrderPage_argsStandardScheme getScheme() { - return new selectKeysRecordsOrderPage_argsStandardScheme(); + public selectKeysRecordsOrder_argsStandardScheme getScheme() { + return new selectKeysRecordsOrder_argsStandardScheme(); } } - private static class selectKeysRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -228771,13 +227694,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1708 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list1708.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1709; - for (int _i1710 = 0; _i1710 < _list1708.size; ++_i1710) + org.apache.thrift.protocol.TList _list1664 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list1664.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1665; + for (int _i1666 = 0; _i1666 < _list1664.size; ++_i1666) { - _elem1709 = iprot.readString(); - struct.keys.add(_elem1709); + _elem1665 = iprot.readString(); + struct.keys.add(_elem1665); } iprot.readListEnd(); } @@ -228789,13 +227712,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1711 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1711.size); - long _elem1712; - for (int _i1713 = 0; _i1713 < _list1711.size; ++_i1713) + org.apache.thrift.protocol.TList _list1667 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1667.size); + long _elem1668; + for (int _i1669 = 0; _i1669 < _list1667.size; ++_i1669) { - _elem1712 = iprot.readI64(); - struct.records.add(_elem1712); + _elem1668 = iprot.readI64(); + struct.records.add(_elem1668); } iprot.readListEnd(); } @@ -228813,16 +227736,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -228831,7 +227745,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -228840,7 +227754,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -228860,7 +227774,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -228868,9 +227782,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter1714 : struct.keys) + for (java.lang.String _iter1670 : struct.keys) { - oprot.writeString(_iter1714); + oprot.writeString(_iter1670); } oprot.writeListEnd(); } @@ -228880,9 +227794,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1715 : struct.records) + for (long _iter1671 : struct.records) { - oprot.writeI64(_iter1715); + oprot.writeI64(_iter1671); } oprot.writeListEnd(); } @@ -228893,11 +227807,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -228919,17 +227828,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO } - private static class selectKeysRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsOrderPage_argsTupleScheme getScheme() { - return new selectKeysRecordsOrderPage_argsTupleScheme(); + public selectKeysRecordsOrder_argsTupleScheme getScheme() { + return new selectKeysRecordsOrder_argsTupleScheme(); } } - private static class selectKeysRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -228941,43 +227850,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter1716 : struct.keys) + for (java.lang.String _iter1672 : struct.keys) { - oprot.writeString(_iter1716); + oprot.writeString(_iter1672); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1717 : struct.records) + for (long _iter1673 : struct.records) { - oprot.writeI64(_iter1717); + oprot.writeI64(_iter1673); } } } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -228990,31 +227893,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1718 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list1718.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem1719; - for (int _i1720 = 0; _i1720 < _list1718.size; ++_i1720) + org.apache.thrift.protocol.TList _list1674 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list1674.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1675; + for (int _i1676 = 0; _i1676 < _list1674.size; ++_i1676) { - _elem1719 = iprot.readString(); - struct.keys.add(_elem1719); + _elem1675 = iprot.readString(); + struct.keys.add(_elem1675); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1721 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1721.size); - long _elem1722; - for (int _i1723 = 0; _i1723 < _list1721.size; ++_i1723) + org.apache.thrift.protocol.TList _list1677 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1677.size); + long _elem1678; + for (int _i1679 = 0; _i1679 < _list1677.size; ++_i1679) { - _elem1722 = iprot.readI64(); - struct.records.add(_elem1722); + _elem1678 = iprot.readI64(); + struct.records.add(_elem1678); } } struct.setRecordsIsSet(true); @@ -229025,21 +227928,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrd struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -229051,16 +227949,16 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsOrderPage_result"); + public static class selectKeysRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -229156,13 +228054,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsOrder_result.class, metaDataMap); } - public selectKeysRecordsOrderPage_result() { + public selectKeysRecordsOrder_result() { } - public selectKeysRecordsOrderPage_result( + public selectKeysRecordsOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -229178,7 +228076,7 @@ public selectKeysRecordsOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsOrderPage_result(selectKeysRecordsOrderPage_result other) { + public selectKeysRecordsOrder_result(selectKeysRecordsOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -229220,8 +228118,8 @@ public selectKeysRecordsOrderPage_result(selectKeysRecordsOrderPage_result other } @Override - public selectKeysRecordsOrderPage_result deepCopy() { - return new selectKeysRecordsOrderPage_result(this); + public selectKeysRecordsOrder_result deepCopy() { + return new selectKeysRecordsOrder_result(this); } @Override @@ -229248,7 +228146,7 @@ public java.util.Map>> success) { + public selectKeysRecordsOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -229273,7 +228171,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -229298,7 +228196,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -229323,7 +228221,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -229423,12 +228321,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsOrderPage_result) - return this.equals((selectKeysRecordsOrderPage_result)that); + if (that instanceof selectKeysRecordsOrder_result) + return this.equals((selectKeysRecordsOrder_result)that); return false; } - public boolean equals(selectKeysRecordsOrderPage_result that) { + public boolean equals(selectKeysRecordsOrder_result that) { if (that == null) return false; if (this == that) @@ -229497,7 +228395,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsOrderPage_result other) { + public int compareTo(selectKeysRecordsOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -229564,7 +228462,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsOrder_result("); boolean first = true; sb.append("success:"); @@ -229623,17 +228521,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsOrderPage_resultStandardScheme getScheme() { - return new selectKeysRecordsOrderPage_resultStandardScheme(); + public selectKeysRecordsOrder_resultStandardScheme getScheme() { + return new selectKeysRecordsOrder_resultStandardScheme(); } } - private static class selectKeysRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -229646,38 +228544,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1724 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map1724.size); - long _key1725; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1726; - for (int _i1727 = 0; _i1727 < _map1724.size; ++_i1727) + org.apache.thrift.protocol.TMap _map1680 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1680.size); + long _key1681; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1682; + for (int _i1683 = 0; _i1683 < _map1680.size; ++_i1683) { - _key1725 = iprot.readI64(); + _key1681 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1728 = iprot.readMapBegin(); - _val1726 = new java.util.LinkedHashMap>(2*_map1728.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1729; - @org.apache.thrift.annotation.Nullable java.util.Set _val1730; - for (int _i1731 = 0; _i1731 < _map1728.size; ++_i1731) + org.apache.thrift.protocol.TMap _map1684 = iprot.readMapBegin(); + _val1682 = new java.util.LinkedHashMap>(2*_map1684.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1685; + @org.apache.thrift.annotation.Nullable java.util.Set _val1686; + for (int _i1687 = 0; _i1687 < _map1684.size; ++_i1687) { - _key1729 = iprot.readString(); + _key1685 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1732 = iprot.readSetBegin(); - _val1730 = new java.util.LinkedHashSet(2*_set1732.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1733; - for (int _i1734 = 0; _i1734 < _set1732.size; ++_i1734) + org.apache.thrift.protocol.TSet _set1688 = iprot.readSetBegin(); + _val1686 = new java.util.LinkedHashSet(2*_set1688.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1689; + for (int _i1690 = 0; _i1690 < _set1688.size; ++_i1690) { - _elem1733 = new com.cinchapi.concourse.thrift.TObject(); - _elem1733.read(iprot); - _val1730.add(_elem1733); + _elem1689 = new com.cinchapi.concourse.thrift.TObject(); + _elem1689.read(iprot); + _val1686.add(_elem1689); } iprot.readSetEnd(); } - _val1726.put(_key1729, _val1730); + _val1682.put(_key1685, _val1686); } iprot.readMapEnd(); } - struct.success.put(_key1725, _val1726); + struct.success.put(_key1681, _val1682); } iprot.readMapEnd(); } @@ -229725,7 +228623,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -229733,19 +228631,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter1735 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1691 : struct.success.entrySet()) { - oprot.writeI64(_iter1735.getKey()); + oprot.writeI64(_iter1691.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1735.getValue().size())); - for (java.util.Map.Entry> _iter1736 : _iter1735.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1691.getValue().size())); + for (java.util.Map.Entry> _iter1692 : _iter1691.getValue().entrySet()) { - oprot.writeString(_iter1736.getKey()); + oprot.writeString(_iter1692.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1736.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1737 : _iter1736.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1692.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1693 : _iter1692.getValue()) { - _iter1737.write(oprot); + _iter1693.write(oprot); } oprot.writeSetEnd(); } @@ -229778,17 +228676,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsO } - private static class selectKeysRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsOrderPage_resultTupleScheme getScheme() { - return new selectKeysRecordsOrderPage_resultTupleScheme(); + public selectKeysRecordsOrder_resultTupleScheme getScheme() { + return new selectKeysRecordsOrder_resultTupleScheme(); } } - private static class selectKeysRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -229807,19 +228705,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter1738 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1694 : struct.success.entrySet()) { - oprot.writeI64(_iter1738.getKey()); + oprot.writeI64(_iter1694.getKey()); { - oprot.writeI32(_iter1738.getValue().size()); - for (java.util.Map.Entry> _iter1739 : _iter1738.getValue().entrySet()) + oprot.writeI32(_iter1694.getValue().size()); + for (java.util.Map.Entry> _iter1695 : _iter1694.getValue().entrySet()) { - oprot.writeString(_iter1739.getKey()); + oprot.writeString(_iter1695.getKey()); { - oprot.writeI32(_iter1739.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1740 : _iter1739.getValue()) + oprot.writeI32(_iter1695.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1696 : _iter1695.getValue()) { - _iter1740.write(oprot); + _iter1696.write(oprot); } } } @@ -229839,41 +228737,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1741 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map1741.size); - long _key1742; - @org.apache.thrift.annotation.Nullable java.util.Map> _val1743; - for (int _i1744 = 0; _i1744 < _map1741.size; ++_i1744) + org.apache.thrift.protocol.TMap _map1697 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1697.size); + long _key1698; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1699; + for (int _i1700 = 0; _i1700 < _map1697.size; ++_i1700) { - _key1742 = iprot.readI64(); + _key1698 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map1745 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val1743 = new java.util.LinkedHashMap>(2*_map1745.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key1746; - @org.apache.thrift.annotation.Nullable java.util.Set _val1747; - for (int _i1748 = 0; _i1748 < _map1745.size; ++_i1748) + org.apache.thrift.protocol.TMap _map1701 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1699 = new java.util.LinkedHashMap>(2*_map1701.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1702; + @org.apache.thrift.annotation.Nullable java.util.Set _val1703; + for (int _i1704 = 0; _i1704 < _map1701.size; ++_i1704) { - _key1746 = iprot.readString(); + _key1702 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set1749 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1747 = new java.util.LinkedHashSet(2*_set1749.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1750; - for (int _i1751 = 0; _i1751 < _set1749.size; ++_i1751) + org.apache.thrift.protocol.TSet _set1705 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1703 = new java.util.LinkedHashSet(2*_set1705.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1706; + for (int _i1707 = 0; _i1707 < _set1705.size; ++_i1707) { - _elem1750 = new com.cinchapi.concourse.thrift.TObject(); - _elem1750.read(iprot); - _val1747.add(_elem1750); + _elem1706 = new com.cinchapi.concourse.thrift.TObject(); + _elem1706.read(iprot); + _val1703.add(_elem1706); } } - _val1743.put(_key1746, _val1747); + _val1699.put(_key1702, _val1703); } } - struct.success.put(_key1742, _val1743); + struct.success.put(_key1698, _val1699); } } struct.setSuccessIsSet(true); @@ -229901,31 +228799,37 @@ private static S scheme(org.apache. } } - public static class selectKeyRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecords_args"); + public static class selectKeysRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), + KEYS((short)1, "keys"), RECORDS((short)2, "records"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -229941,15 +228845,19 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; + case 1: // KEYS + return KEYS; case 2: // RECORDS return RECORDS; - case 3: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -229997,11 +228905,16 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -230009,22 +228922,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsOrderPage_args.class, metaDataMap); } - public selectKeyRecords_args() { + public selectKeysRecordsOrderPage_args() { } - public selectKeyRecords_args( - java.lang.String key, + public selectKeysRecordsOrderPage_args( + java.util.List keys, java.util.List records, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; + this.keys = keys; this.records = records; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -230033,14 +228950,21 @@ public selectKeyRecords_args( /** * Performs a deep copy on other. */ - public selectKeyRecords_args(selectKeyRecords_args other) { - if (other.isSetKey()) { - this.key = other.key; + public selectKeysRecordsOrderPage_args(selectKeysRecordsOrderPage_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; } if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -230053,41 +228977,59 @@ public selectKeyRecords_args(selectKeyRecords_args other) { } @Override - public selectKeyRecords_args deepCopy() { - return new selectKeyRecords_args(this); + public selectKeysRecordsOrderPage_args deepCopy() { + return new selectKeysRecordsOrderPage_args(this); } @Override public void clear() { - this.key = null; + this.keys = null; this.records = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public selectKeyRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public selectKeysRecordsOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; return this; } - public void unsetKey() { - this.key = null; + public void unsetKeys() { + this.keys = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void setKeyIsSet(boolean value) { + public void setKeysIsSet(boolean value) { if (!value) { - this.key = null; + this.keys = null; } } @@ -230112,7 +229054,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -230132,12 +229074,62 @@ public void setRecordsIsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeysRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -230162,7 +229154,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -230187,7 +229179,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -230210,11 +229202,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case KEYS: if (value == null) { - unsetKey(); + unsetKeys(); } else { - setKey((java.lang.String)value); + setKeys((java.util.List)value); } break; @@ -230226,6 +229218,22 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -230257,12 +229265,18 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case KEYS: + return getKeys(); case RECORDS: return getRecords(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -230284,10 +229298,14 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); + case KEYS: + return isSetKeys(); case RECORDS: return isSetRecords(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -230300,23 +229318,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecords_args) - return this.equals((selectKeyRecords_args)that); + if (that instanceof selectKeysRecordsOrderPage_args) + return this.equals((selectKeysRecordsOrderPage_args)that); return false; } - public boolean equals(selectKeyRecords_args that) { + public boolean equals(selectKeysRecordsOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.key.equals(that.key)) + if (!this.keys.equals(that.keys)) return false; } @@ -230329,6 +229347,24 @@ public boolean equals(selectKeyRecords_args that) { return false; } + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -230363,14 +229399,22 @@ public boolean equals(selectKeyRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -230387,19 +229431,19 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecords_args other) { + public int compareTo(selectKeysRecordsOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } @@ -230414,6 +229458,26 @@ public int compareTo(selectKeyRecords_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -230465,14 +229529,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsOrderPage_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); @@ -230484,6 +229548,22 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -230514,6 +229594,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -230538,17 +229624,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecords_argsStandardScheme getScheme() { - return new selectKeyRecords_argsStandardScheme(); + public selectKeysRecordsOrderPage_argsStandardScheme getScheme() { + return new selectKeysRecordsOrderPage_argsStandardScheme(); } } - private static class selectKeyRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -230558,10 +229644,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_ar break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list1708 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list1708.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1709; + for (int _i1710 = 0; _i1710 < _list1708.size; ++_i1710) + { + _elem1709 = iprot.readString(); + struct.keys.add(_elem1709); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -230569,13 +229665,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_ar case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1752 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1752.size); - long _elem1753; - for (int _i1754 = 0; _i1754 < _list1752.size; ++_i1754) + org.apache.thrift.protocol.TList _list1711 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1711.size); + long _elem1712; + for (int _i1713 = 0; _i1713 < _list1711.size; ++_i1713) { - _elem1753 = iprot.readI64(); - struct.records.add(_elem1753); + _elem1712 = iprot.readI64(); + struct.records.add(_elem1712); } iprot.readListEnd(); } @@ -230584,7 +229680,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -230593,7 +229707,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -230602,7 +229716,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -230622,27 +229736,44 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter1714 : struct.keys) + { + oprot.writeString(_iter1714); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } if (struct.records != null) { oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1755 : struct.records) + for (long _iter1715 : struct.records) { - oprot.writeI64(_iter1755); + oprot.writeI64(_iter1715); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -230664,47 +229795,65 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecords_a } - private static class selectKeyRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecords_argsTupleScheme getScheme() { - return new selectKeyRecords_argsTupleScheme(); + public selectKeysRecordsOrderPage_argsTupleScheme getScheme() { + return new selectKeysRecordsOrderPage_argsTupleScheme(); } } - private static class selectKeyRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter1716 : struct.keys) + { + oprot.writeString(_iter1716); + } + } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1756 : struct.records) + for (long _iter1717 : struct.records) { - oprot.writeI64(_iter1756); + oprot.writeI64(_iter1717); } } } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -230717,37 +229866,56 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list1718 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list1718.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem1719; + for (int _i1720 = 0; _i1720 < _list1718.size; ++_i1720) + { + _elem1719 = iprot.readString(); + struct.keys.add(_elem1719); + } + } + struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1757 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1757.size); - long _elem1758; - for (int _i1759 = 0; _i1759 < _list1757.size; ++_i1759) + org.apache.thrift.protocol.TList _list1721 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1721.size); + long _elem1722; + for (int _i1723 = 0; _i1723 < _list1721.size; ++_i1723) { - _elem1758 = iprot.readI64(); - struct.records.add(_elem1758); + _elem1722 = iprot.readI64(); + struct.records.add(_elem1722); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -230759,18 +229927,18 @@ private static S scheme(org.apache. } } - public static class selectKeyRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecords_result"); + public static class selectKeysRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -230853,8 +230021,10 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -230862,14 +230032,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsOrderPage_result.class, metaDataMap); } - public selectKeyRecords_result() { + public selectKeysRecordsOrderPage_result() { } - public selectKeyRecords_result( - java.util.Map> success, + public selectKeysRecordsOrderPage_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -230884,19 +230054,30 @@ public selectKeyRecords_result( /** * Performs a deep copy on other. */ - public selectKeyRecords_result(selectKeyRecords_result other) { + public selectKeysRecordsOrderPage_result(selectKeysRecordsOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { java.lang.Long other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); + java.util.Map> other_element_value = other_element.getValue(); java.lang.Long __this__success_copy_key = other_element_key; - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { - __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { + __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); + } + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -230915,8 +230096,8 @@ public selectKeyRecords_result(selectKeyRecords_result other) { } @Override - public selectKeyRecords_result deepCopy() { - return new selectKeyRecords_result(this); + public selectKeysRecordsOrderPage_result deepCopy() { + return new selectKeysRecordsOrderPage_result(this); } @Override @@ -230931,19 +230112,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Set val) { + public void putToSuccess(long key, java.util.Map> val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap>>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public selectKeyRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public selectKeysRecordsOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -230968,7 +230149,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -230993,7 +230174,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -231018,7 +230199,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -231045,7 +230226,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map>>)value); } break; @@ -231118,12 +230299,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecords_result) - return this.equals((selectKeyRecords_result)that); + if (that instanceof selectKeysRecordsOrderPage_result) + return this.equals((selectKeysRecordsOrderPage_result)that); return false; } - public boolean equals(selectKeyRecords_result that) { + public boolean equals(selectKeysRecordsOrderPage_result that) { if (that == null) return false; if (this == that) @@ -231192,7 +230373,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecords_result other) { + public int compareTo(selectKeysRecordsOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -231259,7 +230440,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsOrderPage_result("); boolean first = true; sb.append("success:"); @@ -231318,17 +230499,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecords_resultStandardScheme getScheme() { - return new selectKeyRecords_resultStandardScheme(); + public selectKeysRecordsOrderPage_resultStandardScheme getScheme() { + return new selectKeysRecordsOrderPage_resultStandardScheme(); } } - private static class selectKeyRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -231341,26 +230522,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_re case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1760 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1760.size); - long _key1761; - @org.apache.thrift.annotation.Nullable java.util.Set _val1762; - for (int _i1763 = 0; _i1763 < _map1760.size; ++_i1763) + org.apache.thrift.protocol.TMap _map1724 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map1724.size); + long _key1725; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1726; + for (int _i1727 = 0; _i1727 < _map1724.size; ++_i1727) { - _key1761 = iprot.readI64(); + _key1725 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1764 = iprot.readSetBegin(); - _val1762 = new java.util.LinkedHashSet(2*_set1764.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1765; - for (int _i1766 = 0; _i1766 < _set1764.size; ++_i1766) + org.apache.thrift.protocol.TMap _map1728 = iprot.readMapBegin(); + _val1726 = new java.util.LinkedHashMap>(2*_map1728.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1729; + @org.apache.thrift.annotation.Nullable java.util.Set _val1730; + for (int _i1731 = 0; _i1731 < _map1728.size; ++_i1731) { - _elem1765 = new com.cinchapi.concourse.thrift.TObject(); - _elem1765.read(iprot); - _val1762.add(_elem1765); + _key1729 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set1732 = iprot.readSetBegin(); + _val1730 = new java.util.LinkedHashSet(2*_set1732.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1733; + for (int _i1734 = 0; _i1734 < _set1732.size; ++_i1734) + { + _elem1733 = new com.cinchapi.concourse.thrift.TObject(); + _elem1733.read(iprot); + _val1730.add(_elem1733); + } + iprot.readSetEnd(); + } + _val1726.put(_key1729, _val1730); } - iprot.readSetEnd(); + iprot.readMapEnd(); } - struct.success.put(_key1761, _val1762); + struct.success.put(_key1725, _val1726); } iprot.readMapEnd(); } @@ -231408,24 +230601,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1767 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter1735 : struct.success.entrySet()) { - oprot.writeI64(_iter1767.getKey()); + oprot.writeI64(_iter1735.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1767.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1768 : _iter1767.getValue()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter1735.getValue().size())); + for (java.util.Map.Entry> _iter1736 : _iter1735.getValue().entrySet()) { - _iter1768.write(oprot); + oprot.writeString(_iter1736.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1736.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1737 : _iter1736.getValue()) + { + _iter1737.write(oprot); + } + oprot.writeSetEnd(); + } } - oprot.writeSetEnd(); + oprot.writeMapEnd(); } } oprot.writeMapEnd(); @@ -231453,17 +230654,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecords_r } - private static class selectKeyRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecords_resultTupleScheme getScheme() { - return new selectKeyRecords_resultTupleScheme(); + public selectKeysRecordsOrderPage_resultTupleScheme getScheme() { + return new selectKeysRecordsOrderPage_resultTupleScheme(); } } - private static class selectKeyRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -231482,14 +230683,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_re if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1769 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter1738 : struct.success.entrySet()) { - oprot.writeI64(_iter1769.getKey()); + oprot.writeI64(_iter1738.getKey()); { - oprot.writeI32(_iter1769.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1770 : _iter1769.getValue()) + oprot.writeI32(_iter1738.getValue().size()); + for (java.util.Map.Entry> _iter1739 : _iter1738.getValue().entrySet()) { - _iter1770.write(oprot); + oprot.writeString(_iter1739.getKey()); + { + oprot.writeI32(_iter1739.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1740 : _iter1739.getValue()) + { + _iter1740.write(oprot); + } + } } } } @@ -231507,30 +230715,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1771 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1771.size); - long _key1772; - @org.apache.thrift.annotation.Nullable java.util.Set _val1773; - for (int _i1774 = 0; _i1774 < _map1771.size; ++_i1774) + org.apache.thrift.protocol.TMap _map1741 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map1741.size); + long _key1742; + @org.apache.thrift.annotation.Nullable java.util.Map> _val1743; + for (int _i1744 = 0; _i1744 < _map1741.size; ++_i1744) { - _key1772 = iprot.readI64(); + _key1742 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1775 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1773 = new java.util.LinkedHashSet(2*_set1775.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1776; - for (int _i1777 = 0; _i1777 < _set1775.size; ++_i1777) + org.apache.thrift.protocol.TMap _map1745 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val1743 = new java.util.LinkedHashMap>(2*_map1745.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key1746; + @org.apache.thrift.annotation.Nullable java.util.Set _val1747; + for (int _i1748 = 0; _i1748 < _map1745.size; ++_i1748) { - _elem1776 = new com.cinchapi.concourse.thrift.TObject(); - _elem1776.read(iprot); - _val1773.add(_elem1776); + _key1746 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set1749 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1747 = new java.util.LinkedHashSet(2*_set1749.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1750; + for (int _i1751 = 0; _i1751 < _set1749.size; ++_i1751) + { + _elem1750 = new com.cinchapi.concourse.thrift.TObject(); + _elem1750.read(iprot); + _val1747.add(_elem1750); + } + } + _val1743.put(_key1746, _val1747); } } - struct.success.put(_key1772, _val1773); + struct.success.put(_key1742, _val1743); } } struct.setSuccessIsSet(true); @@ -231558,22 +230777,20 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsPage_args"); + public static class selectKeyRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecords_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -231582,10 +230799,9 @@ public static class selectKeyRecordsPage_args implements org.apache.thrift.TBase public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -231605,13 +230821,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORDS return RECORDS; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -231664,8 +230878,6 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -231673,16 +230885,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecords_args.class, metaDataMap); } - public selectKeyRecordsPage_args() { + public selectKeyRecords_args() { } - public selectKeyRecordsPage_args( + public selectKeyRecords_args( java.lang.String key, java.util.List records, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -231690,7 +230901,6 @@ public selectKeyRecordsPage_args( this(); this.key = key; this.records = records; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -231699,7 +230909,7 @@ public selectKeyRecordsPage_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsPage_args(selectKeyRecordsPage_args other) { + public selectKeyRecords_args(selectKeyRecords_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -231707,9 +230917,6 @@ public selectKeyRecordsPage_args(selectKeyRecordsPage_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -231722,15 +230929,14 @@ public selectKeyRecordsPage_args(selectKeyRecordsPage_args other) { } @Override - public selectKeyRecordsPage_args deepCopy() { - return new selectKeyRecordsPage_args(this); + public selectKeyRecords_args deepCopy() { + return new selectKeyRecords_args(this); } @Override public void clear() { this.key = null; this.records = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -231741,7 +230947,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -231782,7 +230988,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -231802,37 +231008,12 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeyRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -231857,7 +231038,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -231882,7 +231063,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -231921,14 +231102,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -231966,9 +231139,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -231994,8 +231164,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORDS: return isSetRecords(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -232008,12 +231176,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsPage_args) - return this.equals((selectKeyRecordsPage_args)that); + if (that instanceof selectKeyRecords_args) + return this.equals((selectKeyRecords_args)that); return false; } - public boolean equals(selectKeyRecordsPage_args that) { + public boolean equals(selectKeyRecords_args that) { if (that == null) return false; if (this == that) @@ -232037,15 +231205,6 @@ public boolean equals(selectKeyRecordsPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -232088,10 +231247,6 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -232108,7 +231263,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsPage_args other) { + public int compareTo(selectKeyRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -232135,16 +231290,6 @@ public int compareTo(selectKeyRecordsPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -232196,7 +231341,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecords_args("); boolean first = true; sb.append("key:"); @@ -232215,14 +231360,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -232253,9 +231390,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -232280,17 +231414,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsPage_argsStandardScheme getScheme() { - return new selectKeyRecordsPage_argsStandardScheme(); + public selectKeyRecords_argsStandardScheme getScheme() { + return new selectKeyRecords_argsStandardScheme(); } } - private static class selectKeyRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -232311,13 +231445,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPag case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1778 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1778.size); - long _elem1779; - for (int _i1780 = 0; _i1780 < _list1778.size; ++_i1780) + org.apache.thrift.protocol.TList _list1752 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1752.size); + long _elem1753; + for (int _i1754 = 0; _i1754 < _list1752.size; ++_i1754) { - _elem1779 = iprot.readI64(); - struct.records.add(_elem1779); + _elem1753 = iprot.readI64(); + struct.records.add(_elem1753); } iprot.readListEnd(); } @@ -232326,16 +231460,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -232344,7 +231469,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -232353,7 +231478,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -232373,7 +231498,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPag } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -232386,19 +231511,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsPa oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1781 : struct.records) + for (long _iter1755 : struct.records) { - oprot.writeI64(_iter1781); + oprot.writeI64(_iter1755); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -232420,17 +231540,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsPa } - private static class selectKeyRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsPage_argsTupleScheme getScheme() { - return new selectKeyRecordsPage_argsTupleScheme(); + public selectKeyRecords_argsTupleScheme getScheme() { + return new selectKeyRecords_argsTupleScheme(); } } - private static class selectKeyRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -232439,34 +231559,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPag if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1782 : struct.records) + for (long _iter1756 : struct.records) { - oprot.writeI64(_iter1782); + oprot.writeI64(_iter1756); } } } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -232479,42 +231593,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPag } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1783 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1783.size); - long _elem1784; - for (int _i1785 = 0; _i1785 < _list1783.size; ++_i1785) + org.apache.thrift.protocol.TList _list1757 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1757.size); + long _elem1758; + for (int _i1759 = 0; _i1759 < _list1757.size; ++_i1759) { - _elem1784 = iprot.readI64(); - struct.records.add(_elem1784); + _elem1758 = iprot.readI64(); + struct.records.add(_elem1758); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -232526,16 +231635,16 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsPage_result"); + public static class selectKeyRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecords_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -232629,13 +231738,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecords_result.class, metaDataMap); } - public selectKeyRecordsPage_result() { + public selectKeyRecords_result() { } - public selectKeyRecordsPage_result( + public selectKeyRecords_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -232651,7 +231760,7 @@ public selectKeyRecordsPage_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsPage_result(selectKeyRecordsPage_result other) { + public selectKeyRecords_result(selectKeyRecords_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -232682,8 +231791,8 @@ public selectKeyRecordsPage_result(selectKeyRecordsPage_result other) { } @Override - public selectKeyRecordsPage_result deepCopy() { - return new selectKeyRecordsPage_result(this); + public selectKeyRecords_result deepCopy() { + return new selectKeyRecords_result(this); } @Override @@ -232710,7 +231819,7 @@ public java.util.Map> success) { + public selectKeyRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -232735,7 +231844,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -232760,7 +231869,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -232785,7 +231894,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -232885,12 +231994,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsPage_result) - return this.equals((selectKeyRecordsPage_result)that); + if (that instanceof selectKeyRecords_result) + return this.equals((selectKeyRecords_result)that); return false; } - public boolean equals(selectKeyRecordsPage_result that) { + public boolean equals(selectKeyRecords_result that) { if (that == null) return false; if (this == that) @@ -232959,7 +232068,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsPage_result other) { + public int compareTo(selectKeyRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -233026,7 +232135,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecords_result("); boolean first = true; sb.append("success:"); @@ -233085,17 +232194,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsPage_resultStandardScheme getScheme() { - return new selectKeyRecordsPage_resultStandardScheme(); + public selectKeyRecords_resultStandardScheme getScheme() { + return new selectKeyRecords_resultStandardScheme(); } } - private static class selectKeyRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -233108,26 +232217,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPag case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1786 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1786.size); - long _key1787; - @org.apache.thrift.annotation.Nullable java.util.Set _val1788; - for (int _i1789 = 0; _i1789 < _map1786.size; ++_i1789) + org.apache.thrift.protocol.TMap _map1760 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1760.size); + long _key1761; + @org.apache.thrift.annotation.Nullable java.util.Set _val1762; + for (int _i1763 = 0; _i1763 < _map1760.size; ++_i1763) { - _key1787 = iprot.readI64(); + _key1761 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1790 = iprot.readSetBegin(); - _val1788 = new java.util.LinkedHashSet(2*_set1790.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1791; - for (int _i1792 = 0; _i1792 < _set1790.size; ++_i1792) + org.apache.thrift.protocol.TSet _set1764 = iprot.readSetBegin(); + _val1762 = new java.util.LinkedHashSet(2*_set1764.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1765; + for (int _i1766 = 0; _i1766 < _set1764.size; ++_i1766) { - _elem1791 = new com.cinchapi.concourse.thrift.TObject(); - _elem1791.read(iprot); - _val1788.add(_elem1791); + _elem1765 = new com.cinchapi.concourse.thrift.TObject(); + _elem1765.read(iprot); + _val1762.add(_elem1765); } iprot.readSetEnd(); } - struct.success.put(_key1787, _val1788); + struct.success.put(_key1761, _val1762); } iprot.readMapEnd(); } @@ -233175,7 +232284,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPag } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -233183,14 +232292,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsPa oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1793 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1767 : struct.success.entrySet()) { - oprot.writeI64(_iter1793.getKey()); + oprot.writeI64(_iter1767.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1793.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1794 : _iter1793.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1767.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1768 : _iter1767.getValue()) { - _iter1794.write(oprot); + _iter1768.write(oprot); } oprot.writeSetEnd(); } @@ -233220,17 +232329,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsPa } - private static class selectKeyRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsPage_resultTupleScheme getScheme() { - return new selectKeyRecordsPage_resultTupleScheme(); + public selectKeyRecords_resultTupleScheme getScheme() { + return new selectKeyRecords_resultTupleScheme(); } } - private static class selectKeyRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -233249,14 +232358,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPag if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1795 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1769 : struct.success.entrySet()) { - oprot.writeI64(_iter1795.getKey()); + oprot.writeI64(_iter1769.getKey()); { - oprot.writeI32(_iter1795.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1796 : _iter1795.getValue()) + oprot.writeI32(_iter1769.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1770 : _iter1769.getValue()) { - _iter1796.write(oprot); + _iter1770.write(oprot); } } } @@ -233274,30 +232383,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPag } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1797 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1797.size); - long _key1798; - @org.apache.thrift.annotation.Nullable java.util.Set _val1799; - for (int _i1800 = 0; _i1800 < _map1797.size; ++_i1800) + org.apache.thrift.protocol.TMap _map1771 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1771.size); + long _key1772; + @org.apache.thrift.annotation.Nullable java.util.Set _val1773; + for (int _i1774 = 0; _i1774 < _map1771.size; ++_i1774) { - _key1798 = iprot.readI64(); + _key1772 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1801 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1799 = new java.util.LinkedHashSet(2*_set1801.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1802; - for (int _i1803 = 0; _i1803 < _set1801.size; ++_i1803) + org.apache.thrift.protocol.TSet _set1775 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1773 = new java.util.LinkedHashSet(2*_set1775.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1776; + for (int _i1777 = 0; _i1777 < _set1775.size; ++_i1777) { - _elem1802 = new com.cinchapi.concourse.thrift.TObject(); - _elem1802.read(iprot); - _val1799.add(_elem1802); + _elem1776 = new com.cinchapi.concourse.thrift.TObject(); + _elem1776.read(iprot); + _val1773.add(_elem1776); } } - struct.success.put(_key1798, _val1799); + struct.success.put(_key1772, _val1773); } } struct.setSuccessIsSet(true); @@ -233325,22 +232434,22 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsOrder_args"); + public static class selectKeyRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -233349,7 +232458,7 @@ public static class selectKeyRecordsOrder_args implements org.apache.thrift.TBas public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -233372,8 +232481,8 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORDS return RECORDS; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -233431,8 +232540,8 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -233440,16 +232549,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsPage_args.class, metaDataMap); } - public selectKeyRecordsOrder_args() { + public selectKeyRecordsPage_args() { } - public selectKeyRecordsOrder_args( + public selectKeyRecordsPage_args( java.lang.String key, java.util.List records, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -233457,7 +232566,7 @@ public selectKeyRecordsOrder_args( this(); this.key = key; this.records = records; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -233466,7 +232575,7 @@ public selectKeyRecordsOrder_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsOrder_args(selectKeyRecordsOrder_args other) { + public selectKeyRecordsPage_args(selectKeyRecordsPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -233474,8 +232583,8 @@ public selectKeyRecordsOrder_args(selectKeyRecordsOrder_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -233489,15 +232598,15 @@ public selectKeyRecordsOrder_args(selectKeyRecordsOrder_args other) { } @Override - public selectKeyRecordsOrder_args deepCopy() { - return new selectKeyRecordsOrder_args(this); + public selectKeyRecordsPage_args deepCopy() { + return new selectKeyRecordsPage_args(this); } @Override public void clear() { this.key = null; this.records = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -233508,7 +232617,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -233549,7 +232658,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -233570,27 +232679,27 @@ public void setRecordsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeyRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeyRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -233599,7 +232708,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -233624,7 +232733,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -233649,7 +232758,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -233688,11 +232797,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -233733,8 +232842,8 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -233761,8 +232870,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORDS: return isSetRecords(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -233775,12 +232884,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsOrder_args) - return this.equals((selectKeyRecordsOrder_args)that); + if (that instanceof selectKeyRecordsPage_args) + return this.equals((selectKeyRecordsPage_args)that); return false; } - public boolean equals(selectKeyRecordsOrder_args that) { + public boolean equals(selectKeyRecordsPage_args that) { if (that == null) return false; if (this == that) @@ -233804,12 +232913,12 @@ public boolean equals(selectKeyRecordsOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -233855,9 +232964,9 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -233875,7 +232984,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsOrder_args other) { + public int compareTo(selectKeyRecordsPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -233902,12 +233011,12 @@ public int compareTo(selectKeyRecordsOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -233963,7 +233072,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsPage_args("); boolean first = true; sb.append("key:"); @@ -233982,11 +233091,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -234020,8 +233129,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -234047,17 +233156,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsOrder_argsStandardScheme getScheme() { - return new selectKeyRecordsOrder_argsStandardScheme(); + public selectKeyRecordsPage_argsStandardScheme getScheme() { + return new selectKeyRecordsPage_argsStandardScheme(); } } - private static class selectKeyRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -234078,13 +233187,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1804 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1804.size); - long _elem1805; - for (int _i1806 = 0; _i1806 < _list1804.size; ++_i1806) + org.apache.thrift.protocol.TList _list1778 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1778.size); + long _elem1779; + for (int _i1780 = 0; _i1780 < _list1778.size; ++_i1780) { - _elem1805 = iprot.readI64(); - struct.records.add(_elem1805); + _elem1779 = iprot.readI64(); + struct.records.add(_elem1779); } iprot.readListEnd(); } @@ -234093,11 +233202,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -234140,7 +233249,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -234153,17 +233262,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1807 : struct.records) + for (long _iter1781 : struct.records) { - oprot.writeI64(_iter1807); + oprot.writeI64(_iter1781); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -234187,17 +233296,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr } - private static class selectKeyRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsOrder_argsTupleScheme getScheme() { - return new selectKeyRecordsOrder_argsTupleScheme(); + public selectKeyRecordsPage_argsTupleScheme getScheme() { + return new selectKeyRecordsPage_argsTupleScheme(); } } - private static class selectKeyRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -234206,7 +233315,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -234225,14 +233334,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1808 : struct.records) + for (long _iter1782 : struct.records) { - oprot.writeI64(_iter1808); + oprot.writeI64(_iter1782); } } } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -234246,7 +233355,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -234255,21 +233364,21 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrde } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1809 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1809.size); - long _elem1810; - for (int _i1811 = 0; _i1811 < _list1809.size; ++_i1811) + org.apache.thrift.protocol.TList _list1783 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1783.size); + long _elem1784; + for (int _i1785 = 0; _i1785 < _list1783.size; ++_i1785) { - _elem1810 = iprot.readI64(); - struct.records.add(_elem1810); + _elem1784 = iprot.readI64(); + struct.records.add(_elem1784); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -234293,16 +233402,16 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsOrder_result"); + public static class selectKeyRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -234396,13 +233505,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsPage_result.class, metaDataMap); } - public selectKeyRecordsOrder_result() { + public selectKeyRecordsPage_result() { } - public selectKeyRecordsOrder_result( + public selectKeyRecordsPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -234418,7 +233527,7 @@ public selectKeyRecordsOrder_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsOrder_result(selectKeyRecordsOrder_result other) { + public selectKeyRecordsPage_result(selectKeyRecordsPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -234449,8 +233558,8 @@ public selectKeyRecordsOrder_result(selectKeyRecordsOrder_result other) { } @Override - public selectKeyRecordsOrder_result deepCopy() { - return new selectKeyRecordsOrder_result(this); + public selectKeyRecordsPage_result deepCopy() { + return new selectKeyRecordsPage_result(this); } @Override @@ -234477,7 +233586,7 @@ public java.util.Map> success) { + public selectKeyRecordsPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -234502,7 +233611,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -234527,7 +233636,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -234552,7 +233661,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -234652,12 +233761,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsOrder_result) - return this.equals((selectKeyRecordsOrder_result)that); + if (that instanceof selectKeyRecordsPage_result) + return this.equals((selectKeyRecordsPage_result)that); return false; } - public boolean equals(selectKeyRecordsOrder_result that) { + public boolean equals(selectKeyRecordsPage_result that) { if (that == null) return false; if (this == that) @@ -234726,7 +233835,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsOrder_result other) { + public int compareTo(selectKeyRecordsPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -234793,7 +233902,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsPage_result("); boolean first = true; sb.append("success:"); @@ -234852,17 +233961,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsOrder_resultStandardScheme getScheme() { - return new selectKeyRecordsOrder_resultStandardScheme(); + public selectKeyRecordsPage_resultStandardScheme getScheme() { + return new selectKeyRecordsPage_resultStandardScheme(); } } - private static class selectKeyRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -234875,26 +233984,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1812 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1812.size); - long _key1813; - @org.apache.thrift.annotation.Nullable java.util.Set _val1814; - for (int _i1815 = 0; _i1815 < _map1812.size; ++_i1815) + org.apache.thrift.protocol.TMap _map1786 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1786.size); + long _key1787; + @org.apache.thrift.annotation.Nullable java.util.Set _val1788; + for (int _i1789 = 0; _i1789 < _map1786.size; ++_i1789) { - _key1813 = iprot.readI64(); + _key1787 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1816 = iprot.readSetBegin(); - _val1814 = new java.util.LinkedHashSet(2*_set1816.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1817; - for (int _i1818 = 0; _i1818 < _set1816.size; ++_i1818) + org.apache.thrift.protocol.TSet _set1790 = iprot.readSetBegin(); + _val1788 = new java.util.LinkedHashSet(2*_set1790.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1791; + for (int _i1792 = 0; _i1792 < _set1790.size; ++_i1792) { - _elem1817 = new com.cinchapi.concourse.thrift.TObject(); - _elem1817.read(iprot); - _val1814.add(_elem1817); + _elem1791 = new com.cinchapi.concourse.thrift.TObject(); + _elem1791.read(iprot); + _val1788.add(_elem1791); } iprot.readSetEnd(); } - struct.success.put(_key1813, _val1814); + struct.success.put(_key1787, _val1788); } iprot.readMapEnd(); } @@ -234942,7 +234051,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -234950,14 +234059,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1819 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1793 : struct.success.entrySet()) { - oprot.writeI64(_iter1819.getKey()); + oprot.writeI64(_iter1793.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1819.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1820 : _iter1819.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1793.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1794 : _iter1793.getValue()) { - _iter1820.write(oprot); + _iter1794.write(oprot); } oprot.writeSetEnd(); } @@ -234987,17 +234096,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr } - private static class selectKeyRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsOrder_resultTupleScheme getScheme() { - return new selectKeyRecordsOrder_resultTupleScheme(); + public selectKeyRecordsPage_resultTupleScheme getScheme() { + return new selectKeyRecordsPage_resultTupleScheme(); } } - private static class selectKeyRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -235016,14 +234125,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1821 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1795 : struct.success.entrySet()) { - oprot.writeI64(_iter1821.getKey()); + oprot.writeI64(_iter1795.getKey()); { - oprot.writeI32(_iter1821.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1822 : _iter1821.getValue()) + oprot.writeI32(_iter1795.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1796 : _iter1795.getValue()) { - _iter1822.write(oprot); + _iter1796.write(oprot); } } } @@ -235041,30 +234150,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1823 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1823.size); - long _key1824; - @org.apache.thrift.annotation.Nullable java.util.Set _val1825; - for (int _i1826 = 0; _i1826 < _map1823.size; ++_i1826) + org.apache.thrift.protocol.TMap _map1797 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1797.size); + long _key1798; + @org.apache.thrift.annotation.Nullable java.util.Set _val1799; + for (int _i1800 = 0; _i1800 < _map1797.size; ++_i1800) { - _key1824 = iprot.readI64(); + _key1798 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1827 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1825 = new java.util.LinkedHashSet(2*_set1827.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1828; - for (int _i1829 = 0; _i1829 < _set1827.size; ++_i1829) + org.apache.thrift.protocol.TSet _set1801 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1799 = new java.util.LinkedHashSet(2*_set1801.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1802; + for (int _i1803 = 0; _i1803 < _set1801.size; ++_i1803) { - _elem1828 = new com.cinchapi.concourse.thrift.TObject(); - _elem1828.read(iprot); - _val1825.add(_elem1828); + _elem1802 = new com.cinchapi.concourse.thrift.TObject(); + _elem1802.read(iprot); + _val1799.add(_elem1802); } } - struct.success.put(_key1824, _val1825); + struct.success.put(_key1798, _val1799); } } struct.setSuccessIsSet(true); @@ -235092,24 +234201,22 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsOrderPage_args"); + public static class selectKeyRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -235119,10 +234226,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -235144,13 +234250,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -235205,8 +234309,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -235214,17 +234316,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsOrder_args.class, metaDataMap); } - public selectKeyRecordsOrderPage_args() { + public selectKeyRecordsOrder_args() { } - public selectKeyRecordsOrderPage_args( + public selectKeyRecordsOrder_args( java.lang.String key, java.util.List records, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -235233,7 +234334,6 @@ public selectKeyRecordsOrderPage_args( this.key = key; this.records = records; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -235242,7 +234342,7 @@ public selectKeyRecordsOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsOrderPage_args(selectKeyRecordsOrderPage_args other) { + public selectKeyRecordsOrder_args(selectKeyRecordsOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -235253,9 +234353,6 @@ public selectKeyRecordsOrderPage_args(selectKeyRecordsOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -235268,8 +234365,8 @@ public selectKeyRecordsOrderPage_args(selectKeyRecordsOrderPage_args other) { } @Override - public selectKeyRecordsOrderPage_args deepCopy() { - return new selectKeyRecordsOrderPage_args(this); + public selectKeyRecordsOrder_args deepCopy() { + return new selectKeyRecordsOrder_args(this); } @Override @@ -235277,7 +234374,6 @@ public void clear() { this.key = null; this.records = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -235288,7 +234384,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -235329,7 +234425,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -235354,7 +234450,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeyRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeyRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -235374,37 +234470,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeyRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -235429,7 +234500,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -235454,7 +234525,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -235501,14 +234572,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -235549,9 +234612,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -235579,8 +234639,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -235593,12 +234651,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsOrderPage_args) - return this.equals((selectKeyRecordsOrderPage_args)that); + if (that instanceof selectKeyRecordsOrder_args) + return this.equals((selectKeyRecordsOrder_args)that); return false; } - public boolean equals(selectKeyRecordsOrderPage_args that) { + public boolean equals(selectKeyRecordsOrder_args that) { if (that == null) return false; if (this == that) @@ -235631,15 +234689,6 @@ public boolean equals(selectKeyRecordsOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -235686,10 +234735,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -235706,7 +234751,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsOrderPage_args other) { + public int compareTo(selectKeyRecordsOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -235743,16 +234788,6 @@ public int compareTo(selectKeyRecordsOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -235804,7 +234839,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsOrder_args("); boolean first = true; sb.append("key:"); @@ -235831,14 +234866,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -235872,9 +234899,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -235899,17 +234923,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsOrderPage_argsStandardScheme getScheme() { - return new selectKeyRecordsOrderPage_argsStandardScheme(); + public selectKeyRecordsOrder_argsStandardScheme getScheme() { + return new selectKeyRecordsOrder_argsStandardScheme(); } } - private static class selectKeyRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -235930,13 +234954,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1830 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1830.size); - long _elem1831; - for (int _i1832 = 0; _i1832 < _list1830.size; ++_i1832) + org.apache.thrift.protocol.TList _list1804 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1804.size); + long _elem1805; + for (int _i1806 = 0; _i1806 < _list1804.size; ++_i1806) { - _elem1831 = iprot.readI64(); - struct.records.add(_elem1831); + _elem1805 = iprot.readI64(); + struct.records.add(_elem1805); } iprot.readListEnd(); } @@ -235954,16 +234978,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -235972,7 +234987,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -235981,7 +234996,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -236001,7 +235016,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -236014,9 +235029,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1833 : struct.records) + for (long _iter1807 : struct.records) { - oprot.writeI64(_iter1833); + oprot.writeI64(_iter1807); } oprot.writeListEnd(); } @@ -236027,11 +235042,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -236053,17 +235063,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr } - private static class selectKeyRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsOrderPage_argsTupleScheme getScheme() { - return new selectKeyRecordsOrderPage_argsTupleScheme(); + public selectKeyRecordsOrder_argsTupleScheme getScheme() { + return new selectKeyRecordsOrder_argsTupleScheme(); } } - private static class selectKeyRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -236075,37 +235085,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1834 : struct.records) + for (long _iter1808 : struct.records) { - oprot.writeI64(_iter1834); + oprot.writeI64(_iter1808); } } } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -236118,22 +235122,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1835 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1835.size); - long _elem1836; - for (int _i1837 = 0; _i1837 < _list1835.size; ++_i1837) + org.apache.thrift.protocol.TList _list1809 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1809.size); + long _elem1810; + for (int _i1811 = 0; _i1811 < _list1809.size; ++_i1811) { - _elem1836 = iprot.readI64(); - struct.records.add(_elem1836); + _elem1810 = iprot.readI64(); + struct.records.add(_elem1810); } } struct.setRecordsIsSet(true); @@ -236144,21 +235148,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrde struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -236170,16 +235169,16 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsOrderPage_result"); + public static class selectKeyRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -236273,13 +235272,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsOrder_result.class, metaDataMap); } - public selectKeyRecordsOrderPage_result() { + public selectKeyRecordsOrder_result() { } - public selectKeyRecordsOrderPage_result( + public selectKeyRecordsOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -236295,7 +235294,7 @@ public selectKeyRecordsOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsOrderPage_result(selectKeyRecordsOrderPage_result other) { + public selectKeyRecordsOrder_result(selectKeyRecordsOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -236326,8 +235325,8 @@ public selectKeyRecordsOrderPage_result(selectKeyRecordsOrderPage_result other) } @Override - public selectKeyRecordsOrderPage_result deepCopy() { - return new selectKeyRecordsOrderPage_result(this); + public selectKeyRecordsOrder_result deepCopy() { + return new selectKeyRecordsOrder_result(this); } @Override @@ -236354,7 +235353,7 @@ public java.util.Map> success) { + public selectKeyRecordsOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -236379,7 +235378,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -236404,7 +235403,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -236429,7 +235428,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -236529,12 +235528,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsOrderPage_result) - return this.equals((selectKeyRecordsOrderPage_result)that); + if (that instanceof selectKeyRecordsOrder_result) + return this.equals((selectKeyRecordsOrder_result)that); return false; } - public boolean equals(selectKeyRecordsOrderPage_result that) { + public boolean equals(selectKeyRecordsOrder_result that) { if (that == null) return false; if (this == that) @@ -236603,7 +235602,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsOrderPage_result other) { + public int compareTo(selectKeyRecordsOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -236670,7 +235669,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsOrder_result("); boolean first = true; sb.append("success:"); @@ -236729,17 +235728,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsOrderPage_resultStandardScheme getScheme() { - return new selectKeyRecordsOrderPage_resultStandardScheme(); + public selectKeyRecordsOrder_resultStandardScheme getScheme() { + return new selectKeyRecordsOrder_resultStandardScheme(); } } - private static class selectKeyRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -236752,26 +235751,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1838 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1838.size); - long _key1839; - @org.apache.thrift.annotation.Nullable java.util.Set _val1840; - for (int _i1841 = 0; _i1841 < _map1838.size; ++_i1841) + org.apache.thrift.protocol.TMap _map1812 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1812.size); + long _key1813; + @org.apache.thrift.annotation.Nullable java.util.Set _val1814; + for (int _i1815 = 0; _i1815 < _map1812.size; ++_i1815) { - _key1839 = iprot.readI64(); + _key1813 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1842 = iprot.readSetBegin(); - _val1840 = new java.util.LinkedHashSet(2*_set1842.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1843; - for (int _i1844 = 0; _i1844 < _set1842.size; ++_i1844) + org.apache.thrift.protocol.TSet _set1816 = iprot.readSetBegin(); + _val1814 = new java.util.LinkedHashSet(2*_set1816.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1817; + for (int _i1818 = 0; _i1818 < _set1816.size; ++_i1818) { - _elem1843 = new com.cinchapi.concourse.thrift.TObject(); - _elem1843.read(iprot); - _val1840.add(_elem1843); + _elem1817 = new com.cinchapi.concourse.thrift.TObject(); + _elem1817.read(iprot); + _val1814.add(_elem1817); } iprot.readSetEnd(); } - struct.success.put(_key1839, _val1840); + struct.success.put(_key1813, _val1814); } iprot.readMapEnd(); } @@ -236819,7 +235818,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -236827,14 +235826,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1845 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1819 : struct.success.entrySet()) { - oprot.writeI64(_iter1845.getKey()); + oprot.writeI64(_iter1819.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1845.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1846 : _iter1845.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1819.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1820 : _iter1819.getValue()) { - _iter1846.write(oprot); + _iter1820.write(oprot); } oprot.writeSetEnd(); } @@ -236864,17 +235863,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOr } - private static class selectKeyRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsOrderPage_resultTupleScheme getScheme() { - return new selectKeyRecordsOrderPage_resultTupleScheme(); + public selectKeyRecordsOrder_resultTupleScheme getScheme() { + return new selectKeyRecordsOrder_resultTupleScheme(); } } - private static class selectKeyRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -236893,14 +235892,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1847 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1821 : struct.success.entrySet()) { - oprot.writeI64(_iter1847.getKey()); + oprot.writeI64(_iter1821.getKey()); { - oprot.writeI32(_iter1847.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1848 : _iter1847.getValue()) + oprot.writeI32(_iter1821.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1822 : _iter1821.getValue()) { - _iter1848.write(oprot); + _iter1822.write(oprot); } } } @@ -236918,30 +235917,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1849 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1849.size); - long _key1850; - @org.apache.thrift.annotation.Nullable java.util.Set _val1851; - for (int _i1852 = 0; _i1852 < _map1849.size; ++_i1852) + org.apache.thrift.protocol.TMap _map1823 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1823.size); + long _key1824; + @org.apache.thrift.annotation.Nullable java.util.Set _val1825; + for (int _i1826 = 0; _i1826 < _map1823.size; ++_i1826) { - _key1850 = iprot.readI64(); + _key1824 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1853 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1851 = new java.util.LinkedHashSet(2*_set1853.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1854; - for (int _i1855 = 0; _i1855 < _set1853.size; ++_i1855) + org.apache.thrift.protocol.TSet _set1827 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1825 = new java.util.LinkedHashSet(2*_set1827.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1828; + for (int _i1829 = 0; _i1829 < _set1827.size; ++_i1829) { - _elem1854 = new com.cinchapi.concourse.thrift.TObject(); - _elem1854.read(iprot); - _val1851.add(_elem1854); + _elem1828 = new com.cinchapi.concourse.thrift.TObject(); + _elem1828.read(iprot); + _val1825.add(_elem1828); } } - struct.success.put(_key1850, _val1851); + struct.success.put(_key1824, _val1825); } } struct.setSuccessIsSet(true); @@ -236969,22 +235968,24 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTime_args"); + public static class selectKeyRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -236993,10 +235994,11 @@ public static class selectKeyRecordsTime_args implements org.apache.thrift.TBase public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), - TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -237016,13 +236018,15 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORDS return RECORDS; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 5: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -237067,8 +236071,6 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -237077,8 +236079,10 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -237086,16 +236090,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsOrderPage_args.class, metaDataMap); } - public selectKeyRecordsTime_args() { + public selectKeyRecordsOrderPage_args() { } - public selectKeyRecordsTime_args( + public selectKeyRecordsOrderPage_args( java.lang.String key, java.util.List records, - long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -237103,8 +236108,8 @@ public selectKeyRecordsTime_args( this(); this.key = key; this.records = records; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -237113,8 +236118,7 @@ public selectKeyRecordsTime_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsTime_args(selectKeyRecordsTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public selectKeyRecordsOrderPage_args(selectKeyRecordsOrderPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -237122,7 +236126,12 @@ public selectKeyRecordsTime_args(selectKeyRecordsTime_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -237135,16 +236144,16 @@ public selectKeyRecordsTime_args(selectKeyRecordsTime_args other) { } @Override - public selectKeyRecordsTime_args deepCopy() { - return new selectKeyRecordsTime_args(this); + public selectKeyRecordsOrderPage_args deepCopy() { + return new selectKeyRecordsOrderPage_args(this); } @Override public void clear() { this.key = null; this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -237155,7 +236164,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -237196,7 +236205,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -237216,27 +236225,54 @@ public void setRecordsIsSet(boolean value) { } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public selectKeyRecordsTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public selectKeyRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeyRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -237244,7 +236280,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -237269,7 +236305,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -237294,7 +236330,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -237333,11 +236369,19 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -237378,8 +236422,11 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -237406,8 +236453,10 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORDS: return isSetRecords(); - case TIMESTAMP: - return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -237420,12 +236469,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTime_args) - return this.equals((selectKeyRecordsTime_args)that); + if (that instanceof selectKeyRecordsOrderPage_args) + return this.equals((selectKeyRecordsOrderPage_args)that); return false; } - public boolean equals(selectKeyRecordsTime_args that) { + public boolean equals(selectKeyRecordsOrderPage_args that) { if (that == null) return false; if (this == that) @@ -237449,12 +236498,21 @@ public boolean equals(selectKeyRecordsTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -237500,7 +236558,13 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -237518,7 +236582,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTime_args other) { + public int compareTo(selectKeyRecordsOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -237545,12 +236609,22 @@ public int compareTo(selectKeyRecordsTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -237606,7 +236680,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsOrderPage_args("); boolean first = true; sb.append("key:"); @@ -237625,8 +236699,20 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -237659,6 +236745,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -237677,25 +236769,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeyRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTime_argsStandardScheme getScheme() { - return new selectKeyRecordsTime_argsStandardScheme(); + public selectKeyRecordsOrderPage_argsStandardScheme getScheme() { + return new selectKeyRecordsOrderPage_argsStandardScheme(); } } - private static class selectKeyRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -237716,13 +236806,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1856 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1856.size); - long _elem1857; - for (int _i1858 = 0; _i1858 < _list1856.size; ++_i1858) + org.apache.thrift.protocol.TList _list1830 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1830.size); + long _elem1831; + for (int _i1832 = 0; _i1832 < _list1830.size; ++_i1832) { - _elem1857 = iprot.readI64(); - struct.records.add(_elem1857); + _elem1831 = iprot.readI64(); + struct.records.add(_elem1831); } iprot.readListEnd(); } @@ -237731,15 +236821,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -237748,7 +236848,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -237757,7 +236857,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -237777,7 +236877,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -237790,17 +236890,24 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1859 : struct.records) + for (long _iter1833 : struct.records) { - oprot.writeI64(_iter1859); + oprot.writeI64(_iter1833); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -237822,17 +236929,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTime_argsTupleScheme getScheme() { - return new selectKeyRecordsTime_argsTupleScheme(); + public selectKeyRecordsOrderPage_argsTupleScheme getScheme() { + return new selectKeyRecordsOrderPage_argsTupleScheme(); } } - private static class selectKeyRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -237841,33 +236948,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1860 : struct.records) + for (long _iter1834 : struct.records) { - oprot.writeI64(_iter1860); + oprot.writeI64(_iter1834); } } } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -237881,41 +236994,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1861 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1861.size); - long _elem1862; - for (int _i1863 = 0; _i1863 < _list1861.size; ++_i1863) + org.apache.thrift.protocol.TList _list1835 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1835.size); + long _elem1836; + for (int _i1837 = 0; _i1837 < _list1835.size; ++_i1837) { - _elem1862 = iprot.readI64(); - struct.records.add(_elem1862); + _elem1836 = iprot.readI64(); + struct.records.add(_elem1836); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -237927,16 +237046,16 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTime_result"); + public static class selectKeyRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -238030,13 +237149,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsOrderPage_result.class, metaDataMap); } - public selectKeyRecordsTime_result() { + public selectKeyRecordsOrderPage_result() { } - public selectKeyRecordsTime_result( + public selectKeyRecordsOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -238052,7 +237171,7 @@ public selectKeyRecordsTime_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsTime_result(selectKeyRecordsTime_result other) { + public selectKeyRecordsOrderPage_result(selectKeyRecordsOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -238083,8 +237202,8 @@ public selectKeyRecordsTime_result(selectKeyRecordsTime_result other) { } @Override - public selectKeyRecordsTime_result deepCopy() { - return new selectKeyRecordsTime_result(this); + public selectKeyRecordsOrderPage_result deepCopy() { + return new selectKeyRecordsOrderPage_result(this); } @Override @@ -238111,7 +237230,7 @@ public java.util.Map> success) { + public selectKeyRecordsOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -238136,7 +237255,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -238161,7 +237280,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -238186,7 +237305,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -238286,12 +237405,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTime_result) - return this.equals((selectKeyRecordsTime_result)that); + if (that instanceof selectKeyRecordsOrderPage_result) + return this.equals((selectKeyRecordsOrderPage_result)that); return false; } - public boolean equals(selectKeyRecordsTime_result that) { + public boolean equals(selectKeyRecordsOrderPage_result that) { if (that == null) return false; if (this == that) @@ -238360,7 +237479,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTime_result other) { + public int compareTo(selectKeyRecordsOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -238427,7 +237546,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsOrderPage_result("); boolean first = true; sb.append("success:"); @@ -238486,17 +237605,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTime_resultStandardScheme getScheme() { - return new selectKeyRecordsTime_resultStandardScheme(); + public selectKeyRecordsOrderPage_resultStandardScheme getScheme() { + return new selectKeyRecordsOrderPage_resultStandardScheme(); } } - private static class selectKeyRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -238509,26 +237628,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1864 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1864.size); - long _key1865; - @org.apache.thrift.annotation.Nullable java.util.Set _val1866; - for (int _i1867 = 0; _i1867 < _map1864.size; ++_i1867) + org.apache.thrift.protocol.TMap _map1838 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1838.size); + long _key1839; + @org.apache.thrift.annotation.Nullable java.util.Set _val1840; + for (int _i1841 = 0; _i1841 < _map1838.size; ++_i1841) { - _key1865 = iprot.readI64(); + _key1839 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1868 = iprot.readSetBegin(); - _val1866 = new java.util.LinkedHashSet(2*_set1868.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1869; - for (int _i1870 = 0; _i1870 < _set1868.size; ++_i1870) + org.apache.thrift.protocol.TSet _set1842 = iprot.readSetBegin(); + _val1840 = new java.util.LinkedHashSet(2*_set1842.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1843; + for (int _i1844 = 0; _i1844 < _set1842.size; ++_i1844) { - _elem1869 = new com.cinchapi.concourse.thrift.TObject(); - _elem1869.read(iprot); - _val1866.add(_elem1869); + _elem1843 = new com.cinchapi.concourse.thrift.TObject(); + _elem1843.read(iprot); + _val1840.add(_elem1843); } iprot.readSetEnd(); } - struct.success.put(_key1865, _val1866); + struct.success.put(_key1839, _val1840); } iprot.readMapEnd(); } @@ -238576,7 +237695,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -238584,14 +237703,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1871 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1845 : struct.success.entrySet()) { - oprot.writeI64(_iter1871.getKey()); + oprot.writeI64(_iter1845.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1871.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1872 : _iter1871.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1845.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1846 : _iter1845.getValue()) { - _iter1872.write(oprot); + _iter1846.write(oprot); } oprot.writeSetEnd(); } @@ -238621,17 +237740,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTime_resultTupleScheme getScheme() { - return new selectKeyRecordsTime_resultTupleScheme(); + public selectKeyRecordsOrderPage_resultTupleScheme getScheme() { + return new selectKeyRecordsOrderPage_resultTupleScheme(); } } - private static class selectKeyRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -238650,14 +237769,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1873 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1847 : struct.success.entrySet()) { - oprot.writeI64(_iter1873.getKey()); + oprot.writeI64(_iter1847.getKey()); { - oprot.writeI32(_iter1873.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1874 : _iter1873.getValue()) + oprot.writeI32(_iter1847.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1848 : _iter1847.getValue()) { - _iter1874.write(oprot); + _iter1848.write(oprot); } } } @@ -238675,30 +237794,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1875 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1875.size); - long _key1876; - @org.apache.thrift.annotation.Nullable java.util.Set _val1877; - for (int _i1878 = 0; _i1878 < _map1875.size; ++_i1878) + org.apache.thrift.protocol.TMap _map1849 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1849.size); + long _key1850; + @org.apache.thrift.annotation.Nullable java.util.Set _val1851; + for (int _i1852 = 0; _i1852 < _map1849.size; ++_i1852) { - _key1876 = iprot.readI64(); + _key1850 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1879 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1877 = new java.util.LinkedHashSet(2*_set1879.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1880; - for (int _i1881 = 0; _i1881 < _set1879.size; ++_i1881) + org.apache.thrift.protocol.TSet _set1853 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1851 = new java.util.LinkedHashSet(2*_set1853.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1854; + for (int _i1855 = 0; _i1855 < _set1853.size; ++_i1855) { - _elem1880 = new com.cinchapi.concourse.thrift.TObject(); - _elem1880.read(iprot); - _val1877.add(_elem1880); + _elem1854 = new com.cinchapi.concourse.thrift.TObject(); + _elem1854.read(iprot); + _val1851.add(_elem1854); } } - struct.success.put(_key1876, _val1877); + struct.success.put(_key1850, _val1851); } } struct.setSuccessIsSet(true); @@ -238726,24 +237845,22 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimePage_args"); + public static class selectKeyRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -238753,10 +237870,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -238778,13 +237894,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -238841,8 +237955,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -238850,17 +237962,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTime_args.class, metaDataMap); } - public selectKeyRecordsTimePage_args() { + public selectKeyRecordsTime_args() { } - public selectKeyRecordsTimePage_args( + public selectKeyRecordsTime_args( java.lang.String key, java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -238870,7 +237981,6 @@ public selectKeyRecordsTimePage_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -238879,7 +237989,7 @@ public selectKeyRecordsTimePage_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimePage_args(selectKeyRecordsTimePage_args other) { + public selectKeyRecordsTime_args(selectKeyRecordsTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -238889,9 +237999,6 @@ public selectKeyRecordsTimePage_args(selectKeyRecordsTimePage_args other) { this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -238904,8 +238011,8 @@ public selectKeyRecordsTimePage_args(selectKeyRecordsTimePage_args other) { } @Override - public selectKeyRecordsTimePage_args deepCopy() { - return new selectKeyRecordsTimePage_args(this); + public selectKeyRecordsTime_args deepCopy() { + return new selectKeyRecordsTime_args(this); } @Override @@ -238914,7 +238021,6 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -238925,7 +238031,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -238966,7 +238072,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -238990,7 +238096,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeyRecordsTimePage_args setTimestamp(long timestamp) { + public selectKeyRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -239009,37 +238115,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeyRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -239064,7 +238145,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -239089,7 +238170,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -239136,14 +238217,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -239184,9 +238257,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -239214,8 +238284,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -239228,12 +238296,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimePage_args) - return this.equals((selectKeyRecordsTimePage_args)that); + if (that instanceof selectKeyRecordsTime_args) + return this.equals((selectKeyRecordsTime_args)that); return false; } - public boolean equals(selectKeyRecordsTimePage_args that) { + public boolean equals(selectKeyRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -239266,15 +238334,6 @@ public boolean equals(selectKeyRecordsTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -239319,10 +238378,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -239339,7 +238394,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimePage_args other) { + public int compareTo(selectKeyRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -239376,16 +238431,6 @@ public int compareTo(selectKeyRecordsTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -239437,7 +238482,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTime_args("); boolean first = true; sb.append("key:"); @@ -239460,14 +238505,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -239498,9 +238535,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -239527,17 +238561,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimePage_argsStandardScheme getScheme() { - return new selectKeyRecordsTimePage_argsStandardScheme(); + public selectKeyRecordsTime_argsStandardScheme getScheme() { + return new selectKeyRecordsTime_argsStandardScheme(); } } - private static class selectKeyRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -239558,13 +238592,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1882 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1882.size); - long _elem1883; - for (int _i1884 = 0; _i1884 < _list1882.size; ++_i1884) + org.apache.thrift.protocol.TList _list1856 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1856.size); + long _elem1857; + for (int _i1858 = 0; _i1858 < _list1856.size; ++_i1858) { - _elem1883 = iprot.readI64(); - struct.records.add(_elem1883); + _elem1857 = iprot.readI64(); + struct.records.add(_elem1857); } iprot.readListEnd(); } @@ -239581,16 +238615,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -239599,7 +238624,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -239608,7 +238633,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -239628,7 +238653,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -239641,9 +238666,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1885 : struct.records) + for (long _iter1859 : struct.records) { - oprot.writeI64(_iter1885); + oprot.writeI64(_iter1859); } oprot.writeListEnd(); } @@ -239652,11 +238677,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -239678,17 +238698,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimePage_argsTupleScheme getScheme() { - return new selectKeyRecordsTimePage_argsTupleScheme(); + public selectKeyRecordsTime_argsTupleScheme getScheme() { + return new selectKeyRecordsTime_argsTupleScheme(); } } - private static class selectKeyRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -239700,37 +238720,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1886 : struct.records) + for (long _iter1860 : struct.records) { - oprot.writeI64(_iter1886); + oprot.writeI64(_iter1860); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -239743,22 +238757,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1887 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1887.size); - long _elem1888; - for (int _i1889 = 0; _i1889 < _list1887.size; ++_i1889) + org.apache.thrift.protocol.TList _list1861 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1861.size); + long _elem1862; + for (int _i1863 = 0; _i1863 < _list1861.size; ++_i1863) { - _elem1888 = iprot.readI64(); - struct.records.add(_elem1888); + _elem1862 = iprot.readI64(); + struct.records.add(_elem1862); } } struct.setRecordsIsSet(true); @@ -239768,21 +238782,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -239794,16 +238803,16 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimePage_result"); + public static class selectKeyRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -239897,13 +238906,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTime_result.class, metaDataMap); } - public selectKeyRecordsTimePage_result() { + public selectKeyRecordsTime_result() { } - public selectKeyRecordsTimePage_result( + public selectKeyRecordsTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -239919,7 +238928,7 @@ public selectKeyRecordsTimePage_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimePage_result(selectKeyRecordsTimePage_result other) { + public selectKeyRecordsTime_result(selectKeyRecordsTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -239950,8 +238959,8 @@ public selectKeyRecordsTimePage_result(selectKeyRecordsTimePage_result other) { } @Override - public selectKeyRecordsTimePage_result deepCopy() { - return new selectKeyRecordsTimePage_result(this); + public selectKeyRecordsTime_result deepCopy() { + return new selectKeyRecordsTime_result(this); } @Override @@ -239978,7 +238987,7 @@ public java.util.Map> success) { + public selectKeyRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -240003,7 +239012,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -240028,7 +239037,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -240053,7 +239062,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -240153,12 +239162,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimePage_result) - return this.equals((selectKeyRecordsTimePage_result)that); + if (that instanceof selectKeyRecordsTime_result) + return this.equals((selectKeyRecordsTime_result)that); return false; } - public boolean equals(selectKeyRecordsTimePage_result that) { + public boolean equals(selectKeyRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -240227,7 +239236,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimePage_result other) { + public int compareTo(selectKeyRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -240294,7 +239303,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTime_result("); boolean first = true; sb.append("success:"); @@ -240353,17 +239362,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimePage_resultStandardScheme getScheme() { - return new selectKeyRecordsTimePage_resultStandardScheme(); + public selectKeyRecordsTime_resultStandardScheme getScheme() { + return new selectKeyRecordsTime_resultStandardScheme(); } } - private static class selectKeyRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -240376,26 +239385,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1890 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1890.size); - long _key1891; - @org.apache.thrift.annotation.Nullable java.util.Set _val1892; - for (int _i1893 = 0; _i1893 < _map1890.size; ++_i1893) + org.apache.thrift.protocol.TMap _map1864 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1864.size); + long _key1865; + @org.apache.thrift.annotation.Nullable java.util.Set _val1866; + for (int _i1867 = 0; _i1867 < _map1864.size; ++_i1867) { - _key1891 = iprot.readI64(); + _key1865 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1894 = iprot.readSetBegin(); - _val1892 = new java.util.LinkedHashSet(2*_set1894.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1895; - for (int _i1896 = 0; _i1896 < _set1894.size; ++_i1896) + org.apache.thrift.protocol.TSet _set1868 = iprot.readSetBegin(); + _val1866 = new java.util.LinkedHashSet(2*_set1868.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1869; + for (int _i1870 = 0; _i1870 < _set1868.size; ++_i1870) { - _elem1895 = new com.cinchapi.concourse.thrift.TObject(); - _elem1895.read(iprot); - _val1892.add(_elem1895); + _elem1869 = new com.cinchapi.concourse.thrift.TObject(); + _elem1869.read(iprot); + _val1866.add(_elem1869); } iprot.readSetEnd(); } - struct.success.put(_key1891, _val1892); + struct.success.put(_key1865, _val1866); } iprot.readMapEnd(); } @@ -240443,7 +239452,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -240451,14 +239460,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1897 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1871 : struct.success.entrySet()) { - oprot.writeI64(_iter1897.getKey()); + oprot.writeI64(_iter1871.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1897.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1898 : _iter1897.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1871.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1872 : _iter1871.getValue()) { - _iter1898.write(oprot); + _iter1872.write(oprot); } oprot.writeSetEnd(); } @@ -240488,17 +239497,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimePage_resultTupleScheme getScheme() { - return new selectKeyRecordsTimePage_resultTupleScheme(); + public selectKeyRecordsTime_resultTupleScheme getScheme() { + return new selectKeyRecordsTime_resultTupleScheme(); } } - private static class selectKeyRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -240517,14 +239526,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1899 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1873 : struct.success.entrySet()) { - oprot.writeI64(_iter1899.getKey()); + oprot.writeI64(_iter1873.getKey()); { - oprot.writeI32(_iter1899.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1900 : _iter1899.getValue()) + oprot.writeI32(_iter1873.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1874 : _iter1873.getValue()) { - _iter1900.write(oprot); + _iter1874.write(oprot); } } } @@ -240542,30 +239551,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1901 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1901.size); - long _key1902; - @org.apache.thrift.annotation.Nullable java.util.Set _val1903; - for (int _i1904 = 0; _i1904 < _map1901.size; ++_i1904) + org.apache.thrift.protocol.TMap _map1875 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1875.size); + long _key1876; + @org.apache.thrift.annotation.Nullable java.util.Set _val1877; + for (int _i1878 = 0; _i1878 < _map1875.size; ++_i1878) { - _key1902 = iprot.readI64(); + _key1876 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1905 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1903 = new java.util.LinkedHashSet(2*_set1905.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1906; - for (int _i1907 = 0; _i1907 < _set1905.size; ++_i1907) + org.apache.thrift.protocol.TSet _set1879 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1877 = new java.util.LinkedHashSet(2*_set1879.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1880; + for (int _i1881 = 0; _i1881 < _set1879.size; ++_i1881) { - _elem1906 = new com.cinchapi.concourse.thrift.TObject(); - _elem1906.read(iprot); - _val1903.add(_elem1906); + _elem1880 = new com.cinchapi.concourse.thrift.TObject(); + _elem1880.read(iprot); + _val1877.add(_elem1880); } } - struct.success.put(_key1902, _val1903); + struct.success.put(_key1876, _val1877); } } struct.setSuccessIsSet(true); @@ -240593,24 +239602,24 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimeOrder_args"); + public static class selectKeyRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimePage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -240620,7 +239629,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -240645,8 +239654,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -240708,8 +239717,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -240717,17 +239726,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimePage_args.class, metaDataMap); } - public selectKeyRecordsTimeOrder_args() { + public selectKeyRecordsTimePage_args() { } - public selectKeyRecordsTimeOrder_args( + public selectKeyRecordsTimePage_args( java.lang.String key, java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -240737,7 +239746,7 @@ public selectKeyRecordsTimeOrder_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -240746,7 +239755,7 @@ public selectKeyRecordsTimeOrder_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimeOrder_args(selectKeyRecordsTimeOrder_args other) { + public selectKeyRecordsTimePage_args(selectKeyRecordsTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -240756,8 +239765,8 @@ public selectKeyRecordsTimeOrder_args(selectKeyRecordsTimeOrder_args other) { this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -240771,8 +239780,8 @@ public selectKeyRecordsTimeOrder_args(selectKeyRecordsTimeOrder_args other) { } @Override - public selectKeyRecordsTimeOrder_args deepCopy() { - return new selectKeyRecordsTimeOrder_args(this); + public selectKeyRecordsTimePage_args deepCopy() { + return new selectKeyRecordsTimePage_args(this); } @Override @@ -240781,7 +239790,7 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -240792,7 +239801,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -240833,7 +239842,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -240857,7 +239866,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeyRecordsTimeOrder_args setTimestamp(long timestamp) { + public selectKeyRecordsTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -240877,27 +239886,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeyRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeyRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -240906,7 +239915,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -240931,7 +239940,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -240956,7 +239965,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -241003,11 +240012,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -241051,8 +240060,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -241081,8 +240090,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -241095,12 +240104,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimeOrder_args) - return this.equals((selectKeyRecordsTimeOrder_args)that); + if (that instanceof selectKeyRecordsTimePage_args) + return this.equals((selectKeyRecordsTimePage_args)that); return false; } - public boolean equals(selectKeyRecordsTimeOrder_args that) { + public boolean equals(selectKeyRecordsTimePage_args that) { if (that == null) return false; if (this == that) @@ -241133,12 +240142,12 @@ public boolean equals(selectKeyRecordsTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -241186,9 +240195,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -241206,7 +240215,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimeOrder_args other) { + public int compareTo(selectKeyRecordsTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -241243,12 +240252,12 @@ public int compareTo(selectKeyRecordsTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -241304,7 +240313,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimePage_args("); boolean first = true; sb.append("key:"); @@ -241327,11 +240336,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -241365,8 +240374,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -241394,17 +240403,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimeOrder_argsStandardScheme getScheme() { - return new selectKeyRecordsTimeOrder_argsStandardScheme(); + public selectKeyRecordsTimePage_argsStandardScheme getScheme() { + return new selectKeyRecordsTimePage_argsStandardScheme(); } } - private static class selectKeyRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -241425,13 +240434,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1908 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1908.size); - long _elem1909; - for (int _i1910 = 0; _i1910 < _list1908.size; ++_i1910) + org.apache.thrift.protocol.TList _list1882 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1882.size); + long _elem1883; + for (int _i1884 = 0; _i1884 < _list1882.size; ++_i1884) { - _elem1909 = iprot.readI64(); - struct.records.add(_elem1909); + _elem1883 = iprot.readI64(); + struct.records.add(_elem1883); } iprot.readListEnd(); } @@ -241448,11 +240457,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -241495,7 +240504,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -241508,9 +240517,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1911 : struct.records) + for (long _iter1885 : struct.records) { - oprot.writeI64(_iter1911); + oprot.writeI64(_iter1885); } oprot.writeListEnd(); } @@ -241519,9 +240528,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -241545,17 +240554,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimeOrder_argsTupleScheme getScheme() { - return new selectKeyRecordsTimeOrder_argsTupleScheme(); + public selectKeyRecordsTimePage_argsTupleScheme getScheme() { + return new selectKeyRecordsTimePage_argsTupleScheme(); } } - private static class selectKeyRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -241567,7 +240576,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -241586,17 +240595,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1912 : struct.records) + for (long _iter1886 : struct.records) { - oprot.writeI64(_iter1912); + oprot.writeI64(_iter1886); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -241610,7 +240619,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -241619,13 +240628,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1913 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1913.size); - long _elem1914; - for (int _i1915 = 0; _i1915 < _list1913.size; ++_i1915) + org.apache.thrift.protocol.TList _list1887 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1887.size); + long _elem1888; + for (int _i1889 = 0; _i1889 < _list1887.size; ++_i1889) { - _elem1914 = iprot.readI64(); - struct.records.add(_elem1914); + _elem1888 = iprot.readI64(); + struct.records.add(_elem1888); } } struct.setRecordsIsSet(true); @@ -241635,9 +240644,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -241661,16 +240670,16 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimeOrder_result"); + public static class selectKeyRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -241764,13 +240773,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimePage_result.class, metaDataMap); } - public selectKeyRecordsTimeOrder_result() { + public selectKeyRecordsTimePage_result() { } - public selectKeyRecordsTimeOrder_result( + public selectKeyRecordsTimePage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -241786,7 +240795,7 @@ public selectKeyRecordsTimeOrder_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimeOrder_result(selectKeyRecordsTimeOrder_result other) { + public selectKeyRecordsTimePage_result(selectKeyRecordsTimePage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -241817,8 +240826,8 @@ public selectKeyRecordsTimeOrder_result(selectKeyRecordsTimeOrder_result other) } @Override - public selectKeyRecordsTimeOrder_result deepCopy() { - return new selectKeyRecordsTimeOrder_result(this); + public selectKeyRecordsTimePage_result deepCopy() { + return new selectKeyRecordsTimePage_result(this); } @Override @@ -241845,7 +240854,7 @@ public java.util.Map> success) { + public selectKeyRecordsTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -241870,7 +240879,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -241895,7 +240904,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -241920,7 +240929,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -242020,12 +241029,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimeOrder_result) - return this.equals((selectKeyRecordsTimeOrder_result)that); + if (that instanceof selectKeyRecordsTimePage_result) + return this.equals((selectKeyRecordsTimePage_result)that); return false; } - public boolean equals(selectKeyRecordsTimeOrder_result that) { + public boolean equals(selectKeyRecordsTimePage_result that) { if (that == null) return false; if (this == that) @@ -242094,7 +241103,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimeOrder_result other) { + public int compareTo(selectKeyRecordsTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -242161,7 +241170,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimePage_result("); boolean first = true; sb.append("success:"); @@ -242220,17 +241229,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimeOrder_resultStandardScheme getScheme() { - return new selectKeyRecordsTimeOrder_resultStandardScheme(); + public selectKeyRecordsTimePage_resultStandardScheme getScheme() { + return new selectKeyRecordsTimePage_resultStandardScheme(); } } - private static class selectKeyRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -242243,26 +241252,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1916 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1916.size); - long _key1917; - @org.apache.thrift.annotation.Nullable java.util.Set _val1918; - for (int _i1919 = 0; _i1919 < _map1916.size; ++_i1919) + org.apache.thrift.protocol.TMap _map1890 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1890.size); + long _key1891; + @org.apache.thrift.annotation.Nullable java.util.Set _val1892; + for (int _i1893 = 0; _i1893 < _map1890.size; ++_i1893) { - _key1917 = iprot.readI64(); + _key1891 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1920 = iprot.readSetBegin(); - _val1918 = new java.util.LinkedHashSet(2*_set1920.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1921; - for (int _i1922 = 0; _i1922 < _set1920.size; ++_i1922) + org.apache.thrift.protocol.TSet _set1894 = iprot.readSetBegin(); + _val1892 = new java.util.LinkedHashSet(2*_set1894.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1895; + for (int _i1896 = 0; _i1896 < _set1894.size; ++_i1896) { - _elem1921 = new com.cinchapi.concourse.thrift.TObject(); - _elem1921.read(iprot); - _val1918.add(_elem1921); + _elem1895 = new com.cinchapi.concourse.thrift.TObject(); + _elem1895.read(iprot); + _val1892.add(_elem1895); } iprot.readSetEnd(); } - struct.success.put(_key1917, _val1918); + struct.success.put(_key1891, _val1892); } iprot.readMapEnd(); } @@ -242310,7 +241319,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -242318,14 +241327,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1923 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1897 : struct.success.entrySet()) { - oprot.writeI64(_iter1923.getKey()); + oprot.writeI64(_iter1897.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1923.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1924 : _iter1923.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1897.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1898 : _iter1897.getValue()) { - _iter1924.write(oprot); + _iter1898.write(oprot); } oprot.writeSetEnd(); } @@ -242355,17 +241364,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimeOrder_resultTupleScheme getScheme() { - return new selectKeyRecordsTimeOrder_resultTupleScheme(); + public selectKeyRecordsTimePage_resultTupleScheme getScheme() { + return new selectKeyRecordsTimePage_resultTupleScheme(); } } - private static class selectKeyRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -242384,14 +241393,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1925 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1899 : struct.success.entrySet()) { - oprot.writeI64(_iter1925.getKey()); + oprot.writeI64(_iter1899.getKey()); { - oprot.writeI32(_iter1925.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1926 : _iter1925.getValue()) + oprot.writeI32(_iter1899.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1900 : _iter1899.getValue()) { - _iter1926.write(oprot); + _iter1900.write(oprot); } } } @@ -242409,30 +241418,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1927 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1927.size); - long _key1928; - @org.apache.thrift.annotation.Nullable java.util.Set _val1929; - for (int _i1930 = 0; _i1930 < _map1927.size; ++_i1930) + org.apache.thrift.protocol.TMap _map1901 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1901.size); + long _key1902; + @org.apache.thrift.annotation.Nullable java.util.Set _val1903; + for (int _i1904 = 0; _i1904 < _map1901.size; ++_i1904) { - _key1928 = iprot.readI64(); + _key1902 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1931 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1929 = new java.util.LinkedHashSet(2*_set1931.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1932; - for (int _i1933 = 0; _i1933 < _set1931.size; ++_i1933) + org.apache.thrift.protocol.TSet _set1905 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1903 = new java.util.LinkedHashSet(2*_set1905.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1906; + for (int _i1907 = 0; _i1907 < _set1905.size; ++_i1907) { - _elem1932 = new com.cinchapi.concourse.thrift.TObject(); - _elem1932.read(iprot); - _val1929.add(_elem1932); + _elem1906 = new com.cinchapi.concourse.thrift.TObject(); + _elem1906.read(iprot); + _val1903.add(_elem1906); } } - struct.success.put(_key1928, _val1929); + struct.success.put(_key1902, _val1903); } } struct.setSuccessIsSet(true); @@ -242460,26 +241469,24 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimeOrderPage_args"); + public static class selectKeyRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -242490,10 +241497,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -242517,13 +241523,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -242582,8 +241586,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -242591,18 +241593,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimeOrder_args.class, metaDataMap); } - public selectKeyRecordsTimeOrderPage_args() { + public selectKeyRecordsTimeOrder_args() { } - public selectKeyRecordsTimeOrderPage_args( + public selectKeyRecordsTimeOrder_args( java.lang.String key, java.util.List records, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -242613,7 +241614,6 @@ public selectKeyRecordsTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -242622,7 +241622,7 @@ public selectKeyRecordsTimeOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimeOrderPage_args(selectKeyRecordsTimeOrderPage_args other) { + public selectKeyRecordsTimeOrder_args(selectKeyRecordsTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -242635,9 +241635,6 @@ public selectKeyRecordsTimeOrderPage_args(selectKeyRecordsTimeOrderPage_args oth if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -242650,8 +241647,8 @@ public selectKeyRecordsTimeOrderPage_args(selectKeyRecordsTimeOrderPage_args oth } @Override - public selectKeyRecordsTimeOrderPage_args deepCopy() { - return new selectKeyRecordsTimeOrderPage_args(this); + public selectKeyRecordsTimeOrder_args deepCopy() { + return new selectKeyRecordsTimeOrder_args(this); } @Override @@ -242661,7 +241658,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -242672,7 +241668,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -242713,7 +241709,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -242737,7 +241733,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeyRecordsTimeOrderPage_args setTimestamp(long timestamp) { + public selectKeyRecordsTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -242761,7 +241757,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeyRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeyRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -242781,37 +241777,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeyRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -242836,7 +241807,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -242861,7 +241832,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -242916,14 +241887,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -242967,9 +241930,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -242999,8 +241959,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -243013,12 +241971,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimeOrderPage_args) - return this.equals((selectKeyRecordsTimeOrderPage_args)that); + if (that instanceof selectKeyRecordsTimeOrder_args) + return this.equals((selectKeyRecordsTimeOrder_args)that); return false; } - public boolean equals(selectKeyRecordsTimeOrderPage_args that) { + public boolean equals(selectKeyRecordsTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -243060,15 +242018,6 @@ public boolean equals(selectKeyRecordsTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -243117,10 +242066,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -243137,7 +242082,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimeOrderPage_args other) { + public int compareTo(selectKeyRecordsTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -243184,16 +242129,6 @@ public int compareTo(selectKeyRecordsTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -243245,7 +242180,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimeOrder_args("); boolean first = true; sb.append("key:"); @@ -243276,14 +242211,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -243317,9 +242244,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -243346,17 +242270,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimeOrderPage_argsStandardScheme getScheme() { - return new selectKeyRecordsTimeOrderPage_argsStandardScheme(); + public selectKeyRecordsTimeOrder_argsStandardScheme getScheme() { + return new selectKeyRecordsTimeOrder_argsStandardScheme(); } } - private static class selectKeyRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -243377,13 +242301,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1934 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1934.size); - long _elem1935; - for (int _i1936 = 0; _i1936 < _list1934.size; ++_i1936) + org.apache.thrift.protocol.TList _list1908 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1908.size); + long _elem1909; + for (int _i1910 = 0; _i1910 < _list1908.size; ++_i1910) { - _elem1935 = iprot.readI64(); - struct.records.add(_elem1935); + _elem1909 = iprot.readI64(); + struct.records.add(_elem1909); } iprot.readListEnd(); } @@ -243409,16 +242333,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -243427,7 +242342,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -243436,7 +242351,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -243456,7 +242371,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -243469,9 +242384,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1937 : struct.records) + for (long _iter1911 : struct.records) { - oprot.writeI64(_iter1937); + oprot.writeI64(_iter1911); } oprot.writeListEnd(); } @@ -243485,11 +242400,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -243511,17 +242421,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimeOrderPage_argsTupleScheme getScheme() { - return new selectKeyRecordsTimeOrderPage_argsTupleScheme(); + public selectKeyRecordsTimeOrder_argsTupleScheme getScheme() { + return new selectKeyRecordsTimeOrder_argsTupleScheme(); } } - private static class selectKeyRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -243536,28 +242446,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1938 : struct.records) + for (long _iter1912 : struct.records) { - oprot.writeI64(_iter1938); + oprot.writeI64(_iter1912); } } } @@ -243567,9 +242474,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -243582,22 +242486,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1939 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1939.size); - long _elem1940; - for (int _i1941 = 0; _i1941 < _list1939.size; ++_i1941) + org.apache.thrift.protocol.TList _list1913 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1913.size); + long _elem1914; + for (int _i1915 = 0; _i1915 < _list1913.size; ++_i1915) { - _elem1940 = iprot.readI64(); - struct.records.add(_elem1940); + _elem1914 = iprot.readI64(); + struct.records.add(_elem1914); } } struct.setRecordsIsSet(true); @@ -243612,21 +242516,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -243638,16 +242537,16 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimeOrderPage_result"); + public static class selectKeyRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -243741,13 +242640,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimeOrder_result.class, metaDataMap); } - public selectKeyRecordsTimeOrderPage_result() { + public selectKeyRecordsTimeOrder_result() { } - public selectKeyRecordsTimeOrderPage_result( + public selectKeyRecordsTimeOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -243763,7 +242662,7 @@ public selectKeyRecordsTimeOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimeOrderPage_result(selectKeyRecordsTimeOrderPage_result other) { + public selectKeyRecordsTimeOrder_result(selectKeyRecordsTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -243794,8 +242693,8 @@ public selectKeyRecordsTimeOrderPage_result(selectKeyRecordsTimeOrderPage_result } @Override - public selectKeyRecordsTimeOrderPage_result deepCopy() { - return new selectKeyRecordsTimeOrderPage_result(this); + public selectKeyRecordsTimeOrder_result deepCopy() { + return new selectKeyRecordsTimeOrder_result(this); } @Override @@ -243822,7 +242721,7 @@ public java.util.Map> success) { + public selectKeyRecordsTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -243847,7 +242746,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -243872,7 +242771,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -243897,7 +242796,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -243997,12 +242896,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimeOrderPage_result) - return this.equals((selectKeyRecordsTimeOrderPage_result)that); + if (that instanceof selectKeyRecordsTimeOrder_result) + return this.equals((selectKeyRecordsTimeOrder_result)that); return false; } - public boolean equals(selectKeyRecordsTimeOrderPage_result that) { + public boolean equals(selectKeyRecordsTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -244071,7 +242970,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimeOrderPage_result other) { + public int compareTo(selectKeyRecordsTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -244138,7 +243037,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -244197,17 +243096,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimeOrderPage_resultStandardScheme getScheme() { - return new selectKeyRecordsTimeOrderPage_resultStandardScheme(); + public selectKeyRecordsTimeOrder_resultStandardScheme getScheme() { + return new selectKeyRecordsTimeOrder_resultStandardScheme(); } } - private static class selectKeyRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -244220,26 +243119,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1942 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1942.size); - long _key1943; - @org.apache.thrift.annotation.Nullable java.util.Set _val1944; - for (int _i1945 = 0; _i1945 < _map1942.size; ++_i1945) + org.apache.thrift.protocol.TMap _map1916 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1916.size); + long _key1917; + @org.apache.thrift.annotation.Nullable java.util.Set _val1918; + for (int _i1919 = 0; _i1919 < _map1916.size; ++_i1919) { - _key1943 = iprot.readI64(); + _key1917 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1946 = iprot.readSetBegin(); - _val1944 = new java.util.LinkedHashSet(2*_set1946.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1947; - for (int _i1948 = 0; _i1948 < _set1946.size; ++_i1948) + org.apache.thrift.protocol.TSet _set1920 = iprot.readSetBegin(); + _val1918 = new java.util.LinkedHashSet(2*_set1920.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1921; + for (int _i1922 = 0; _i1922 < _set1920.size; ++_i1922) { - _elem1947 = new com.cinchapi.concourse.thrift.TObject(); - _elem1947.read(iprot); - _val1944.add(_elem1947); + _elem1921 = new com.cinchapi.concourse.thrift.TObject(); + _elem1921.read(iprot); + _val1918.add(_elem1921); } iprot.readSetEnd(); } - struct.success.put(_key1943, _val1944); + struct.success.put(_key1917, _val1918); } iprot.readMapEnd(); } @@ -244287,7 +243186,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -244295,14 +243194,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1949 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1923 : struct.success.entrySet()) { - oprot.writeI64(_iter1949.getKey()); + oprot.writeI64(_iter1923.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1949.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1950 : _iter1949.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1923.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1924 : _iter1923.getValue()) { - _iter1950.write(oprot); + _iter1924.write(oprot); } oprot.writeSetEnd(); } @@ -244332,17 +243231,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimeOrderPage_resultTupleScheme getScheme() { - return new selectKeyRecordsTimeOrderPage_resultTupleScheme(); + public selectKeyRecordsTimeOrder_resultTupleScheme getScheme() { + return new selectKeyRecordsTimeOrder_resultTupleScheme(); } } - private static class selectKeyRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -244361,14 +243260,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1951 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1925 : struct.success.entrySet()) { - oprot.writeI64(_iter1951.getKey()); + oprot.writeI64(_iter1925.getKey()); { - oprot.writeI32(_iter1951.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1952 : _iter1951.getValue()) + oprot.writeI32(_iter1925.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1926 : _iter1925.getValue()) { - _iter1952.write(oprot); + _iter1926.write(oprot); } } } @@ -244386,30 +243285,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1953 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1953.size); - long _key1954; - @org.apache.thrift.annotation.Nullable java.util.Set _val1955; - for (int _i1956 = 0; _i1956 < _map1953.size; ++_i1956) + org.apache.thrift.protocol.TMap _map1927 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1927.size); + long _key1928; + @org.apache.thrift.annotation.Nullable java.util.Set _val1929; + for (int _i1930 = 0; _i1930 < _map1927.size; ++_i1930) { - _key1954 = iprot.readI64(); + _key1928 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1957 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1955 = new java.util.LinkedHashSet(2*_set1957.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1958; - for (int _i1959 = 0; _i1959 < _set1957.size; ++_i1959) + org.apache.thrift.protocol.TSet _set1931 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1929 = new java.util.LinkedHashSet(2*_set1931.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1932; + for (int _i1933 = 0; _i1933 < _set1931.size; ++_i1933) { - _elem1958 = new com.cinchapi.concourse.thrift.TObject(); - _elem1958.read(iprot); - _val1955.add(_elem1958); + _elem1932 = new com.cinchapi.concourse.thrift.TObject(); + _elem1932.read(iprot); + _val1929.add(_elem1932); } } - struct.success.put(_key1954, _val1955); + struct.success.put(_key1928, _val1929); } } struct.setSuccessIsSet(true); @@ -244437,22 +243336,26 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestr_args"); + public static class selectKeyRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -244462,9 +243365,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -244486,11 +243391,15 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -244535,6 +243444,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -244544,7 +243455,11 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -244552,16 +243467,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimeOrderPage_args.class, metaDataMap); } - public selectKeyRecordsTimestr_args() { + public selectKeyRecordsTimeOrderPage_args() { } - public selectKeyRecordsTimestr_args( + public selectKeyRecordsTimeOrderPage_args( java.lang.String key, java.util.List records, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -244570,6 +243487,9 @@ public selectKeyRecordsTimestr_args( this.key = key; this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -244578,7 +243498,8 @@ public selectKeyRecordsTimestr_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimestr_args(selectKeyRecordsTimestr_args other) { + public selectKeyRecordsTimeOrderPage_args(selectKeyRecordsTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } @@ -244586,8 +243507,12 @@ public selectKeyRecordsTimestr_args(selectKeyRecordsTimestr_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -244601,15 +243526,18 @@ public selectKeyRecordsTimestr_args(selectKeyRecordsTimestr_args other) { } @Override - public selectKeyRecordsTimestr_args deepCopy() { - return new selectKeyRecordsTimestr_args(this); + public selectKeyRecordsTimeOrderPage_args deepCopy() { + return new selectKeyRecordsTimeOrderPage_args(this); } @Override public void clear() { this.key = null; this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -244620,7 +243548,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -244661,7 +243589,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -244681,28 +243609,76 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public selectKeyRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeyRecordsTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeyRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeyRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -244711,7 +243687,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -244736,7 +243712,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -244761,7 +243737,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -244804,7 +243780,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -244848,6 +243840,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -244875,6 +243873,10 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -244887,12 +243889,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimestr_args) - return this.equals((selectKeyRecordsTimestr_args)that); + if (that instanceof selectKeyRecordsTimeOrderPage_args) + return this.equals((selectKeyRecordsTimeOrderPage_args)that); return false; } - public boolean equals(selectKeyRecordsTimestr_args that) { + public boolean equals(selectKeyRecordsTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -244916,12 +243918,30 @@ public boolean equals(selectKeyRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -244967,9 +243987,15 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -244987,7 +244013,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimestr_args other) { + public int compareTo(selectKeyRecordsTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -245024,6 +244050,26 @@ public int compareTo(selectKeyRecordsTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -245075,7 +244121,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimeOrderPage_args("); boolean first = true; sb.append("key:"); @@ -245095,10 +244141,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -245132,6 +244190,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -245150,23 +244214,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeyRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestr_argsStandardScheme getScheme() { - return new selectKeyRecordsTimestr_argsStandardScheme(); + public selectKeyRecordsTimeOrderPage_argsStandardScheme getScheme() { + return new selectKeyRecordsTimeOrderPage_argsStandardScheme(); } } - private static class selectKeyRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -245187,13 +244253,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1960 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1960.size); - long _elem1961; - for (int _i1962 = 0; _i1962 < _list1960.size; ++_i1962) + org.apache.thrift.protocol.TList _list1934 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1934.size); + long _elem1935; + for (int _i1936 = 0; _i1936 < _list1934.size; ++_i1936) { - _elem1961 = iprot.readI64(); - struct.records.add(_elem1961); + _elem1935 = iprot.readI64(); + struct.records.add(_elem1935); } iprot.readListEnd(); } @@ -245203,14 +244269,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -245219,7 +244303,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -245228,7 +244312,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -245248,7 +244332,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -245261,17 +244345,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1963 : struct.records) + for (long _iter1937 : struct.records) { - oprot.writeI64(_iter1963); + oprot.writeI64(_iter1937); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -245295,17 +244387,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestr_argsTupleScheme getScheme() { - return new selectKeyRecordsTimestr_argsTupleScheme(); + public selectKeyRecordsTimeOrderPage_argsTupleScheme getScheme() { + return new selectKeyRecordsTimeOrderPage_argsTupleScheme(); } } - private static class selectKeyRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -245317,30 +244409,42 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1964 : struct.records) + for (long _iter1938 : struct.records) { - oprot.writeI64(_iter1964); + oprot.writeI64(_iter1938); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -245354,41 +244458,51 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1965 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1965.size); - long _elem1966; - for (int _i1967 = 0; _i1967 < _list1965.size; ++_i1967) + org.apache.thrift.protocol.TList _list1939 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1939.size); + long _elem1940; + for (int _i1941 = 0; _i1941 < _list1939.size; ++_i1941) { - _elem1966 = iprot.readI64(); - struct.records.add(_elem1966); + _elem1940 = iprot.readI64(); + struct.records.add(_elem1940); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -245400,31 +244514,28 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestr_result"); + public static class selectKeyRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -245448,8 +244559,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -245506,35 +244615,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimeOrderPage_result.class, metaDataMap); } - public selectKeyRecordsTimestr_result() { + public selectKeyRecordsTimeOrderPage_result() { } - public selectKeyRecordsTimestr_result( + public selectKeyRecordsTimeOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeyRecordsTimestr_result(selectKeyRecordsTimestr_result other) { + public selectKeyRecordsTimeOrderPage_result(selectKeyRecordsTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -245560,16 +244665,13 @@ public selectKeyRecordsTimestr_result(selectKeyRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectKeyRecordsTimestr_result deepCopy() { - return new selectKeyRecordsTimestr_result(this); + public selectKeyRecordsTimeOrderPage_result deepCopy() { + return new selectKeyRecordsTimeOrderPage_result(this); } @Override @@ -245578,7 +244680,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -245597,7 +244698,7 @@ public java.util.Map> success) { + public selectKeyRecordsTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -245622,7 +244723,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -245647,7 +244748,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -245668,11 +244769,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeyRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeyRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -245692,31 +244793,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectKeyRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -245748,15 +244824,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -245779,9 +244847,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -245802,20 +244867,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimestr_result) - return this.equals((selectKeyRecordsTimestr_result)that); + if (that instanceof selectKeyRecordsTimeOrderPage_result) + return this.equals((selectKeyRecordsTimeOrderPage_result)that); return false; } - public boolean equals(selectKeyRecordsTimestr_result that) { + public boolean equals(selectKeyRecordsTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -245857,15 +244920,6 @@ public boolean equals(selectKeyRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -245889,15 +244943,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectKeyRecordsTimestr_result other) { + public int compareTo(selectKeyRecordsTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -245944,16 +244994,6 @@ public int compareTo(selectKeyRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -245974,7 +245014,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -246008,14 +245048,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -246041,17 +245073,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestr_resultStandardScheme getScheme() { - return new selectKeyRecordsTimestr_resultStandardScheme(); + public selectKeyRecordsTimeOrderPage_resultStandardScheme getScheme() { + return new selectKeyRecordsTimeOrderPage_resultStandardScheme(); } } - private static class selectKeyRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -246064,26 +245096,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1968 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1968.size); - long _key1969; - @org.apache.thrift.annotation.Nullable java.util.Set _val1970; - for (int _i1971 = 0; _i1971 < _map1968.size; ++_i1971) + org.apache.thrift.protocol.TMap _map1942 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1942.size); + long _key1943; + @org.apache.thrift.annotation.Nullable java.util.Set _val1944; + for (int _i1945 = 0; _i1945 < _map1942.size; ++_i1945) { - _key1969 = iprot.readI64(); + _key1943 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1972 = iprot.readSetBegin(); - _val1970 = new java.util.LinkedHashSet(2*_set1972.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1973; - for (int _i1974 = 0; _i1974 < _set1972.size; ++_i1974) + org.apache.thrift.protocol.TSet _set1946 = iprot.readSetBegin(); + _val1944 = new java.util.LinkedHashSet(2*_set1946.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1947; + for (int _i1948 = 0; _i1948 < _set1946.size; ++_i1948) { - _elem1973 = new com.cinchapi.concourse.thrift.TObject(); - _elem1973.read(iprot); - _val1970.add(_elem1973); + _elem1947 = new com.cinchapi.concourse.thrift.TObject(); + _elem1947.read(iprot); + _val1944.add(_elem1947); } iprot.readSetEnd(); } - struct.success.put(_key1969, _val1970); + struct.success.put(_key1943, _val1944); } iprot.readMapEnd(); } @@ -246112,22 +245144,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -246140,7 +245163,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -246148,14 +245171,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter1975 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1949 : struct.success.entrySet()) { - oprot.writeI64(_iter1975.getKey()); + oprot.writeI64(_iter1949.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1975.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter1976 : _iter1975.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1949.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1950 : _iter1949.getValue()) { - _iter1976.write(oprot); + _iter1950.write(oprot); } oprot.writeSetEnd(); } @@ -246179,28 +245202,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeyRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestr_resultTupleScheme getScheme() { - return new selectKeyRecordsTimestr_resultTupleScheme(); + public selectKeyRecordsTimeOrderPage_resultTupleScheme getScheme() { + return new selectKeyRecordsTimeOrderPage_resultTupleScheme(); } } - private static class selectKeyRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -246215,21 +245233,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter1977 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1951 : struct.success.entrySet()) { - oprot.writeI64(_iter1977.getKey()); + oprot.writeI64(_iter1951.getKey()); { - oprot.writeI32(_iter1977.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter1978 : _iter1977.getValue()) + oprot.writeI32(_iter1951.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1952 : _iter1951.getValue()) { - _iter1978.write(oprot); + _iter1952.write(oprot); } } } @@ -246244,36 +245259,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1979 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map1979.size); - long _key1980; - @org.apache.thrift.annotation.Nullable java.util.Set _val1981; - for (int _i1982 = 0; _i1982 < _map1979.size; ++_i1982) + org.apache.thrift.protocol.TMap _map1953 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1953.size); + long _key1954; + @org.apache.thrift.annotation.Nullable java.util.Set _val1955; + for (int _i1956 = 0; _i1956 < _map1953.size; ++_i1956) { - _key1980 = iprot.readI64(); + _key1954 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1983 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val1981 = new java.util.LinkedHashSet(2*_set1983.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1984; - for (int _i1985 = 0; _i1985 < _set1983.size; ++_i1985) + org.apache.thrift.protocol.TSet _set1957 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1955 = new java.util.LinkedHashSet(2*_set1957.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1958; + for (int _i1959 = 0; _i1959 < _set1957.size; ++_i1959) { - _elem1984 = new com.cinchapi.concourse.thrift.TObject(); - _elem1984.read(iprot); - _val1981.add(_elem1984); + _elem1958 = new com.cinchapi.concourse.thrift.TObject(); + _elem1958.read(iprot); + _val1955.add(_elem1958); } } - struct.success.put(_key1980, _val1981); + struct.success.put(_key1954, _val1955); } } struct.setSuccessIsSet(true); @@ -246289,15 +245301,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -246306,24 +245313,22 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrPage_args"); + public static class selectKeyRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -246333,10 +245338,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -246358,13 +245362,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -246419,8 +245421,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -246428,17 +245428,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestr_args.class, metaDataMap); } - public selectKeyRecordsTimestrPage_args() { + public selectKeyRecordsTimestr_args() { } - public selectKeyRecordsTimestrPage_args( + public selectKeyRecordsTimestr_args( java.lang.String key, java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -246447,7 +245446,6 @@ public selectKeyRecordsTimestrPage_args( this.key = key; this.records = records; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -246456,7 +245454,7 @@ public selectKeyRecordsTimestrPage_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimestrPage_args(selectKeyRecordsTimestrPage_args other) { + public selectKeyRecordsTimestr_args(selectKeyRecordsTimestr_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -246467,9 +245465,6 @@ public selectKeyRecordsTimestrPage_args(selectKeyRecordsTimestrPage_args other) if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -246482,8 +245477,8 @@ public selectKeyRecordsTimestrPage_args(selectKeyRecordsTimestrPage_args other) } @Override - public selectKeyRecordsTimestrPage_args deepCopy() { - return new selectKeyRecordsTimestrPage_args(this); + public selectKeyRecordsTimestr_args deepCopy() { + return new selectKeyRecordsTimestr_args(this); } @Override @@ -246491,7 +245486,6 @@ public void clear() { this.key = null; this.records = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -246502,7 +245496,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -246543,7 +245537,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -246568,7 +245562,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeyRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeyRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -246588,37 +245582,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeyRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -246643,7 +245612,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -246668,7 +245637,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -246715,14 +245684,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -246763,9 +245724,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -246793,8 +245751,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -246807,12 +245763,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimestrPage_args) - return this.equals((selectKeyRecordsTimestrPage_args)that); + if (that instanceof selectKeyRecordsTimestr_args) + return this.equals((selectKeyRecordsTimestr_args)that); return false; } - public boolean equals(selectKeyRecordsTimestrPage_args that) { + public boolean equals(selectKeyRecordsTimestr_args that) { if (that == null) return false; if (this == that) @@ -246845,15 +245801,6 @@ public boolean equals(selectKeyRecordsTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -246900,10 +245847,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -246920,7 +245863,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimestrPage_args other) { + public int compareTo(selectKeyRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -246957,16 +245900,6 @@ public int compareTo(selectKeyRecordsTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -247018,7 +245951,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestr_args("); boolean first = true; sb.append("key:"); @@ -247045,14 +245978,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -247083,9 +246008,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -247110,17 +246032,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrPage_argsStandardScheme getScheme() { - return new selectKeyRecordsTimestrPage_argsStandardScheme(); + public selectKeyRecordsTimestr_argsStandardScheme getScheme() { + return new selectKeyRecordsTimestr_argsStandardScheme(); } } - private static class selectKeyRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -247141,13 +246063,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1986 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list1986.size); - long _elem1987; - for (int _i1988 = 0; _i1988 < _list1986.size; ++_i1988) + org.apache.thrift.protocol.TList _list1960 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1960.size); + long _elem1961; + for (int _i1962 = 0; _i1962 < _list1960.size; ++_i1962) { - _elem1987 = iprot.readI64(); - struct.records.add(_elem1987); + _elem1961 = iprot.readI64(); + struct.records.add(_elem1961); } iprot.readListEnd(); } @@ -247164,16 +246086,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -247182,7 +246095,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -247191,7 +246104,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -247211,7 +246124,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -247224,9 +246137,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter1989 : struct.records) + for (long _iter1963 : struct.records) { - oprot.writeI64(_iter1989); + oprot.writeI64(_iter1963); } oprot.writeListEnd(); } @@ -247237,11 +246150,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -247263,17 +246171,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrPage_argsTupleScheme getScheme() { - return new selectKeyRecordsTimestrPage_argsTupleScheme(); + public selectKeyRecordsTimestr_argsTupleScheme getScheme() { + return new selectKeyRecordsTimestr_argsTupleScheme(); } } - private static class selectKeyRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -247285,37 +246193,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter1990 : struct.records) + for (long _iter1964 : struct.records) { - oprot.writeI64(_iter1990); + oprot.writeI64(_iter1964); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -247328,22 +246230,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1991 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list1991.size); - long _elem1992; - for (int _i1993 = 0; _i1993 < _list1991.size; ++_i1993) + org.apache.thrift.protocol.TList _list1965 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1965.size); + long _elem1966; + for (int _i1967 = 0; _i1967 < _list1965.size; ++_i1967) { - _elem1992 = iprot.readI64(); - struct.records.add(_elem1992); + _elem1966 = iprot.readI64(); + struct.records.add(_elem1966); } } struct.setRecordsIsSet(true); @@ -247353,21 +246255,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -247379,8 +246276,8 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrPage_result"); + public static class selectKeyRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -247388,8 +246285,8 @@ public static class selectKeyRecordsTimestrPage_result implements org.apache.thr private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -247489,13 +246386,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestr_result.class, metaDataMap); } - public selectKeyRecordsTimestrPage_result() { + public selectKeyRecordsTimestr_result() { } - public selectKeyRecordsTimestrPage_result( + public selectKeyRecordsTimestr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -247513,7 +246410,7 @@ public selectKeyRecordsTimestrPage_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimestrPage_result(selectKeyRecordsTimestrPage_result other) { + public selectKeyRecordsTimestr_result(selectKeyRecordsTimestr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -247547,8 +246444,8 @@ public selectKeyRecordsTimestrPage_result(selectKeyRecordsTimestrPage_result oth } @Override - public selectKeyRecordsTimestrPage_result deepCopy() { - return new selectKeyRecordsTimestrPage_result(this); + public selectKeyRecordsTimestr_result deepCopy() { + return new selectKeyRecordsTimestr_result(this); } @Override @@ -247576,7 +246473,7 @@ public java.util.Map> success) { + public selectKeyRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -247601,7 +246498,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -247626,7 +246523,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -247651,7 +246548,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeyRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeyRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -247676,7 +246573,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeyRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeyRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -247789,12 +246686,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimestrPage_result) - return this.equals((selectKeyRecordsTimestrPage_result)that); + if (that instanceof selectKeyRecordsTimestr_result) + return this.equals((selectKeyRecordsTimestr_result)that); return false; } - public boolean equals(selectKeyRecordsTimestrPage_result that) { + public boolean equals(selectKeyRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -247876,7 +246773,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimestrPage_result other) { + public int compareTo(selectKeyRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -247953,7 +246850,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestr_result("); boolean first = true; sb.append("success:"); @@ -248020,17 +246917,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrPage_resultStandardScheme getScheme() { - return new selectKeyRecordsTimestrPage_resultStandardScheme(); + public selectKeyRecordsTimestr_resultStandardScheme getScheme() { + return new selectKeyRecordsTimestr_resultStandardScheme(); } } - private static class selectKeyRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -248043,26 +246940,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1994 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map1994.size); - long _key1995; - @org.apache.thrift.annotation.Nullable java.util.Set _val1996; - for (int _i1997 = 0; _i1997 < _map1994.size; ++_i1997) + org.apache.thrift.protocol.TMap _map1968 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1968.size); + long _key1969; + @org.apache.thrift.annotation.Nullable java.util.Set _val1970; + for (int _i1971 = 0; _i1971 < _map1968.size; ++_i1971) { - _key1995 = iprot.readI64(); + _key1969 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set1998 = iprot.readSetBegin(); - _val1996 = new java.util.LinkedHashSet(2*_set1998.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1999; - for (int _i2000 = 0; _i2000 < _set1998.size; ++_i2000) + org.apache.thrift.protocol.TSet _set1972 = iprot.readSetBegin(); + _val1970 = new java.util.LinkedHashSet(2*_set1972.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1973; + for (int _i1974 = 0; _i1974 < _set1972.size; ++_i1974) { - _elem1999 = new com.cinchapi.concourse.thrift.TObject(); - _elem1999.read(iprot); - _val1996.add(_elem1999); + _elem1973 = new com.cinchapi.concourse.thrift.TObject(); + _elem1973.read(iprot); + _val1970.add(_elem1973); } iprot.readSetEnd(); } - struct.success.put(_key1995, _val1996); + struct.success.put(_key1969, _val1970); } iprot.readMapEnd(); } @@ -248119,7 +247016,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -248127,14 +247024,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter2001 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1975 : struct.success.entrySet()) { - oprot.writeI64(_iter2001.getKey()); + oprot.writeI64(_iter1975.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2001.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2002 : _iter2001.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter1975.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter1976 : _iter1975.getValue()) { - _iter2002.write(oprot); + _iter1976.write(oprot); } oprot.writeSetEnd(); } @@ -248169,17 +247066,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrPage_resultTupleScheme getScheme() { - return new selectKeyRecordsTimestrPage_resultTupleScheme(); + public selectKeyRecordsTimestr_resultTupleScheme getScheme() { + return new selectKeyRecordsTimestr_resultTupleScheme(); } } - private static class selectKeyRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -248201,14 +247098,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter2003 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter1977 : struct.success.entrySet()) { - oprot.writeI64(_iter2003.getKey()); + oprot.writeI64(_iter1977.getKey()); { - oprot.writeI32(_iter2003.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2004 : _iter2003.getValue()) + oprot.writeI32(_iter1977.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter1978 : _iter1977.getValue()) { - _iter2004.write(oprot); + _iter1978.write(oprot); } } } @@ -248229,30 +247126,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2005 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map2005.size); - long _key2006; - @org.apache.thrift.annotation.Nullable java.util.Set _val2007; - for (int _i2008 = 0; _i2008 < _map2005.size; ++_i2008) + org.apache.thrift.protocol.TMap _map1979 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map1979.size); + long _key1980; + @org.apache.thrift.annotation.Nullable java.util.Set _val1981; + for (int _i1982 = 0; _i1982 < _map1979.size; ++_i1982) { - _key2006 = iprot.readI64(); + _key1980 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set2009 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2007 = new java.util.LinkedHashSet(2*_set2009.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2010; - for (int _i2011 = 0; _i2011 < _set2009.size; ++_i2011) + org.apache.thrift.protocol.TSet _set1983 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val1981 = new java.util.LinkedHashSet(2*_set1983.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1984; + for (int _i1985 = 0; _i1985 < _set1983.size; ++_i1985) { - _elem2010 = new com.cinchapi.concourse.thrift.TObject(); - _elem2010.read(iprot); - _val2007.add(_elem2010); + _elem1984 = new com.cinchapi.concourse.thrift.TObject(); + _elem1984.read(iprot); + _val1981.add(_elem1984); } } - struct.success.put(_key2006, _val2007); + struct.success.put(_key1980, _val1981); } } struct.setSuccessIsSet(true); @@ -248285,24 +247182,24 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrOrder_args"); + public static class selectKeyRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -248312,7 +247209,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -248337,8 +247234,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -248398,8 +247295,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -248407,17 +247304,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrPage_args.class, metaDataMap); } - public selectKeyRecordsTimestrOrder_args() { + public selectKeyRecordsTimestrPage_args() { } - public selectKeyRecordsTimestrOrder_args( + public selectKeyRecordsTimestrPage_args( java.lang.String key, java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -248426,7 +247323,7 @@ public selectKeyRecordsTimestrOrder_args( this.key = key; this.records = records; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -248435,7 +247332,7 @@ public selectKeyRecordsTimestrOrder_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimestrOrder_args(selectKeyRecordsTimestrOrder_args other) { + public selectKeyRecordsTimestrPage_args(selectKeyRecordsTimestrPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -248446,8 +247343,8 @@ public selectKeyRecordsTimestrOrder_args(selectKeyRecordsTimestrOrder_args other if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -248461,8 +247358,8 @@ public selectKeyRecordsTimestrOrder_args(selectKeyRecordsTimestrOrder_args other } @Override - public selectKeyRecordsTimestrOrder_args deepCopy() { - return new selectKeyRecordsTimestrOrder_args(this); + public selectKeyRecordsTimestrPage_args deepCopy() { + return new selectKeyRecordsTimestrPage_args(this); } @Override @@ -248470,7 +247367,7 @@ public void clear() { this.key = null; this.records = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -248481,7 +247378,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -248522,7 +247419,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -248547,7 +247444,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeyRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeyRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -248568,27 +247465,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeyRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeyRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -248597,7 +247494,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -248622,7 +247519,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -248647,7 +247544,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -248694,11 +247591,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -248742,8 +247639,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -248772,8 +247669,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -248786,12 +247683,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimestrOrder_args) - return this.equals((selectKeyRecordsTimestrOrder_args)that); + if (that instanceof selectKeyRecordsTimestrPage_args) + return this.equals((selectKeyRecordsTimestrPage_args)that); return false; } - public boolean equals(selectKeyRecordsTimestrOrder_args that) { + public boolean equals(selectKeyRecordsTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -248824,12 +247721,12 @@ public boolean equals(selectKeyRecordsTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -248879,9 +247776,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -248899,7 +247796,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimestrOrder_args other) { + public int compareTo(selectKeyRecordsTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -248936,12 +247833,12 @@ public int compareTo(selectKeyRecordsTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -248997,7 +247894,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrPage_args("); boolean first = true; sb.append("key:"); @@ -249024,11 +247921,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -249062,8 +247959,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -249089,17 +247986,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrOrder_argsStandardScheme getScheme() { - return new selectKeyRecordsTimestrOrder_argsStandardScheme(); + public selectKeyRecordsTimestrPage_argsStandardScheme getScheme() { + return new selectKeyRecordsTimestrPage_argsStandardScheme(); } } - private static class selectKeyRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -249120,13 +248017,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2012 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2012.size); - long _elem2013; - for (int _i2014 = 0; _i2014 < _list2012.size; ++_i2014) + org.apache.thrift.protocol.TList _list1986 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list1986.size); + long _elem1987; + for (int _i1988 = 0; _i1988 < _list1986.size; ++_i1988) { - _elem2013 = iprot.readI64(); - struct.records.add(_elem2013); + _elem1987 = iprot.readI64(); + struct.records.add(_elem1987); } iprot.readListEnd(); } @@ -249143,11 +248040,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -249190,7 +248087,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -249203,9 +248100,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2015 : struct.records) + for (long _iter1989 : struct.records) { - oprot.writeI64(_iter2015); + oprot.writeI64(_iter1989); } oprot.writeListEnd(); } @@ -249216,9 +248113,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -249242,17 +248139,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrOrder_argsTupleScheme getScheme() { - return new selectKeyRecordsTimestrOrder_argsTupleScheme(); + public selectKeyRecordsTimestrPage_argsTupleScheme getScheme() { + return new selectKeyRecordsTimestrPage_argsTupleScheme(); } } - private static class selectKeyRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -249264,7 +248161,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -249283,17 +248180,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2016 : struct.records) + for (long _iter1990 : struct.records) { - oprot.writeI64(_iter2016); + oprot.writeI64(_iter1990); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -249307,7 +248204,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -249316,13 +248213,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2017 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2017.size); - long _elem2018; - for (int _i2019 = 0; _i2019 < _list2017.size; ++_i2019) + org.apache.thrift.protocol.TList _list1991 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list1991.size); + long _elem1992; + for (int _i1993 = 0; _i1993 < _list1991.size; ++_i1993) { - _elem2018 = iprot.readI64(); - struct.records.add(_elem2018); + _elem1992 = iprot.readI64(); + struct.records.add(_elem1992); } } struct.setRecordsIsSet(true); @@ -249332,9 +248229,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -249358,8 +248255,8 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrOrder_result"); + public static class selectKeyRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -249367,8 +248264,8 @@ public static class selectKeyRecordsTimestrOrder_result implements org.apache.th private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -249468,13 +248365,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrPage_result.class, metaDataMap); } - public selectKeyRecordsTimestrOrder_result() { + public selectKeyRecordsTimestrPage_result() { } - public selectKeyRecordsTimestrOrder_result( + public selectKeyRecordsTimestrPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -249492,7 +248389,7 @@ public selectKeyRecordsTimestrOrder_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimestrOrder_result(selectKeyRecordsTimestrOrder_result other) { + public selectKeyRecordsTimestrPage_result(selectKeyRecordsTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -249526,8 +248423,8 @@ public selectKeyRecordsTimestrOrder_result(selectKeyRecordsTimestrOrder_result o } @Override - public selectKeyRecordsTimestrOrder_result deepCopy() { - return new selectKeyRecordsTimestrOrder_result(this); + public selectKeyRecordsTimestrPage_result deepCopy() { + return new selectKeyRecordsTimestrPage_result(this); } @Override @@ -249555,7 +248452,7 @@ public java.util.Map> success) { + public selectKeyRecordsTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -249580,7 +248477,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -249605,7 +248502,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -249630,7 +248527,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeyRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeyRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -249655,7 +248552,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeyRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeyRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -249768,12 +248665,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimestrOrder_result) - return this.equals((selectKeyRecordsTimestrOrder_result)that); + if (that instanceof selectKeyRecordsTimestrPage_result) + return this.equals((selectKeyRecordsTimestrPage_result)that); return false; } - public boolean equals(selectKeyRecordsTimestrOrder_result that) { + public boolean equals(selectKeyRecordsTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -249855,7 +248752,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimestrOrder_result other) { + public int compareTo(selectKeyRecordsTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -249932,7 +248829,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -249999,17 +248896,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrOrder_resultStandardScheme getScheme() { - return new selectKeyRecordsTimestrOrder_resultStandardScheme(); + public selectKeyRecordsTimestrPage_resultStandardScheme getScheme() { + return new selectKeyRecordsTimestrPage_resultStandardScheme(); } } - private static class selectKeyRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -250022,26 +248919,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2020 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map2020.size); - long _key2021; - @org.apache.thrift.annotation.Nullable java.util.Set _val2022; - for (int _i2023 = 0; _i2023 < _map2020.size; ++_i2023) + org.apache.thrift.protocol.TMap _map1994 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map1994.size); + long _key1995; + @org.apache.thrift.annotation.Nullable java.util.Set _val1996; + for (int _i1997 = 0; _i1997 < _map1994.size; ++_i1997) { - _key2021 = iprot.readI64(); + _key1995 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set2024 = iprot.readSetBegin(); - _val2022 = new java.util.LinkedHashSet(2*_set2024.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2025; - for (int _i2026 = 0; _i2026 < _set2024.size; ++_i2026) + org.apache.thrift.protocol.TSet _set1998 = iprot.readSetBegin(); + _val1996 = new java.util.LinkedHashSet(2*_set1998.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem1999; + for (int _i2000 = 0; _i2000 < _set1998.size; ++_i2000) { - _elem2025 = new com.cinchapi.concourse.thrift.TObject(); - _elem2025.read(iprot); - _val2022.add(_elem2025); + _elem1999 = new com.cinchapi.concourse.thrift.TObject(); + _elem1999.read(iprot); + _val1996.add(_elem1999); } iprot.readSetEnd(); } - struct.success.put(_key2021, _val2022); + struct.success.put(_key1995, _val1996); } iprot.readMapEnd(); } @@ -250098,7 +248995,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -250106,14 +249003,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter2027 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter2001 : struct.success.entrySet()) { - oprot.writeI64(_iter2027.getKey()); + oprot.writeI64(_iter2001.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2027.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2028 : _iter2027.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2001.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2002 : _iter2001.getValue()) { - _iter2028.write(oprot); + _iter2002.write(oprot); } oprot.writeSetEnd(); } @@ -250148,17 +249045,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrOrder_resultTupleScheme getScheme() { - return new selectKeyRecordsTimestrOrder_resultTupleScheme(); + public selectKeyRecordsTimestrPage_resultTupleScheme getScheme() { + return new selectKeyRecordsTimestrPage_resultTupleScheme(); } } - private static class selectKeyRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -250180,14 +249077,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter2029 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter2003 : struct.success.entrySet()) { - oprot.writeI64(_iter2029.getKey()); + oprot.writeI64(_iter2003.getKey()); { - oprot.writeI32(_iter2029.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2030 : _iter2029.getValue()) + oprot.writeI32(_iter2003.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2004 : _iter2003.getValue()) { - _iter2030.write(oprot); + _iter2004.write(oprot); } } } @@ -250208,30 +249105,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2031 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map2031.size); - long _key2032; - @org.apache.thrift.annotation.Nullable java.util.Set _val2033; - for (int _i2034 = 0; _i2034 < _map2031.size; ++_i2034) + org.apache.thrift.protocol.TMap _map2005 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map2005.size); + long _key2006; + @org.apache.thrift.annotation.Nullable java.util.Set _val2007; + for (int _i2008 = 0; _i2008 < _map2005.size; ++_i2008) { - _key2032 = iprot.readI64(); + _key2006 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set2035 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2033 = new java.util.LinkedHashSet(2*_set2035.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2036; - for (int _i2037 = 0; _i2037 < _set2035.size; ++_i2037) + org.apache.thrift.protocol.TSet _set2009 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2007 = new java.util.LinkedHashSet(2*_set2009.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2010; + for (int _i2011 = 0; _i2011 < _set2009.size; ++_i2011) { - _elem2036 = new com.cinchapi.concourse.thrift.TObject(); - _elem2036.read(iprot); - _val2033.add(_elem2036); + _elem2010 = new com.cinchapi.concourse.thrift.TObject(); + _elem2010.read(iprot); + _val2007.add(_elem2010); } } - struct.success.put(_key2032, _val2033); + struct.success.put(_key2006, _val2007); } } struct.setSuccessIsSet(true); @@ -250264,26 +249161,24 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrOrderPage_args"); + public static class selectKeyRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -250294,10 +249189,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -250321,13 +249215,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -250384,8 +249276,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -250393,18 +249283,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrOrder_args.class, metaDataMap); } - public selectKeyRecordsTimestrOrderPage_args() { + public selectKeyRecordsTimestrOrder_args() { } - public selectKeyRecordsTimestrOrderPage_args( + public selectKeyRecordsTimestrOrder_args( java.lang.String key, java.util.List records, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -250414,7 +249303,6 @@ public selectKeyRecordsTimestrOrderPage_args( this.records = records; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -250423,7 +249311,7 @@ public selectKeyRecordsTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimestrOrderPage_args(selectKeyRecordsTimestrOrderPage_args other) { + public selectKeyRecordsTimestrOrder_args(selectKeyRecordsTimestrOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -250437,9 +249325,6 @@ public selectKeyRecordsTimestrOrderPage_args(selectKeyRecordsTimestrOrderPage_ar if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -250452,8 +249337,8 @@ public selectKeyRecordsTimestrOrderPage_args(selectKeyRecordsTimestrOrderPage_ar } @Override - public selectKeyRecordsTimestrOrderPage_args deepCopy() { - return new selectKeyRecordsTimestrOrderPage_args(this); + public selectKeyRecordsTimestrOrder_args deepCopy() { + return new selectKeyRecordsTimestrOrder_args(this); } @Override @@ -250462,7 +249347,6 @@ public void clear() { this.records = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -250473,7 +249357,7 @@ public java.lang.String getKey() { return this.key; } - public selectKeyRecordsTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public selectKeyRecordsTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -250514,7 +249398,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeyRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -250539,7 +249423,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeyRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeyRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -250564,7 +249448,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeyRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeyRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -250584,37 +249468,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeyRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeyRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -250639,7 +249498,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeyRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -250664,7 +249523,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeyRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -250719,14 +249578,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -250770,9 +249621,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -250802,8 +249650,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -250816,12 +249662,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimestrOrderPage_args) - return this.equals((selectKeyRecordsTimestrOrderPage_args)that); + if (that instanceof selectKeyRecordsTimestrOrder_args) + return this.equals((selectKeyRecordsTimestrOrder_args)that); return false; } - public boolean equals(selectKeyRecordsTimestrOrderPage_args that) { + public boolean equals(selectKeyRecordsTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -250863,15 +249709,6 @@ public boolean equals(selectKeyRecordsTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -250922,10 +249759,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -250942,7 +249775,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimestrOrderPage_args other) { + public int compareTo(selectKeyRecordsTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -250989,16 +249822,6 @@ public int compareTo(selectKeyRecordsTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -251050,7 +249873,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrOrder_args("); boolean first = true; sb.append("key:"); @@ -251085,14 +249908,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -251126,9 +249941,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -251153,17 +249965,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrOrderPage_argsStandardScheme getScheme() { - return new selectKeyRecordsTimestrOrderPage_argsStandardScheme(); + public selectKeyRecordsTimestrOrder_argsStandardScheme getScheme() { + return new selectKeyRecordsTimestrOrder_argsStandardScheme(); } } - private static class selectKeyRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -251184,13 +249996,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2038 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2038.size); - long _elem2039; - for (int _i2040 = 0; _i2040 < _list2038.size; ++_i2040) + org.apache.thrift.protocol.TList _list2012 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2012.size); + long _elem2013; + for (int _i2014 = 0; _i2014 < _list2012.size; ++_i2014) { - _elem2039 = iprot.readI64(); - struct.records.add(_elem2039); + _elem2013 = iprot.readI64(); + struct.records.add(_elem2013); } iprot.readListEnd(); } @@ -251216,16 +250028,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -251234,7 +250037,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -251243,7 +250046,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -251263,7 +250066,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -251276,9 +250079,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2041 : struct.records) + for (long _iter2015 : struct.records) { - oprot.writeI64(_iter2041); + oprot.writeI64(_iter2015); } oprot.writeListEnd(); } @@ -251294,11 +250097,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -251320,17 +250118,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrOrderPage_argsTupleScheme getScheme() { - return new selectKeyRecordsTimestrOrderPage_argsTupleScheme(); + public selectKeyRecordsTimestrOrder_argsTupleScheme getScheme() { + return new selectKeyRecordsTimestrOrder_argsTupleScheme(); } } - private static class selectKeyRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -251345,28 +250143,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2042 : struct.records) + for (long _iter2016 : struct.records) { - oprot.writeI64(_iter2042); + oprot.writeI64(_iter2016); } } } @@ -251376,9 +250171,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -251391,22 +250183,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2043 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2043.size); - long _elem2044; - for (int _i2045 = 0; _i2045 < _list2043.size; ++_i2045) + org.apache.thrift.protocol.TList _list2017 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2017.size); + long _elem2018; + for (int _i2019 = 0; _i2019 < _list2017.size; ++_i2019) { - _elem2044 = iprot.readI64(); - struct.records.add(_elem2044); + _elem2018 = iprot.readI64(); + struct.records.add(_elem2018); } } struct.setRecordsIsSet(true); @@ -251421,21 +250213,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTime struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -251447,8 +250234,8 @@ private static S scheme(org.apache. } } - public static class selectKeyRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrOrderPage_result"); + public static class selectKeyRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -251456,8 +250243,8 @@ public static class selectKeyRecordsTimestrOrderPage_result implements org.apach private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -251557,13 +250344,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrOrder_result.class, metaDataMap); } - public selectKeyRecordsTimestrOrderPage_result() { + public selectKeyRecordsTimestrOrder_result() { } - public selectKeyRecordsTimestrOrderPage_result( + public selectKeyRecordsTimestrOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -251581,7 +250368,7 @@ public selectKeyRecordsTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeyRecordsTimestrOrderPage_result(selectKeyRecordsTimestrOrderPage_result other) { + public selectKeyRecordsTimestrOrder_result(selectKeyRecordsTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -251615,8 +250402,8 @@ public selectKeyRecordsTimestrOrderPage_result(selectKeyRecordsTimestrOrderPage_ } @Override - public selectKeyRecordsTimestrOrderPage_result deepCopy() { - return new selectKeyRecordsTimestrOrderPage_result(this); + public selectKeyRecordsTimestrOrder_result deepCopy() { + return new selectKeyRecordsTimestrOrder_result(this); } @Override @@ -251644,7 +250431,7 @@ public java.util.Map> success) { + public selectKeyRecordsTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -251669,7 +250456,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeyRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -251694,7 +250481,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeyRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -251719,7 +250506,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeyRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeyRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -251744,7 +250531,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeyRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeyRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -251857,12 +250644,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeyRecordsTimestrOrderPage_result) - return this.equals((selectKeyRecordsTimestrOrderPage_result)that); + if (that instanceof selectKeyRecordsTimestrOrder_result) + return this.equals((selectKeyRecordsTimestrOrder_result)that); return false; } - public boolean equals(selectKeyRecordsTimestrOrderPage_result that) { + public boolean equals(selectKeyRecordsTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -251944,7 +250731,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeyRecordsTimestrOrderPage_result other) { + public int compareTo(selectKeyRecordsTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -252021,7 +250808,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -252088,17 +250875,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeyRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrOrderPage_resultStandardScheme getScheme() { - return new selectKeyRecordsTimestrOrderPage_resultStandardScheme(); + public selectKeyRecordsTimestrOrder_resultStandardScheme getScheme() { + return new selectKeyRecordsTimestrOrder_resultStandardScheme(); } } - private static class selectKeyRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -252111,26 +250898,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2046 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map2046.size); - long _key2047; - @org.apache.thrift.annotation.Nullable java.util.Set _val2048; - for (int _i2049 = 0; _i2049 < _map2046.size; ++_i2049) + org.apache.thrift.protocol.TMap _map2020 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map2020.size); + long _key2021; + @org.apache.thrift.annotation.Nullable java.util.Set _val2022; + for (int _i2023 = 0; _i2023 < _map2020.size; ++_i2023) { - _key2047 = iprot.readI64(); + _key2021 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set2050 = iprot.readSetBegin(); - _val2048 = new java.util.LinkedHashSet(2*_set2050.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2051; - for (int _i2052 = 0; _i2052 < _set2050.size; ++_i2052) + org.apache.thrift.protocol.TSet _set2024 = iprot.readSetBegin(); + _val2022 = new java.util.LinkedHashSet(2*_set2024.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2025; + for (int _i2026 = 0; _i2026 < _set2024.size; ++_i2026) { - _elem2051 = new com.cinchapi.concourse.thrift.TObject(); - _elem2051.read(iprot); - _val2048.add(_elem2051); + _elem2025 = new com.cinchapi.concourse.thrift.TObject(); + _elem2025.read(iprot); + _val2022.add(_elem2025); } iprot.readSetEnd(); } - struct.success.put(_key2047, _val2048); + struct.success.put(_key2021, _val2022); } iprot.readMapEnd(); } @@ -252187,7 +250974,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -252195,14 +250982,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter2053 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter2027 : struct.success.entrySet()) { - oprot.writeI64(_iter2053.getKey()); + oprot.writeI64(_iter2027.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2053.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2054 : _iter2053.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2027.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2028 : _iter2027.getValue()) { - _iter2054.write(oprot); + _iter2028.write(oprot); } oprot.writeSetEnd(); } @@ -252237,17 +251024,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTi } - private static class selectKeyRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeyRecordsTimestrOrderPage_resultTupleScheme getScheme() { - return new selectKeyRecordsTimestrOrderPage_resultTupleScheme(); + public selectKeyRecordsTimestrOrder_resultTupleScheme getScheme() { + return new selectKeyRecordsTimestrOrder_resultTupleScheme(); } } - private static class selectKeyRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -252269,14 +251056,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter2055 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter2029 : struct.success.entrySet()) { - oprot.writeI64(_iter2055.getKey()); + oprot.writeI64(_iter2029.getKey()); { - oprot.writeI32(_iter2055.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2056 : _iter2055.getValue()) + oprot.writeI32(_iter2029.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2030 : _iter2029.getValue()) { - _iter2056.write(oprot); + _iter2030.write(oprot); } } } @@ -252297,30 +251084,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2057 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map2057.size); - long _key2058; - @org.apache.thrift.annotation.Nullable java.util.Set _val2059; - for (int _i2060 = 0; _i2060 < _map2057.size; ++_i2060) + org.apache.thrift.protocol.TMap _map2031 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map2031.size); + long _key2032; + @org.apache.thrift.annotation.Nullable java.util.Set _val2033; + for (int _i2034 = 0; _i2034 < _map2031.size; ++_i2034) { - _key2058 = iprot.readI64(); + _key2032 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set2061 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2059 = new java.util.LinkedHashSet(2*_set2061.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2062; - for (int _i2063 = 0; _i2063 < _set2061.size; ++_i2063) + org.apache.thrift.protocol.TSet _set2035 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2033 = new java.util.LinkedHashSet(2*_set2035.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2036; + for (int _i2037 = 0; _i2037 < _set2035.size; ++_i2037) { - _elem2062 = new com.cinchapi.concourse.thrift.TObject(); - _elem2062.read(iprot); - _val2059.add(_elem2062); + _elem2036 = new com.cinchapi.concourse.thrift.TObject(); + _elem2036.read(iprot); + _val2033.add(_elem2036); } } - struct.success.put(_key2058, _val2059); + struct.success.put(_key2032, _val2033); } } struct.setSuccessIsSet(true); @@ -252353,34 +251140,40 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTime_args"); + public static class selectKeyRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEYS((short)1, "keys"), + KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -252396,17 +251189,21 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEYS - return KEYS; + case 1: // KEY + return KEY; case 2: // RECORDS return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -252451,19 +251248,20 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -252471,25 +251269,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrOrderPage_args.class, metaDataMap); } - public selectKeysRecordsTime_args() { + public selectKeyRecordsTimestrOrderPage_args() { } - public selectKeysRecordsTime_args( - java.util.List keys, + public selectKeyRecordsTimestrOrderPage_args( + java.lang.String key, java.util.List records, - long timestamp, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; + this.key = key; this.records = records; this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -252498,17 +251299,23 @@ public selectKeysRecordsTime_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsTime_args(selectKeysRecordsTime_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + public selectKeyRecordsTimestrOrderPage_args(selectKeyRecordsTimestrOrderPage_args other) { + if (other.isSetKey()) { + this.key = other.key; } if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - this.timestamp = other.timestamp; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -252521,59 +251328,44 @@ public selectKeysRecordsTime_args(selectKeysRecordsTime_args other) { } @Override - public selectKeysRecordsTime_args deepCopy() { - return new selectKeysRecordsTime_args(this); + public selectKeyRecordsTimestrOrderPage_args deepCopy() { + return new selectKeyRecordsTimestrOrderPage_args(this); } @Override public void clear() { - this.keys = null; + this.key = null; this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public selectKeysRecordsTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public selectKeyRecordsTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; + this.key = null; } } @@ -252598,7 +251390,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeyRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -252618,27 +251410,79 @@ public void setRecordsIsSet(boolean value) { } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysRecordsTime_args setTimestamp(long timestamp) { + public selectKeyRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeyRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeyRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -252646,7 +251490,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeyRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -252671,7 +251515,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeyRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -252696,7 +251540,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeyRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -252719,11 +251563,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; @@ -252739,7 +251583,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -252774,8 +251634,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); case RECORDS: return getRecords(); @@ -252783,6 +251643,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -252804,12 +251670,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); + case KEY: + return isSetKey(); case RECORDS: return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -252822,23 +251692,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTime_args) - return this.equals((selectKeysRecordsTime_args)that); + if (that instanceof selectKeyRecordsTimestrOrderPage_args) + return this.equals((selectKeyRecordsTimestrOrderPage_args)that); return false; } - public boolean equals(selectKeysRecordsTime_args that) { + public boolean equals(selectKeyRecordsTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } @@ -252851,12 +251721,30 @@ public boolean equals(selectKeysRecordsTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -252894,15 +251782,25 @@ public boolean equals(selectKeysRecordsTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -252920,19 +251818,19 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTime_args other) { + public int compareTo(selectKeyRecordsTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } @@ -252957,6 +251855,26 @@ public int compareTo(selectKeysRecordsTime_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -253008,14 +251926,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrOrderPage_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); @@ -253028,7 +251946,27 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -253061,6 +251999,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -253079,25 +252023,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeysRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTime_argsStandardScheme getScheme() { - return new selectKeysRecordsTime_argsStandardScheme(); + public selectKeyRecordsTimestrOrderPage_argsStandardScheme getScheme() { + return new selectKeyRecordsTimestrOrderPage_argsStandardScheme(); } } - private static class selectKeysRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -253107,20 +252049,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list2064 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list2064.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2065; - for (int _i2066 = 0; _i2066 < _list2064.size; ++_i2066) - { - _elem2065 = iprot.readString(); - struct.keys.add(_elem2065); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -253128,13 +252060,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2067 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2067.size); - long _elem2068; - for (int _i2069 = 0; _i2069 < _list2067.size; ++_i2069) + org.apache.thrift.protocol.TList _list2038 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2038.size); + long _elem2039; + for (int _i2040 = 0; _i2040 < _list2038.size; ++_i2040) { - _elem2068 = iprot.readI64(); - struct.records.add(_elem2068); + _elem2039 = iprot.readI64(); + struct.records.add(_elem2039); } iprot.readListEnd(); } @@ -253144,14 +252076,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -253160,7 +252110,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -253169,7 +252119,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -253189,37 +252139,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter2070 : struct.keys) - { - oprot.writeString(_iter2070); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } if (struct.records != null) { oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2071 : struct.records) + for (long _iter2041 : struct.records) { - oprot.writeI64(_iter2071); + oprot.writeI64(_iter2041); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -253241,20 +252196,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTime_argsTupleScheme getScheme() { - return new selectKeysRecordsTime_argsTupleScheme(); + public selectKeyRecordsTimestrOrderPage_argsTupleScheme getScheme() { + return new selectKeyRecordsTimestrOrderPage_argsTupleScheme(); } } - private static class selectKeysRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } if (struct.isSetRecords()) { @@ -253263,36 +252218,42 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter2072 : struct.keys) - { - oprot.writeString(_iter2072); - } - } + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); + if (struct.isSetKey()) { + oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2073 : struct.records) + for (long _iter2042 : struct.records) { - oprot.writeI64(_iter2073); + oprot.writeI64(_iter2042); } } } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -253306,50 +252267,51 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list2074 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list2074.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2075; - for (int _i2076 = 0; _i2076 < _list2074.size; ++_i2076) - { - _elem2075 = iprot.readString(); - struct.keys.add(_elem2075); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2077 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2077.size); - long _elem2078; - for (int _i2079 = 0; _i2079 < _list2077.size; ++_i2079) + org.apache.thrift.protocol.TList _list2043 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2043.size); + long _elem2044; + for (int _i2045 = 0; _i2045 < _list2043.size; ++_i2045) { - _elem2078 = iprot.readI64(); - struct.records.add(_elem2078); + _elem2044 = iprot.readI64(); + struct.records.add(_elem2044); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -253361,28 +252323,31 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTime_result"); + public static class selectKeyRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeyRecordsTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeyRecordsTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeyRecordsTimestrOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -253406,6 +252371,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -253455,63 +252422,54 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeyRecordsTimestrOrderPage_result.class, metaDataMap); } - public selectKeysRecordsTime_result() { + public selectKeyRecordsTimestrOrderPage_result() { } - public selectKeysRecordsTime_result( - java.util.Map>> success, + public selectKeyRecordsTimestrOrderPage_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeysRecordsTime_result(selectKeysRecordsTime_result other) { + public selectKeyRecordsTimestrOrderPage_result(selectKeyRecordsTimestrOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { java.lang.Long other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); + java.util.Set other_element_value = other_element.getValue(); java.lang.Long __this__success_copy_key = other_element_key; - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); - - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; - - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); - for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { - __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); - } - - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element : other_element_value) { + __this__success_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element)); } __this__success.put(__this__success_copy_key, __this__success_copy_value); @@ -253525,13 +252483,16 @@ public selectKeysRecordsTime_result(selectKeysRecordsTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public selectKeysRecordsTime_result deepCopy() { - return new selectKeysRecordsTime_result(this); + public selectKeyRecordsTimestrOrderPage_result deepCopy() { + return new selectKeyRecordsTimestrOrderPage_result(this); } @Override @@ -253540,25 +252501,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map> val) { + public void putToSuccess(long key, java.util.Set val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public selectKeysRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public selectKeyRecordsTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -253583,7 +252545,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeyRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -253608,7 +252570,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeyRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -253629,11 +252591,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeyRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -253653,6 +252615,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public selectKeyRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -253660,7 +252647,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.Map>)value); } break; @@ -253684,7 +252671,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -253707,6 +252702,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -253727,18 +252725,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTime_result) - return this.equals((selectKeysRecordsTime_result)that); + if (that instanceof selectKeyRecordsTimestrOrderPage_result) + return this.equals((selectKeyRecordsTimestrOrderPage_result)that); return false; } - public boolean equals(selectKeysRecordsTime_result that) { + public boolean equals(selectKeyRecordsTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -253780,6 +252780,15 @@ public boolean equals(selectKeysRecordsTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -253803,11 +252812,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(selectKeysRecordsTime_result other) { + public int compareTo(selectKeyRecordsTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -253854,6 +252867,16 @@ public int compareTo(selectKeysRecordsTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -253874,7 +252897,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeyRecordsTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -253908,6 +252931,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -253933,17 +252964,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTime_resultStandardScheme getScheme() { - return new selectKeysRecordsTime_resultStandardScheme(); + public selectKeyRecordsTimestrOrderPage_resultStandardScheme getScheme() { + return new selectKeyRecordsTimestrOrderPage_resultStandardScheme(); } } - private static class selectKeysRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeyRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -253956,38 +252987,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2080 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2080.size); - long _key2081; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2082; - for (int _i2083 = 0; _i2083 < _map2080.size; ++_i2083) + org.apache.thrift.protocol.TMap _map2046 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map2046.size); + long _key2047; + @org.apache.thrift.annotation.Nullable java.util.Set _val2048; + for (int _i2049 = 0; _i2049 < _map2046.size; ++_i2049) { - _key2081 = iprot.readI64(); + _key2047 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2084 = iprot.readMapBegin(); - _val2082 = new java.util.LinkedHashMap>(2*_map2084.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2085; - @org.apache.thrift.annotation.Nullable java.util.Set _val2086; - for (int _i2087 = 0; _i2087 < _map2084.size; ++_i2087) + org.apache.thrift.protocol.TSet _set2050 = iprot.readSetBegin(); + _val2048 = new java.util.LinkedHashSet(2*_set2050.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2051; + for (int _i2052 = 0; _i2052 < _set2050.size; ++_i2052) { - _key2085 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set2088 = iprot.readSetBegin(); - _val2086 = new java.util.LinkedHashSet(2*_set2088.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2089; - for (int _i2090 = 0; _i2090 < _set2088.size; ++_i2090) - { - _elem2089 = new com.cinchapi.concourse.thrift.TObject(); - _elem2089.read(iprot); - _val2086.add(_elem2089); - } - iprot.readSetEnd(); - } - _val2082.put(_key2085, _val2086); + _elem2051 = new com.cinchapi.concourse.thrift.TObject(); + _elem2051.read(iprot); + _val2048.add(_elem2051); } - iprot.readMapEnd(); + iprot.readSetEnd(); } - struct.success.put(_key2081, _val2082); + struct.success.put(_key2047, _val2048); } iprot.readMapEnd(); } @@ -254016,13 +253035,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -254035,32 +253063,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2091 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter2053 : struct.success.entrySet()) { - oprot.writeI64(_iter2091.getKey()); + oprot.writeI64(_iter2053.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2091.getValue().size())); - for (java.util.Map.Entry> _iter2092 : _iter2091.getValue().entrySet()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2053.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2054 : _iter2053.getValue()) { - oprot.writeString(_iter2092.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2092.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2093 : _iter2092.getValue()) - { - _iter2093.write(oprot); - } - oprot.writeSetEnd(); - } + _iter2054.write(oprot); } - oprot.writeMapEnd(); + oprot.writeSetEnd(); } } oprot.writeMapEnd(); @@ -254082,23 +253102,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeysRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeyRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTime_resultTupleScheme getScheme() { - return new selectKeysRecordsTime_resultTupleScheme(); + public selectKeyRecordsTimestrOrderPage_resultTupleScheme getScheme() { + return new selectKeyRecordsTimestrOrderPage_resultTupleScheme(); } } - private static class selectKeysRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeyRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -254113,25 +253138,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2094 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter2055 : struct.success.entrySet()) { - oprot.writeI64(_iter2094.getKey()); + oprot.writeI64(_iter2055.getKey()); { - oprot.writeI32(_iter2094.getValue().size()); - for (java.util.Map.Entry> _iter2095 : _iter2094.getValue().entrySet()) + oprot.writeI32(_iter2055.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2056 : _iter2055.getValue()) { - oprot.writeString(_iter2095.getKey()); - { - oprot.writeI32(_iter2095.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2096 : _iter2095.getValue()) - { - _iter2096.write(oprot); - } - } + _iter2056.write(oprot); } } } @@ -254146,44 +253167,36 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2097 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2097.size); - long _key2098; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2099; - for (int _i2100 = 0; _i2100 < _map2097.size; ++_i2100) + org.apache.thrift.protocol.TMap _map2057 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map2057.size); + long _key2058; + @org.apache.thrift.annotation.Nullable java.util.Set _val2059; + for (int _i2060 = 0; _i2060 < _map2057.size; ++_i2060) { - _key2098 = iprot.readI64(); + _key2058 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2101 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2099 = new java.util.LinkedHashMap>(2*_map2101.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2102; - @org.apache.thrift.annotation.Nullable java.util.Set _val2103; - for (int _i2104 = 0; _i2104 < _map2101.size; ++_i2104) + org.apache.thrift.protocol.TSet _set2061 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2059 = new java.util.LinkedHashSet(2*_set2061.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2062; + for (int _i2063 = 0; _i2063 < _set2061.size; ++_i2063) { - _key2102 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set2105 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2103 = new java.util.LinkedHashSet(2*_set2105.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2106; - for (int _i2107 = 0; _i2107 < _set2105.size; ++_i2107) - { - _elem2106 = new com.cinchapi.concourse.thrift.TObject(); - _elem2106.read(iprot); - _val2103.add(_elem2106); - } - } - _val2099.put(_key2102, _val2103); + _elem2062 = new com.cinchapi.concourse.thrift.TObject(); + _elem2062.read(iprot); + _val2059.add(_elem2062); } } - struct.success.put(_key2098, _val2099); + struct.success.put(_key2058, _val2059); } } struct.setSuccessIsSet(true); @@ -254199,10 +253212,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTim struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -254211,24 +253229,22 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimePage_args"); + public static class selectKeysRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -254238,10 +253254,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -254263,13 +253278,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -254327,8 +253340,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -254336,17 +253347,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTime_args.class, metaDataMap); } - public selectKeysRecordsTimePage_args() { + public selectKeysRecordsTime_args() { } - public selectKeysRecordsTimePage_args( + public selectKeysRecordsTime_args( java.util.List keys, java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -254356,7 +253366,6 @@ public selectKeysRecordsTimePage_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -254365,7 +253374,7 @@ public selectKeysRecordsTimePage_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimePage_args(selectKeysRecordsTimePage_args other) { + public selectKeysRecordsTime_args(selectKeysRecordsTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -254376,9 +253385,6 @@ public selectKeysRecordsTimePage_args(selectKeysRecordsTimePage_args other) { this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -254391,8 +253397,8 @@ public selectKeysRecordsTimePage_args(selectKeysRecordsTimePage_args other) { } @Override - public selectKeysRecordsTimePage_args deepCopy() { - return new selectKeysRecordsTimePage_args(this); + public selectKeysRecordsTime_args deepCopy() { + return new selectKeysRecordsTime_args(this); } @Override @@ -254401,7 +253407,6 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -254428,7 +253433,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -254469,7 +253474,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -254493,7 +253498,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysRecordsTimePage_args setTimestamp(long timestamp) { + public selectKeysRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -254512,37 +253517,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -254567,7 +253547,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -254592,7 +253572,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -254639,14 +253619,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -254687,9 +253659,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -254717,8 +253686,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -254731,12 +253698,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimePage_args) - return this.equals((selectKeysRecordsTimePage_args)that); + if (that instanceof selectKeysRecordsTime_args) + return this.equals((selectKeysRecordsTime_args)that); return false; } - public boolean equals(selectKeysRecordsTimePage_args that) { + public boolean equals(selectKeysRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -254769,15 +253736,6 @@ public boolean equals(selectKeysRecordsTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -254822,10 +253780,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -254842,7 +253796,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimePage_args other) { + public int compareTo(selectKeysRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -254879,16 +253833,6 @@ public int compareTo(selectKeysRecordsTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -254940,7 +253884,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTime_args("); boolean first = true; sb.append("keys:"); @@ -254963,14 +253907,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -255001,9 +253937,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -255030,17 +253963,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimePage_argsStandardScheme getScheme() { - return new selectKeysRecordsTimePage_argsStandardScheme(); + public selectKeysRecordsTime_argsStandardScheme getScheme() { + return new selectKeysRecordsTime_argsStandardScheme(); } } - private static class selectKeysRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -255053,13 +253986,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2108 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list2108.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2109; - for (int _i2110 = 0; _i2110 < _list2108.size; ++_i2110) + org.apache.thrift.protocol.TList _list2064 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list2064.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2065; + for (int _i2066 = 0; _i2066 < _list2064.size; ++_i2066) { - _elem2109 = iprot.readString(); - struct.keys.add(_elem2109); + _elem2065 = iprot.readString(); + struct.keys.add(_elem2065); } iprot.readListEnd(); } @@ -255071,13 +254004,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2111 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2111.size); - long _elem2112; - for (int _i2113 = 0; _i2113 < _list2111.size; ++_i2113) + org.apache.thrift.protocol.TList _list2067 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2067.size); + long _elem2068; + for (int _i2069 = 0; _i2069 < _list2067.size; ++_i2069) { - _elem2112 = iprot.readI64(); - struct.records.add(_elem2112); + _elem2068 = iprot.readI64(); + struct.records.add(_elem2068); } iprot.readListEnd(); } @@ -255094,16 +254027,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -255112,7 +254036,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -255121,7 +254045,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -255141,7 +254065,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -255149,9 +254073,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter2114 : struct.keys) + for (java.lang.String _iter2070 : struct.keys) { - oprot.writeString(_iter2114); + oprot.writeString(_iter2070); } oprot.writeListEnd(); } @@ -255161,9 +254085,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2115 : struct.records) + for (long _iter2071 : struct.records) { - oprot.writeI64(_iter2115); + oprot.writeI64(_iter2071); } oprot.writeListEnd(); } @@ -255172,11 +254096,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -255198,17 +254117,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimePage_argsTupleScheme getScheme() { - return new selectKeysRecordsTimePage_argsTupleScheme(); + public selectKeysRecordsTime_argsTupleScheme getScheme() { + return new selectKeysRecordsTime_argsTupleScheme(); } } - private static class selectKeysRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -255220,43 +254139,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter2116 : struct.keys) + for (java.lang.String _iter2072 : struct.keys) { - oprot.writeString(_iter2116); + oprot.writeString(_iter2072); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2117 : struct.records) + for (long _iter2073 : struct.records) { - oprot.writeI64(_iter2117); + oprot.writeI64(_iter2073); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -255269,31 +254182,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list2118 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list2118.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2119; - for (int _i2120 = 0; _i2120 < _list2118.size; ++_i2120) + org.apache.thrift.protocol.TList _list2074 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list2074.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2075; + for (int _i2076 = 0; _i2076 < _list2074.size; ++_i2076) { - _elem2119 = iprot.readString(); - struct.keys.add(_elem2119); + _elem2075 = iprot.readString(); + struct.keys.add(_elem2075); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2121 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2121.size); - long _elem2122; - for (int _i2123 = 0; _i2123 < _list2121.size; ++_i2123) + org.apache.thrift.protocol.TList _list2077 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2077.size); + long _elem2078; + for (int _i2079 = 0; _i2079 < _list2077.size; ++_i2079) { - _elem2122 = iprot.readI64(); - struct.records.add(_elem2122); + _elem2078 = iprot.readI64(); + struct.records.add(_elem2078); } } struct.setRecordsIsSet(true); @@ -255303,21 +254216,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTim struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -255329,16 +254237,16 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimePage_result"); + public static class selectKeysRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -255434,13 +254342,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTime_result.class, metaDataMap); } - public selectKeysRecordsTimePage_result() { + public selectKeysRecordsTime_result() { } - public selectKeysRecordsTimePage_result( + public selectKeysRecordsTime_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -255456,7 +254364,7 @@ public selectKeysRecordsTimePage_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimePage_result(selectKeysRecordsTimePage_result other) { + public selectKeysRecordsTime_result(selectKeysRecordsTime_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -255498,8 +254406,8 @@ public selectKeysRecordsTimePage_result(selectKeysRecordsTimePage_result other) } @Override - public selectKeysRecordsTimePage_result deepCopy() { - return new selectKeysRecordsTimePage_result(this); + public selectKeysRecordsTime_result deepCopy() { + return new selectKeysRecordsTime_result(this); } @Override @@ -255526,7 +254434,7 @@ public java.util.Map>> success) { + public selectKeysRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -255551,7 +254459,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -255576,7 +254484,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -255601,7 +254509,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -255701,12 +254609,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimePage_result) - return this.equals((selectKeysRecordsTimePage_result)that); + if (that instanceof selectKeysRecordsTime_result) + return this.equals((selectKeysRecordsTime_result)that); return false; } - public boolean equals(selectKeysRecordsTimePage_result that) { + public boolean equals(selectKeysRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -255775,7 +254683,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimePage_result other) { + public int compareTo(selectKeysRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -255842,7 +254750,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTime_result("); boolean first = true; sb.append("success:"); @@ -255901,17 +254809,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimePage_resultStandardScheme getScheme() { - return new selectKeysRecordsTimePage_resultStandardScheme(); + public selectKeysRecordsTime_resultStandardScheme getScheme() { + return new selectKeysRecordsTime_resultStandardScheme(); } } - private static class selectKeysRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -255924,38 +254832,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2124 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2124.size); - long _key2125; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2126; - for (int _i2127 = 0; _i2127 < _map2124.size; ++_i2127) + org.apache.thrift.protocol.TMap _map2080 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2080.size); + long _key2081; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2082; + for (int _i2083 = 0; _i2083 < _map2080.size; ++_i2083) { - _key2125 = iprot.readI64(); + _key2081 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2128 = iprot.readMapBegin(); - _val2126 = new java.util.LinkedHashMap>(2*_map2128.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2129; - @org.apache.thrift.annotation.Nullable java.util.Set _val2130; - for (int _i2131 = 0; _i2131 < _map2128.size; ++_i2131) + org.apache.thrift.protocol.TMap _map2084 = iprot.readMapBegin(); + _val2082 = new java.util.LinkedHashMap>(2*_map2084.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2085; + @org.apache.thrift.annotation.Nullable java.util.Set _val2086; + for (int _i2087 = 0; _i2087 < _map2084.size; ++_i2087) { - _key2129 = iprot.readString(); + _key2085 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2132 = iprot.readSetBegin(); - _val2130 = new java.util.LinkedHashSet(2*_set2132.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2133; - for (int _i2134 = 0; _i2134 < _set2132.size; ++_i2134) + org.apache.thrift.protocol.TSet _set2088 = iprot.readSetBegin(); + _val2086 = new java.util.LinkedHashSet(2*_set2088.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2089; + for (int _i2090 = 0; _i2090 < _set2088.size; ++_i2090) { - _elem2133 = new com.cinchapi.concourse.thrift.TObject(); - _elem2133.read(iprot); - _val2130.add(_elem2133); + _elem2089 = new com.cinchapi.concourse.thrift.TObject(); + _elem2089.read(iprot); + _val2086.add(_elem2089); } iprot.readSetEnd(); } - _val2126.put(_key2129, _val2130); + _val2082.put(_key2085, _val2086); } iprot.readMapEnd(); } - struct.success.put(_key2125, _val2126); + struct.success.put(_key2081, _val2082); } iprot.readMapEnd(); } @@ -256003,7 +254911,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -256011,19 +254919,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2135 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2091 : struct.success.entrySet()) { - oprot.writeI64(_iter2135.getKey()); + oprot.writeI64(_iter2091.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2135.getValue().size())); - for (java.util.Map.Entry> _iter2136 : _iter2135.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2091.getValue().size())); + for (java.util.Map.Entry> _iter2092 : _iter2091.getValue().entrySet()) { - oprot.writeString(_iter2136.getKey()); + oprot.writeString(_iter2092.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2136.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2137 : _iter2136.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2092.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2093 : _iter2092.getValue()) { - _iter2137.write(oprot); + _iter2093.write(oprot); } oprot.writeSetEnd(); } @@ -256056,17 +254964,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimePage_resultTupleScheme getScheme() { - return new selectKeysRecordsTimePage_resultTupleScheme(); + public selectKeysRecordsTime_resultTupleScheme getScheme() { + return new selectKeysRecordsTime_resultTupleScheme(); } } - private static class selectKeysRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -256085,19 +254993,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2138 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2094 : struct.success.entrySet()) { - oprot.writeI64(_iter2138.getKey()); + oprot.writeI64(_iter2094.getKey()); { - oprot.writeI32(_iter2138.getValue().size()); - for (java.util.Map.Entry> _iter2139 : _iter2138.getValue().entrySet()) + oprot.writeI32(_iter2094.getValue().size()); + for (java.util.Map.Entry> _iter2095 : _iter2094.getValue().entrySet()) { - oprot.writeString(_iter2139.getKey()); + oprot.writeString(_iter2095.getKey()); { - oprot.writeI32(_iter2139.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2140 : _iter2139.getValue()) + oprot.writeI32(_iter2095.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2096 : _iter2095.getValue()) { - _iter2140.write(oprot); + _iter2096.write(oprot); } } } @@ -256117,41 +255025,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2141 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2141.size); - long _key2142; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2143; - for (int _i2144 = 0; _i2144 < _map2141.size; ++_i2144) + org.apache.thrift.protocol.TMap _map2097 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2097.size); + long _key2098; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2099; + for (int _i2100 = 0; _i2100 < _map2097.size; ++_i2100) { - _key2142 = iprot.readI64(); + _key2098 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2145 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2143 = new java.util.LinkedHashMap>(2*_map2145.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2146; - @org.apache.thrift.annotation.Nullable java.util.Set _val2147; - for (int _i2148 = 0; _i2148 < _map2145.size; ++_i2148) + org.apache.thrift.protocol.TMap _map2101 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2099 = new java.util.LinkedHashMap>(2*_map2101.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2102; + @org.apache.thrift.annotation.Nullable java.util.Set _val2103; + for (int _i2104 = 0; _i2104 < _map2101.size; ++_i2104) { - _key2146 = iprot.readString(); + _key2102 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2149 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2147 = new java.util.LinkedHashSet(2*_set2149.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2150; - for (int _i2151 = 0; _i2151 < _set2149.size; ++_i2151) + org.apache.thrift.protocol.TSet _set2105 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2103 = new java.util.LinkedHashSet(2*_set2105.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2106; + for (int _i2107 = 0; _i2107 < _set2105.size; ++_i2107) { - _elem2150 = new com.cinchapi.concourse.thrift.TObject(); - _elem2150.read(iprot); - _val2147.add(_elem2150); + _elem2106 = new com.cinchapi.concourse.thrift.TObject(); + _elem2106.read(iprot); + _val2103.add(_elem2106); } } - _val2143.put(_key2146, _val2147); + _val2099.put(_key2102, _val2103); } } - struct.success.put(_key2142, _val2143); + struct.success.put(_key2098, _val2099); } } struct.setSuccessIsSet(true); @@ -256179,24 +255087,24 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimeOrder_args"); + public static class selectKeysRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimePage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -256206,7 +255114,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -256231,8 +255139,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -256295,8 +255203,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -256304,17 +255212,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimePage_args.class, metaDataMap); } - public selectKeysRecordsTimeOrder_args() { + public selectKeysRecordsTimePage_args() { } - public selectKeysRecordsTimeOrder_args( + public selectKeysRecordsTimePage_args( java.util.List keys, java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -256324,7 +255232,7 @@ public selectKeysRecordsTimeOrder_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -256333,7 +255241,7 @@ public selectKeysRecordsTimeOrder_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimeOrder_args(selectKeysRecordsTimeOrder_args other) { + public selectKeysRecordsTimePage_args(selectKeysRecordsTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -256344,8 +255252,8 @@ public selectKeysRecordsTimeOrder_args(selectKeysRecordsTimeOrder_args other) { this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -256359,8 +255267,8 @@ public selectKeysRecordsTimeOrder_args(selectKeysRecordsTimeOrder_args other) { } @Override - public selectKeysRecordsTimeOrder_args deepCopy() { - return new selectKeysRecordsTimeOrder_args(this); + public selectKeysRecordsTimePage_args deepCopy() { + return new selectKeysRecordsTimePage_args(this); } @Override @@ -256369,7 +255277,7 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -256396,7 +255304,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -256437,7 +255345,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -256461,7 +255369,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysRecordsTimeOrder_args setTimestamp(long timestamp) { + public selectKeysRecordsTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -256481,27 +255389,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeysRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeysRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -256510,7 +255418,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -256535,7 +255443,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -256560,7 +255468,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -256607,11 +255515,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -256655,8 +255563,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -256685,8 +255593,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -256699,12 +255607,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimeOrder_args) - return this.equals((selectKeysRecordsTimeOrder_args)that); + if (that instanceof selectKeysRecordsTimePage_args) + return this.equals((selectKeysRecordsTimePage_args)that); return false; } - public boolean equals(selectKeysRecordsTimeOrder_args that) { + public boolean equals(selectKeysRecordsTimePage_args that) { if (that == null) return false; if (this == that) @@ -256737,12 +255645,12 @@ public boolean equals(selectKeysRecordsTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -256790,9 +255698,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -256810,7 +255718,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimeOrder_args other) { + public int compareTo(selectKeysRecordsTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -256847,12 +255755,12 @@ public int compareTo(selectKeysRecordsTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -256908,7 +255816,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimePage_args("); boolean first = true; sb.append("keys:"); @@ -256931,11 +255839,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -256969,8 +255877,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -256998,17 +255906,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimeOrder_argsStandardScheme getScheme() { - return new selectKeysRecordsTimeOrder_argsStandardScheme(); + public selectKeysRecordsTimePage_argsStandardScheme getScheme() { + return new selectKeysRecordsTimePage_argsStandardScheme(); } } - private static class selectKeysRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -257021,13 +255929,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2152 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list2152.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2153; - for (int _i2154 = 0; _i2154 < _list2152.size; ++_i2154) + org.apache.thrift.protocol.TList _list2108 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list2108.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2109; + for (int _i2110 = 0; _i2110 < _list2108.size; ++_i2110) { - _elem2153 = iprot.readString(); - struct.keys.add(_elem2153); + _elem2109 = iprot.readString(); + struct.keys.add(_elem2109); } iprot.readListEnd(); } @@ -257039,13 +255947,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2155 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2155.size); - long _elem2156; - for (int _i2157 = 0; _i2157 < _list2155.size; ++_i2157) + org.apache.thrift.protocol.TList _list2111 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2111.size); + long _elem2112; + for (int _i2113 = 0; _i2113 < _list2111.size; ++_i2113) { - _elem2156 = iprot.readI64(); - struct.records.add(_elem2156); + _elem2112 = iprot.readI64(); + struct.records.add(_elem2112); } iprot.readListEnd(); } @@ -257062,11 +255970,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -257109,7 +256017,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -257117,9 +256025,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter2158 : struct.keys) + for (java.lang.String _iter2114 : struct.keys) { - oprot.writeString(_iter2158); + oprot.writeString(_iter2114); } oprot.writeListEnd(); } @@ -257129,9 +256037,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2159 : struct.records) + for (long _iter2115 : struct.records) { - oprot.writeI64(_iter2159); + oprot.writeI64(_iter2115); } oprot.writeListEnd(); } @@ -257140,9 +256048,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -257166,17 +256074,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimeOrder_argsTupleScheme getScheme() { - return new selectKeysRecordsTimeOrder_argsTupleScheme(); + public selectKeysRecordsTimePage_argsTupleScheme getScheme() { + return new selectKeysRecordsTimePage_argsTupleScheme(); } } - private static class selectKeysRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -257188,7 +256096,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -257204,26 +256112,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter2160 : struct.keys) + for (java.lang.String _iter2116 : struct.keys) { - oprot.writeString(_iter2160); + oprot.writeString(_iter2116); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2161 : struct.records) + for (long _iter2117 : struct.records) { - oprot.writeI64(_iter2161); + oprot.writeI64(_iter2117); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -257237,31 +256145,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list2162 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list2162.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2163; - for (int _i2164 = 0; _i2164 < _list2162.size; ++_i2164) + org.apache.thrift.protocol.TList _list2118 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list2118.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2119; + for (int _i2120 = 0; _i2120 < _list2118.size; ++_i2120) { - _elem2163 = iprot.readString(); - struct.keys.add(_elem2163); + _elem2119 = iprot.readString(); + struct.keys.add(_elem2119); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2165 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2165.size); - long _elem2166; - for (int _i2167 = 0; _i2167 < _list2165.size; ++_i2167) + org.apache.thrift.protocol.TList _list2121 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2121.size); + long _elem2122; + for (int _i2123 = 0; _i2123 < _list2121.size; ++_i2123) { - _elem2166 = iprot.readI64(); - struct.records.add(_elem2166); + _elem2122 = iprot.readI64(); + struct.records.add(_elem2122); } } struct.setRecordsIsSet(true); @@ -257271,9 +256179,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTim struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -257297,16 +256205,16 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimeOrder_result"); + public static class selectKeysRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -257402,13 +256310,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimePage_result.class, metaDataMap); } - public selectKeysRecordsTimeOrder_result() { + public selectKeysRecordsTimePage_result() { } - public selectKeysRecordsTimeOrder_result( + public selectKeysRecordsTimePage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -257424,7 +256332,7 @@ public selectKeysRecordsTimeOrder_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimeOrder_result(selectKeysRecordsTimeOrder_result other) { + public selectKeysRecordsTimePage_result(selectKeysRecordsTimePage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -257466,8 +256374,8 @@ public selectKeysRecordsTimeOrder_result(selectKeysRecordsTimeOrder_result other } @Override - public selectKeysRecordsTimeOrder_result deepCopy() { - return new selectKeysRecordsTimeOrder_result(this); + public selectKeysRecordsTimePage_result deepCopy() { + return new selectKeysRecordsTimePage_result(this); } @Override @@ -257494,7 +256402,7 @@ public java.util.Map>> success) { + public selectKeysRecordsTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -257519,7 +256427,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -257544,7 +256452,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -257569,7 +256477,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -257669,12 +256577,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimeOrder_result) - return this.equals((selectKeysRecordsTimeOrder_result)that); + if (that instanceof selectKeysRecordsTimePage_result) + return this.equals((selectKeysRecordsTimePage_result)that); return false; } - public boolean equals(selectKeysRecordsTimeOrder_result that) { + public boolean equals(selectKeysRecordsTimePage_result that) { if (that == null) return false; if (this == that) @@ -257743,7 +256651,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimeOrder_result other) { + public int compareTo(selectKeysRecordsTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -257810,7 +256718,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimePage_result("); boolean first = true; sb.append("success:"); @@ -257869,17 +256777,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimeOrder_resultStandardScheme getScheme() { - return new selectKeysRecordsTimeOrder_resultStandardScheme(); + public selectKeysRecordsTimePage_resultStandardScheme getScheme() { + return new selectKeysRecordsTimePage_resultStandardScheme(); } } - private static class selectKeysRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -257892,38 +256800,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2168 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2168.size); - long _key2169; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2170; - for (int _i2171 = 0; _i2171 < _map2168.size; ++_i2171) + org.apache.thrift.protocol.TMap _map2124 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2124.size); + long _key2125; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2126; + for (int _i2127 = 0; _i2127 < _map2124.size; ++_i2127) { - _key2169 = iprot.readI64(); + _key2125 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2172 = iprot.readMapBegin(); - _val2170 = new java.util.LinkedHashMap>(2*_map2172.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2173; - @org.apache.thrift.annotation.Nullable java.util.Set _val2174; - for (int _i2175 = 0; _i2175 < _map2172.size; ++_i2175) + org.apache.thrift.protocol.TMap _map2128 = iprot.readMapBegin(); + _val2126 = new java.util.LinkedHashMap>(2*_map2128.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2129; + @org.apache.thrift.annotation.Nullable java.util.Set _val2130; + for (int _i2131 = 0; _i2131 < _map2128.size; ++_i2131) { - _key2173 = iprot.readString(); + _key2129 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2176 = iprot.readSetBegin(); - _val2174 = new java.util.LinkedHashSet(2*_set2176.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2177; - for (int _i2178 = 0; _i2178 < _set2176.size; ++_i2178) + org.apache.thrift.protocol.TSet _set2132 = iprot.readSetBegin(); + _val2130 = new java.util.LinkedHashSet(2*_set2132.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2133; + for (int _i2134 = 0; _i2134 < _set2132.size; ++_i2134) { - _elem2177 = new com.cinchapi.concourse.thrift.TObject(); - _elem2177.read(iprot); - _val2174.add(_elem2177); + _elem2133 = new com.cinchapi.concourse.thrift.TObject(); + _elem2133.read(iprot); + _val2130.add(_elem2133); } iprot.readSetEnd(); } - _val2170.put(_key2173, _val2174); + _val2126.put(_key2129, _val2130); } iprot.readMapEnd(); } - struct.success.put(_key2169, _val2170); + struct.success.put(_key2125, _val2126); } iprot.readMapEnd(); } @@ -257971,7 +256879,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -257979,19 +256887,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2179 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2135 : struct.success.entrySet()) { - oprot.writeI64(_iter2179.getKey()); + oprot.writeI64(_iter2135.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2179.getValue().size())); - for (java.util.Map.Entry> _iter2180 : _iter2179.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2135.getValue().size())); + for (java.util.Map.Entry> _iter2136 : _iter2135.getValue().entrySet()) { - oprot.writeString(_iter2180.getKey()); + oprot.writeString(_iter2136.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2180.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2181 : _iter2180.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2136.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2137 : _iter2136.getValue()) { - _iter2181.write(oprot); + _iter2137.write(oprot); } oprot.writeSetEnd(); } @@ -258024,17 +256932,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimeOrder_resultTupleScheme getScheme() { - return new selectKeysRecordsTimeOrder_resultTupleScheme(); + public selectKeysRecordsTimePage_resultTupleScheme getScheme() { + return new selectKeysRecordsTimePage_resultTupleScheme(); } } - private static class selectKeysRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -258053,19 +256961,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2182 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2138 : struct.success.entrySet()) { - oprot.writeI64(_iter2182.getKey()); + oprot.writeI64(_iter2138.getKey()); { - oprot.writeI32(_iter2182.getValue().size()); - for (java.util.Map.Entry> _iter2183 : _iter2182.getValue().entrySet()) + oprot.writeI32(_iter2138.getValue().size()); + for (java.util.Map.Entry> _iter2139 : _iter2138.getValue().entrySet()) { - oprot.writeString(_iter2183.getKey()); + oprot.writeString(_iter2139.getKey()); { - oprot.writeI32(_iter2183.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2184 : _iter2183.getValue()) + oprot.writeI32(_iter2139.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2140 : _iter2139.getValue()) { - _iter2184.write(oprot); + _iter2140.write(oprot); } } } @@ -258085,41 +256993,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2185 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2185.size); - long _key2186; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2187; - for (int _i2188 = 0; _i2188 < _map2185.size; ++_i2188) + org.apache.thrift.protocol.TMap _map2141 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2141.size); + long _key2142; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2143; + for (int _i2144 = 0; _i2144 < _map2141.size; ++_i2144) { - _key2186 = iprot.readI64(); + _key2142 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2189 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2187 = new java.util.LinkedHashMap>(2*_map2189.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2190; - @org.apache.thrift.annotation.Nullable java.util.Set _val2191; - for (int _i2192 = 0; _i2192 < _map2189.size; ++_i2192) + org.apache.thrift.protocol.TMap _map2145 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2143 = new java.util.LinkedHashMap>(2*_map2145.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2146; + @org.apache.thrift.annotation.Nullable java.util.Set _val2147; + for (int _i2148 = 0; _i2148 < _map2145.size; ++_i2148) { - _key2190 = iprot.readString(); + _key2146 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2193 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2191 = new java.util.LinkedHashSet(2*_set2193.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2194; - for (int _i2195 = 0; _i2195 < _set2193.size; ++_i2195) + org.apache.thrift.protocol.TSet _set2149 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2147 = new java.util.LinkedHashSet(2*_set2149.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2150; + for (int _i2151 = 0; _i2151 < _set2149.size; ++_i2151) { - _elem2194 = new com.cinchapi.concourse.thrift.TObject(); - _elem2194.read(iprot); - _val2191.add(_elem2194); + _elem2150 = new com.cinchapi.concourse.thrift.TObject(); + _elem2150.read(iprot); + _val2147.add(_elem2150); } } - _val2187.put(_key2190, _val2191); + _val2143.put(_key2146, _val2147); } } - struct.success.put(_key2186, _val2187); + struct.success.put(_key2142, _val2143); } } struct.setSuccessIsSet(true); @@ -258147,26 +257055,24 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimeOrderPage_args"); + public static class selectKeysRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -258177,10 +257083,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -258204,13 +257109,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -258270,8 +257173,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -258279,18 +257180,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimeOrder_args.class, metaDataMap); } - public selectKeysRecordsTimeOrderPage_args() { + public selectKeysRecordsTimeOrder_args() { } - public selectKeysRecordsTimeOrderPage_args( + public selectKeysRecordsTimeOrder_args( java.util.List keys, java.util.List records, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -258301,7 +257201,6 @@ public selectKeysRecordsTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -258310,7 +257209,7 @@ public selectKeysRecordsTimeOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimeOrderPage_args(selectKeysRecordsTimeOrderPage_args other) { + public selectKeysRecordsTimeOrder_args(selectKeysRecordsTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -258324,9 +257223,6 @@ public selectKeysRecordsTimeOrderPage_args(selectKeysRecordsTimeOrderPage_args o if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -258339,8 +257235,8 @@ public selectKeysRecordsTimeOrderPage_args(selectKeysRecordsTimeOrderPage_args o } @Override - public selectKeysRecordsTimeOrderPage_args deepCopy() { - return new selectKeysRecordsTimeOrderPage_args(this); + public selectKeysRecordsTimeOrder_args deepCopy() { + return new selectKeysRecordsTimeOrder_args(this); } @Override @@ -258350,7 +257246,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -258377,7 +257272,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -258418,7 +257313,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -258442,7 +257337,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysRecordsTimeOrderPage_args setTimestamp(long timestamp) { + public selectKeysRecordsTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -258466,7 +257361,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeysRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeysRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -258486,37 +257381,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -258541,7 +257411,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -258566,7 +257436,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -258621,14 +257491,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -258672,9 +257534,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -258704,8 +257563,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -258718,12 +257575,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimeOrderPage_args) - return this.equals((selectKeysRecordsTimeOrderPage_args)that); + if (that instanceof selectKeysRecordsTimeOrder_args) + return this.equals((selectKeysRecordsTimeOrder_args)that); return false; } - public boolean equals(selectKeysRecordsTimeOrderPage_args that) { + public boolean equals(selectKeysRecordsTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -258765,15 +257622,6 @@ public boolean equals(selectKeysRecordsTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -258822,10 +257670,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -258842,7 +257686,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimeOrderPage_args other) { + public int compareTo(selectKeysRecordsTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -258889,16 +257733,6 @@ public int compareTo(selectKeysRecordsTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -258950,7 +257784,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimeOrder_args("); boolean first = true; sb.append("keys:"); @@ -258981,14 +257815,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -259022,9 +257848,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -259051,17 +257874,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimeOrderPage_argsStandardScheme getScheme() { - return new selectKeysRecordsTimeOrderPage_argsStandardScheme(); + public selectKeysRecordsTimeOrder_argsStandardScheme getScheme() { + return new selectKeysRecordsTimeOrder_argsStandardScheme(); } } - private static class selectKeysRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -259074,13 +257897,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2196 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list2196.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2197; - for (int _i2198 = 0; _i2198 < _list2196.size; ++_i2198) + org.apache.thrift.protocol.TList _list2152 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list2152.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2153; + for (int _i2154 = 0; _i2154 < _list2152.size; ++_i2154) { - _elem2197 = iprot.readString(); - struct.keys.add(_elem2197); + _elem2153 = iprot.readString(); + struct.keys.add(_elem2153); } iprot.readListEnd(); } @@ -259092,13 +257915,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2199 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2199.size); - long _elem2200; - for (int _i2201 = 0; _i2201 < _list2199.size; ++_i2201) + org.apache.thrift.protocol.TList _list2155 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2155.size); + long _elem2156; + for (int _i2157 = 0; _i2157 < _list2155.size; ++_i2157) { - _elem2200 = iprot.readI64(); - struct.records.add(_elem2200); + _elem2156 = iprot.readI64(); + struct.records.add(_elem2156); } iprot.readListEnd(); } @@ -259124,16 +257947,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -259142,7 +257956,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -259151,7 +257965,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -259171,7 +257985,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -259179,9 +257993,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter2202 : struct.keys) + for (java.lang.String _iter2158 : struct.keys) { - oprot.writeString(_iter2202); + oprot.writeString(_iter2158); } oprot.writeListEnd(); } @@ -259191,9 +258005,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2203 : struct.records) + for (long _iter2159 : struct.records) { - oprot.writeI64(_iter2203); + oprot.writeI64(_iter2159); } oprot.writeListEnd(); } @@ -259207,11 +258021,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -259233,17 +258042,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimeOrderPage_argsTupleScheme getScheme() { - return new selectKeysRecordsTimeOrderPage_argsTupleScheme(); + public selectKeysRecordsTimeOrder_argsTupleScheme getScheme() { + return new selectKeysRecordsTimeOrder_argsTupleScheme(); } } - private static class selectKeysRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -259258,34 +258067,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter2204 : struct.keys) + for (java.lang.String _iter2160 : struct.keys) { - oprot.writeString(_iter2204); + oprot.writeString(_iter2160); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2205 : struct.records) + for (long _iter2161 : struct.records) { - oprot.writeI64(_iter2205); + oprot.writeI64(_iter2161); } } } @@ -259295,9 +258101,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -259310,31 +258113,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list2206 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list2206.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2207; - for (int _i2208 = 0; _i2208 < _list2206.size; ++_i2208) + org.apache.thrift.protocol.TList _list2162 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list2162.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2163; + for (int _i2164 = 0; _i2164 < _list2162.size; ++_i2164) { - _elem2207 = iprot.readString(); - struct.keys.add(_elem2207); + _elem2163 = iprot.readString(); + struct.keys.add(_elem2163); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2209 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2209.size); - long _elem2210; - for (int _i2211 = 0; _i2211 < _list2209.size; ++_i2211) + org.apache.thrift.protocol.TList _list2165 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2165.size); + long _elem2166; + for (int _i2167 = 0; _i2167 < _list2165.size; ++_i2167) { - _elem2210 = iprot.readI64(); - struct.records.add(_elem2210); + _elem2166 = iprot.readI64(); + struct.records.add(_elem2166); } } struct.setRecordsIsSet(true); @@ -259349,21 +258152,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTim struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -259375,16 +258173,16 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimeOrderPage_result"); + public static class selectKeysRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -259480,13 +258278,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimeOrder_result.class, metaDataMap); } - public selectKeysRecordsTimeOrderPage_result() { + public selectKeysRecordsTimeOrder_result() { } - public selectKeysRecordsTimeOrderPage_result( + public selectKeysRecordsTimeOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -259502,7 +258300,7 @@ public selectKeysRecordsTimeOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimeOrderPage_result(selectKeysRecordsTimeOrderPage_result other) { + public selectKeysRecordsTimeOrder_result(selectKeysRecordsTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -259544,8 +258342,8 @@ public selectKeysRecordsTimeOrderPage_result(selectKeysRecordsTimeOrderPage_resu } @Override - public selectKeysRecordsTimeOrderPage_result deepCopy() { - return new selectKeysRecordsTimeOrderPage_result(this); + public selectKeysRecordsTimeOrder_result deepCopy() { + return new selectKeysRecordsTimeOrder_result(this); } @Override @@ -259572,7 +258370,7 @@ public java.util.Map>> success) { + public selectKeysRecordsTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -259597,7 +258395,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -259622,7 +258420,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -259647,7 +258445,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -259747,12 +258545,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimeOrderPage_result) - return this.equals((selectKeysRecordsTimeOrderPage_result)that); + if (that instanceof selectKeysRecordsTimeOrder_result) + return this.equals((selectKeysRecordsTimeOrder_result)that); return false; } - public boolean equals(selectKeysRecordsTimeOrderPage_result that) { + public boolean equals(selectKeysRecordsTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -259821,7 +258619,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimeOrderPage_result other) { + public int compareTo(selectKeysRecordsTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -259888,7 +258686,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -259947,17 +258745,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimeOrderPage_resultStandardScheme getScheme() { - return new selectKeysRecordsTimeOrderPage_resultStandardScheme(); + public selectKeysRecordsTimeOrder_resultStandardScheme getScheme() { + return new selectKeysRecordsTimeOrder_resultStandardScheme(); } } - private static class selectKeysRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -259970,38 +258768,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2212 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2212.size); - long _key2213; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2214; - for (int _i2215 = 0; _i2215 < _map2212.size; ++_i2215) + org.apache.thrift.protocol.TMap _map2168 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2168.size); + long _key2169; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2170; + for (int _i2171 = 0; _i2171 < _map2168.size; ++_i2171) { - _key2213 = iprot.readI64(); + _key2169 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2216 = iprot.readMapBegin(); - _val2214 = new java.util.LinkedHashMap>(2*_map2216.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2217; - @org.apache.thrift.annotation.Nullable java.util.Set _val2218; - for (int _i2219 = 0; _i2219 < _map2216.size; ++_i2219) + org.apache.thrift.protocol.TMap _map2172 = iprot.readMapBegin(); + _val2170 = new java.util.LinkedHashMap>(2*_map2172.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2173; + @org.apache.thrift.annotation.Nullable java.util.Set _val2174; + for (int _i2175 = 0; _i2175 < _map2172.size; ++_i2175) { - _key2217 = iprot.readString(); + _key2173 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2220 = iprot.readSetBegin(); - _val2218 = new java.util.LinkedHashSet(2*_set2220.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2221; - for (int _i2222 = 0; _i2222 < _set2220.size; ++_i2222) + org.apache.thrift.protocol.TSet _set2176 = iprot.readSetBegin(); + _val2174 = new java.util.LinkedHashSet(2*_set2176.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2177; + for (int _i2178 = 0; _i2178 < _set2176.size; ++_i2178) { - _elem2221 = new com.cinchapi.concourse.thrift.TObject(); - _elem2221.read(iprot); - _val2218.add(_elem2221); + _elem2177 = new com.cinchapi.concourse.thrift.TObject(); + _elem2177.read(iprot); + _val2174.add(_elem2177); } iprot.readSetEnd(); } - _val2214.put(_key2217, _val2218); + _val2170.put(_key2173, _val2174); } iprot.readMapEnd(); } - struct.success.put(_key2213, _val2214); + struct.success.put(_key2169, _val2170); } iprot.readMapEnd(); } @@ -260049,7 +258847,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -260057,19 +258855,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2223 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2179 : struct.success.entrySet()) { - oprot.writeI64(_iter2223.getKey()); + oprot.writeI64(_iter2179.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2223.getValue().size())); - for (java.util.Map.Entry> _iter2224 : _iter2223.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2179.getValue().size())); + for (java.util.Map.Entry> _iter2180 : _iter2179.getValue().entrySet()) { - oprot.writeString(_iter2224.getKey()); + oprot.writeString(_iter2180.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2224.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2225 : _iter2224.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2180.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2181 : _iter2180.getValue()) { - _iter2225.write(oprot); + _iter2181.write(oprot); } oprot.writeSetEnd(); } @@ -260102,17 +258900,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimeOrderPage_resultTupleScheme getScheme() { - return new selectKeysRecordsTimeOrderPage_resultTupleScheme(); + public selectKeysRecordsTimeOrder_resultTupleScheme getScheme() { + return new selectKeysRecordsTimeOrder_resultTupleScheme(); } } - private static class selectKeysRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -260131,19 +258929,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2226 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2182 : struct.success.entrySet()) { - oprot.writeI64(_iter2226.getKey()); + oprot.writeI64(_iter2182.getKey()); { - oprot.writeI32(_iter2226.getValue().size()); - for (java.util.Map.Entry> _iter2227 : _iter2226.getValue().entrySet()) + oprot.writeI32(_iter2182.getValue().size()); + for (java.util.Map.Entry> _iter2183 : _iter2182.getValue().entrySet()) { - oprot.writeString(_iter2227.getKey()); + oprot.writeString(_iter2183.getKey()); { - oprot.writeI32(_iter2227.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2228 : _iter2227.getValue()) + oprot.writeI32(_iter2183.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2184 : _iter2183.getValue()) { - _iter2228.write(oprot); + _iter2184.write(oprot); } } } @@ -260163,41 +258961,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2229 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2229.size); - long _key2230; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2231; - for (int _i2232 = 0; _i2232 < _map2229.size; ++_i2232) + org.apache.thrift.protocol.TMap _map2185 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2185.size); + long _key2186; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2187; + for (int _i2188 = 0; _i2188 < _map2185.size; ++_i2188) { - _key2230 = iprot.readI64(); + _key2186 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2233 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2231 = new java.util.LinkedHashMap>(2*_map2233.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2234; - @org.apache.thrift.annotation.Nullable java.util.Set _val2235; - for (int _i2236 = 0; _i2236 < _map2233.size; ++_i2236) + org.apache.thrift.protocol.TMap _map2189 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2187 = new java.util.LinkedHashMap>(2*_map2189.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2190; + @org.apache.thrift.annotation.Nullable java.util.Set _val2191; + for (int _i2192 = 0; _i2192 < _map2189.size; ++_i2192) { - _key2234 = iprot.readString(); + _key2190 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2237 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2235 = new java.util.LinkedHashSet(2*_set2237.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2238; - for (int _i2239 = 0; _i2239 < _set2237.size; ++_i2239) + org.apache.thrift.protocol.TSet _set2193 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2191 = new java.util.LinkedHashSet(2*_set2193.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2194; + for (int _i2195 = 0; _i2195 < _set2193.size; ++_i2195) { - _elem2238 = new com.cinchapi.concourse.thrift.TObject(); - _elem2238.read(iprot); - _val2235.add(_elem2238); + _elem2194 = new com.cinchapi.concourse.thrift.TObject(); + _elem2194.read(iprot); + _val2191.add(_elem2194); } } - _val2231.put(_key2234, _val2235); + _val2187.put(_key2190, _val2191); } } - struct.success.put(_key2230, _val2231); + struct.success.put(_key2186, _val2187); } } struct.setSuccessIsSet(true); @@ -260225,22 +259023,26 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestr_args"); + public static class selectKeysRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -260250,9 +259052,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -260274,11 +259078,15 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -260323,6 +259131,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -260333,7 +259143,11 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -260341,16 +259155,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimeOrderPage_args.class, metaDataMap); } - public selectKeysRecordsTimestr_args() { + public selectKeysRecordsTimeOrderPage_args() { } - public selectKeysRecordsTimestr_args( + public selectKeysRecordsTimeOrderPage_args( java.util.List keys, java.util.List records, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -260359,6 +259175,9 @@ public selectKeysRecordsTimestr_args( this.keys = keys; this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -260367,7 +259186,8 @@ public selectKeysRecordsTimestr_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimestr_args(selectKeysRecordsTimestr_args other) { + public selectKeysRecordsTimeOrderPage_args(selectKeysRecordsTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -260376,8 +259196,12 @@ public selectKeysRecordsTimestr_args(selectKeysRecordsTimestr_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -260391,15 +259215,18 @@ public selectKeysRecordsTimestr_args(selectKeysRecordsTimestr_args other) { } @Override - public selectKeysRecordsTimestr_args deepCopy() { - return new selectKeysRecordsTimestr_args(this); + public selectKeysRecordsTimeOrderPage_args deepCopy() { + return new selectKeysRecordsTimeOrderPage_args(this); } @Override public void clear() { this.keys = null; this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -260426,7 +259253,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -260467,7 +259294,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -260487,28 +259314,76 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public selectKeysRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysRecordsTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeysRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -260517,7 +259392,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -260542,7 +259417,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -260567,7 +259442,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -260610,7 +259485,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -260654,6 +259545,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -260681,6 +259578,10 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -260693,12 +259594,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimestr_args) - return this.equals((selectKeysRecordsTimestr_args)that); + if (that instanceof selectKeysRecordsTimeOrderPage_args) + return this.equals((selectKeysRecordsTimeOrderPage_args)that); return false; } - public boolean equals(selectKeysRecordsTimestr_args that) { + public boolean equals(selectKeysRecordsTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -260722,12 +259623,30 @@ public boolean equals(selectKeysRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -260773,9 +259692,15 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -260793,7 +259718,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimestr_args other) { + public int compareTo(selectKeysRecordsTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -260830,6 +259755,26 @@ public int compareTo(selectKeysRecordsTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -260881,7 +259826,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimeOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -260901,10 +259846,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -260938,6 +259895,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -260956,23 +259919,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeysRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestr_argsStandardScheme getScheme() { - return new selectKeysRecordsTimestr_argsStandardScheme(); + public selectKeysRecordsTimeOrderPage_argsStandardScheme getScheme() { + return new selectKeysRecordsTimeOrderPage_argsStandardScheme(); } } - private static class selectKeysRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -260985,13 +259950,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2240 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list2240.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2241; - for (int _i2242 = 0; _i2242 < _list2240.size; ++_i2242) + org.apache.thrift.protocol.TList _list2196 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list2196.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2197; + for (int _i2198 = 0; _i2198 < _list2196.size; ++_i2198) { - _elem2241 = iprot.readString(); - struct.keys.add(_elem2241); + _elem2197 = iprot.readString(); + struct.keys.add(_elem2197); } iprot.readListEnd(); } @@ -261003,13 +259968,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2243 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2243.size); - long _elem2244; - for (int _i2245 = 0; _i2245 < _list2243.size; ++_i2245) + org.apache.thrift.protocol.TList _list2199 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2199.size); + long _elem2200; + for (int _i2201 = 0; _i2201 < _list2199.size; ++_i2201) { - _elem2244 = iprot.readI64(); - struct.records.add(_elem2244); + _elem2200 = iprot.readI64(); + struct.records.add(_elem2200); } iprot.readListEnd(); } @@ -261019,14 +259984,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -261035,7 +260018,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -261044,7 +260027,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -261064,7 +260047,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -261072,9 +260055,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter2246 : struct.keys) + for (java.lang.String _iter2202 : struct.keys) { - oprot.writeString(_iter2246); + oprot.writeString(_iter2202); } oprot.writeListEnd(); } @@ -261084,17 +260067,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2247 : struct.records) + for (long _iter2203 : struct.records) { - oprot.writeI64(_iter2247); + oprot.writeI64(_iter2203); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -261118,17 +260109,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestr_argsTupleScheme getScheme() { - return new selectKeysRecordsTimestr_argsTupleScheme(); + public selectKeysRecordsTimeOrderPage_argsTupleScheme getScheme() { + return new selectKeysRecordsTimeOrderPage_argsTupleScheme(); } } - private static class selectKeysRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -261140,36 +260131,48 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter2248 : struct.keys) + for (java.lang.String _iter2204 : struct.keys) { - oprot.writeString(_iter2248); + oprot.writeString(_iter2204); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2249 : struct.records) + for (long _iter2205 : struct.records) { - oprot.writeI64(_iter2249); + oprot.writeI64(_iter2205); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -261183,50 +260186,60 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list2250 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list2250.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2251; - for (int _i2252 = 0; _i2252 < _list2250.size; ++_i2252) + org.apache.thrift.protocol.TList _list2206 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list2206.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2207; + for (int _i2208 = 0; _i2208 < _list2206.size; ++_i2208) { - _elem2251 = iprot.readString(); - struct.keys.add(_elem2251); + _elem2207 = iprot.readString(); + struct.keys.add(_elem2207); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2253 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2253.size); - long _elem2254; - for (int _i2255 = 0; _i2255 < _list2253.size; ++_i2255) + org.apache.thrift.protocol.TList _list2209 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2209.size); + long _elem2210; + for (int _i2211 = 0; _i2211 < _list2209.size; ++_i2211) { - _elem2254 = iprot.readI64(); - struct.records.add(_elem2254); + _elem2210 = iprot.readI64(); + struct.records.add(_elem2210); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -261238,31 +260251,28 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestr_result"); + public static class selectKeysRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -261286,8 +260296,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -261346,35 +260354,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimeOrderPage_result.class, metaDataMap); } - public selectKeysRecordsTimestr_result() { + public selectKeysRecordsTimeOrderPage_result() { } - public selectKeysRecordsTimestr_result( + public selectKeysRecordsTimeOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeysRecordsTimestr_result(selectKeysRecordsTimestr_result other) { + public selectKeysRecordsTimeOrderPage_result(selectKeysRecordsTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -261411,16 +260415,13 @@ public selectKeysRecordsTimestr_result(selectKeysRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectKeysRecordsTimestr_result deepCopy() { - return new selectKeysRecordsTimestr_result(this); + public selectKeysRecordsTimeOrderPage_result deepCopy() { + return new selectKeysRecordsTimeOrderPage_result(this); } @Override @@ -261429,7 +260430,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -261448,7 +260448,7 @@ public java.util.Map>> success) { + public selectKeysRecordsTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -261473,7 +260473,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -261498,7 +260498,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -261519,11 +260519,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -261543,31 +260543,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectKeysRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -261599,15 +260574,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -261630,9 +260597,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -261653,20 +260617,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimestr_result) - return this.equals((selectKeysRecordsTimestr_result)that); + if (that instanceof selectKeysRecordsTimeOrderPage_result) + return this.equals((selectKeysRecordsTimeOrderPage_result)that); return false; } - public boolean equals(selectKeysRecordsTimestr_result that) { + public boolean equals(selectKeysRecordsTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -261708,15 +260670,6 @@ public boolean equals(selectKeysRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -261740,15 +260693,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectKeysRecordsTimestr_result other) { + public int compareTo(selectKeysRecordsTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -261795,16 +260744,6 @@ public int compareTo(selectKeysRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -261825,7 +260764,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -261859,14 +260798,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -261892,17 +260823,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestr_resultStandardScheme getScheme() { - return new selectKeysRecordsTimestr_resultStandardScheme(); + public selectKeysRecordsTimeOrderPage_resultStandardScheme getScheme() { + return new selectKeysRecordsTimeOrderPage_resultStandardScheme(); } } - private static class selectKeysRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -261915,38 +260846,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2256 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2256.size); - long _key2257; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2258; - for (int _i2259 = 0; _i2259 < _map2256.size; ++_i2259) + org.apache.thrift.protocol.TMap _map2212 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2212.size); + long _key2213; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2214; + for (int _i2215 = 0; _i2215 < _map2212.size; ++_i2215) { - _key2257 = iprot.readI64(); + _key2213 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2260 = iprot.readMapBegin(); - _val2258 = new java.util.LinkedHashMap>(2*_map2260.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2261; - @org.apache.thrift.annotation.Nullable java.util.Set _val2262; - for (int _i2263 = 0; _i2263 < _map2260.size; ++_i2263) + org.apache.thrift.protocol.TMap _map2216 = iprot.readMapBegin(); + _val2214 = new java.util.LinkedHashMap>(2*_map2216.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2217; + @org.apache.thrift.annotation.Nullable java.util.Set _val2218; + for (int _i2219 = 0; _i2219 < _map2216.size; ++_i2219) { - _key2261 = iprot.readString(); + _key2217 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2264 = iprot.readSetBegin(); - _val2262 = new java.util.LinkedHashSet(2*_set2264.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2265; - for (int _i2266 = 0; _i2266 < _set2264.size; ++_i2266) + org.apache.thrift.protocol.TSet _set2220 = iprot.readSetBegin(); + _val2218 = new java.util.LinkedHashSet(2*_set2220.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2221; + for (int _i2222 = 0; _i2222 < _set2220.size; ++_i2222) { - _elem2265 = new com.cinchapi.concourse.thrift.TObject(); - _elem2265.read(iprot); - _val2262.add(_elem2265); + _elem2221 = new com.cinchapi.concourse.thrift.TObject(); + _elem2221.read(iprot); + _val2218.add(_elem2221); } iprot.readSetEnd(); } - _val2258.put(_key2261, _val2262); + _val2214.put(_key2217, _val2218); } iprot.readMapEnd(); } - struct.success.put(_key2257, _val2258); + struct.success.put(_key2213, _val2214); } iprot.readMapEnd(); } @@ -261975,22 +260906,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -262003,7 +260925,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -262011,19 +260933,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2267 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2223 : struct.success.entrySet()) { - oprot.writeI64(_iter2267.getKey()); + oprot.writeI64(_iter2223.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2267.getValue().size())); - for (java.util.Map.Entry> _iter2268 : _iter2267.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2223.getValue().size())); + for (java.util.Map.Entry> _iter2224 : _iter2223.getValue().entrySet()) { - oprot.writeString(_iter2268.getKey()); + oprot.writeString(_iter2224.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2268.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2269 : _iter2268.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2224.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2225 : _iter2224.getValue()) { - _iter2269.write(oprot); + _iter2225.write(oprot); } oprot.writeSetEnd(); } @@ -262050,28 +260972,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeysRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestr_resultTupleScheme getScheme() { - return new selectKeysRecordsTimestr_resultTupleScheme(); + public selectKeysRecordsTimeOrderPage_resultTupleScheme getScheme() { + return new selectKeysRecordsTimeOrderPage_resultTupleScheme(); } } - private static class selectKeysRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -262086,26 +261003,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2270 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2226 : struct.success.entrySet()) { - oprot.writeI64(_iter2270.getKey()); + oprot.writeI64(_iter2226.getKey()); { - oprot.writeI32(_iter2270.getValue().size()); - for (java.util.Map.Entry> _iter2271 : _iter2270.getValue().entrySet()) + oprot.writeI32(_iter2226.getValue().size()); + for (java.util.Map.Entry> _iter2227 : _iter2226.getValue().entrySet()) { - oprot.writeString(_iter2271.getKey()); + oprot.writeString(_iter2227.getKey()); { - oprot.writeI32(_iter2271.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2272 : _iter2271.getValue()) + oprot.writeI32(_iter2227.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2228 : _iter2227.getValue()) { - _iter2272.write(oprot); + _iter2228.write(oprot); } } } @@ -262122,47 +261036,44 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2273 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2273.size); - long _key2274; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2275; - for (int _i2276 = 0; _i2276 < _map2273.size; ++_i2276) + org.apache.thrift.protocol.TMap _map2229 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2229.size); + long _key2230; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2231; + for (int _i2232 = 0; _i2232 < _map2229.size; ++_i2232) { - _key2274 = iprot.readI64(); + _key2230 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2277 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2275 = new java.util.LinkedHashMap>(2*_map2277.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2278; - @org.apache.thrift.annotation.Nullable java.util.Set _val2279; - for (int _i2280 = 0; _i2280 < _map2277.size; ++_i2280) + org.apache.thrift.protocol.TMap _map2233 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2231 = new java.util.LinkedHashMap>(2*_map2233.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2234; + @org.apache.thrift.annotation.Nullable java.util.Set _val2235; + for (int _i2236 = 0; _i2236 < _map2233.size; ++_i2236) { - _key2278 = iprot.readString(); + _key2234 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2281 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2279 = new java.util.LinkedHashSet(2*_set2281.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2282; - for (int _i2283 = 0; _i2283 < _set2281.size; ++_i2283) + org.apache.thrift.protocol.TSet _set2237 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2235 = new java.util.LinkedHashSet(2*_set2237.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2238; + for (int _i2239 = 0; _i2239 < _set2237.size; ++_i2239) { - _elem2282 = new com.cinchapi.concourse.thrift.TObject(); - _elem2282.read(iprot); - _val2279.add(_elem2282); + _elem2238 = new com.cinchapi.concourse.thrift.TObject(); + _elem2238.read(iprot); + _val2235.add(_elem2238); } } - _val2275.put(_key2278, _val2279); + _val2231.put(_key2234, _val2235); } } - struct.success.put(_key2274, _val2275); + struct.success.put(_key2230, _val2231); } } struct.setSuccessIsSet(true); @@ -262178,15 +261089,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTim struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -262195,24 +261101,22 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrPage_args"); + public static class selectKeysRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -262222,10 +261126,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -262247,13 +261150,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -262309,8 +261210,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -262318,17 +261217,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestr_args.class, metaDataMap); } - public selectKeysRecordsTimestrPage_args() { + public selectKeysRecordsTimestr_args() { } - public selectKeysRecordsTimestrPage_args( + public selectKeysRecordsTimestr_args( java.util.List keys, java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -262337,7 +261235,6 @@ public selectKeysRecordsTimestrPage_args( this.keys = keys; this.records = records; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -262346,7 +261243,7 @@ public selectKeysRecordsTimestrPage_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimestrPage_args(selectKeysRecordsTimestrPage_args other) { + public selectKeysRecordsTimestr_args(selectKeysRecordsTimestr_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -262358,9 +261255,6 @@ public selectKeysRecordsTimestrPage_args(selectKeysRecordsTimestrPage_args other if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -262373,8 +261267,8 @@ public selectKeysRecordsTimestrPage_args(selectKeysRecordsTimestrPage_args other } @Override - public selectKeysRecordsTimestrPage_args deepCopy() { - return new selectKeysRecordsTimestrPage_args(this); + public selectKeysRecordsTimestr_args deepCopy() { + return new selectKeysRecordsTimestr_args(this); } @Override @@ -262382,7 +261276,6 @@ public void clear() { this.keys = null; this.records = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -262409,7 +261302,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -262450,7 +261343,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -262475,7 +261368,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -262495,37 +261388,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -262550,7 +261418,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -262575,7 +261443,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -262622,14 +261490,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -262670,9 +261530,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -262700,8 +261557,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -262714,12 +261569,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimestrPage_args) - return this.equals((selectKeysRecordsTimestrPage_args)that); + if (that instanceof selectKeysRecordsTimestr_args) + return this.equals((selectKeysRecordsTimestr_args)that); return false; } - public boolean equals(selectKeysRecordsTimestrPage_args that) { + public boolean equals(selectKeysRecordsTimestr_args that) { if (that == null) return false; if (this == that) @@ -262752,15 +261607,6 @@ public boolean equals(selectKeysRecordsTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -262807,10 +261653,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -262827,7 +261669,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimestrPage_args other) { + public int compareTo(selectKeysRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -262864,16 +261706,6 @@ public int compareTo(selectKeysRecordsTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -262925,7 +261757,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestr_args("); boolean first = true; sb.append("keys:"); @@ -262952,14 +261784,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -262990,9 +261814,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -263017,17 +261838,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrPage_argsStandardScheme getScheme() { - return new selectKeysRecordsTimestrPage_argsStandardScheme(); + public selectKeysRecordsTimestr_argsStandardScheme getScheme() { + return new selectKeysRecordsTimestr_argsStandardScheme(); } } - private static class selectKeysRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -263040,13 +261861,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2284 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list2284.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2285; - for (int _i2286 = 0; _i2286 < _list2284.size; ++_i2286) + org.apache.thrift.protocol.TList _list2240 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list2240.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2241; + for (int _i2242 = 0; _i2242 < _list2240.size; ++_i2242) { - _elem2285 = iprot.readString(); - struct.keys.add(_elem2285); + _elem2241 = iprot.readString(); + struct.keys.add(_elem2241); } iprot.readListEnd(); } @@ -263058,13 +261879,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2287 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2287.size); - long _elem2288; - for (int _i2289 = 0; _i2289 < _list2287.size; ++_i2289) + org.apache.thrift.protocol.TList _list2243 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2243.size); + long _elem2244; + for (int _i2245 = 0; _i2245 < _list2243.size; ++_i2245) { - _elem2288 = iprot.readI64(); - struct.records.add(_elem2288); + _elem2244 = iprot.readI64(); + struct.records.add(_elem2244); } iprot.readListEnd(); } @@ -263081,16 +261902,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -263099,7 +261911,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -263108,7 +261920,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -263128,7 +261940,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -263136,9 +261948,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter2290 : struct.keys) + for (java.lang.String _iter2246 : struct.keys) { - oprot.writeString(_iter2290); + oprot.writeString(_iter2246); } oprot.writeListEnd(); } @@ -263148,9 +261960,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2291 : struct.records) + for (long _iter2247 : struct.records) { - oprot.writeI64(_iter2291); + oprot.writeI64(_iter2247); } oprot.writeListEnd(); } @@ -263161,11 +261973,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -263187,17 +261994,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrPage_argsTupleScheme getScheme() { - return new selectKeysRecordsTimestrPage_argsTupleScheme(); + public selectKeysRecordsTimestr_argsTupleScheme getScheme() { + return new selectKeysRecordsTimestr_argsTupleScheme(); } } - private static class selectKeysRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -263209,43 +262016,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter2292 : struct.keys) + for (java.lang.String _iter2248 : struct.keys) { - oprot.writeString(_iter2292); + oprot.writeString(_iter2248); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2293 : struct.records) + for (long _iter2249 : struct.records) { - oprot.writeI64(_iter2293); + oprot.writeI64(_iter2249); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -263258,31 +262059,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list2294 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list2294.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2295; - for (int _i2296 = 0; _i2296 < _list2294.size; ++_i2296) + org.apache.thrift.protocol.TList _list2250 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list2250.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2251; + for (int _i2252 = 0; _i2252 < _list2250.size; ++_i2252) { - _elem2295 = iprot.readString(); - struct.keys.add(_elem2295); + _elem2251 = iprot.readString(); + struct.keys.add(_elem2251); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2297 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2297.size); - long _elem2298; - for (int _i2299 = 0; _i2299 < _list2297.size; ++_i2299) + org.apache.thrift.protocol.TList _list2253 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2253.size); + long _elem2254; + for (int _i2255 = 0; _i2255 < _list2253.size; ++_i2255) { - _elem2298 = iprot.readI64(); - struct.records.add(_elem2298); + _elem2254 = iprot.readI64(); + struct.records.add(_elem2254); } } struct.setRecordsIsSet(true); @@ -263292,21 +262093,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTim struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -263318,8 +262114,8 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrPage_result"); + public static class selectKeysRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -263327,8 +262123,8 @@ public static class selectKeysRecordsTimestrPage_result implements org.apache.th private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -263430,13 +262226,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestr_result.class, metaDataMap); } - public selectKeysRecordsTimestrPage_result() { + public selectKeysRecordsTimestr_result() { } - public selectKeysRecordsTimestrPage_result( + public selectKeysRecordsTimestr_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -263454,7 +262250,7 @@ public selectKeysRecordsTimestrPage_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimestrPage_result(selectKeysRecordsTimestrPage_result other) { + public selectKeysRecordsTimestr_result(selectKeysRecordsTimestr_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -263499,8 +262295,8 @@ public selectKeysRecordsTimestrPage_result(selectKeysRecordsTimestrPage_result o } @Override - public selectKeysRecordsTimestrPage_result deepCopy() { - return new selectKeysRecordsTimestrPage_result(this); + public selectKeysRecordsTimestr_result deepCopy() { + return new selectKeysRecordsTimestr_result(this); } @Override @@ -263528,7 +262324,7 @@ public java.util.Map>> success) { + public selectKeysRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -263553,7 +262349,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -263578,7 +262374,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -263603,7 +262399,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -263628,7 +262424,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -263741,12 +262537,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimestrPage_result) - return this.equals((selectKeysRecordsTimestrPage_result)that); + if (that instanceof selectKeysRecordsTimestr_result) + return this.equals((selectKeysRecordsTimestr_result)that); return false; } - public boolean equals(selectKeysRecordsTimestrPage_result that) { + public boolean equals(selectKeysRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -263828,7 +262624,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimestrPage_result other) { + public int compareTo(selectKeysRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -263905,7 +262701,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestr_result("); boolean first = true; sb.append("success:"); @@ -263972,17 +262768,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrPage_resultStandardScheme getScheme() { - return new selectKeysRecordsTimestrPage_resultStandardScheme(); + public selectKeysRecordsTimestr_resultStandardScheme getScheme() { + return new selectKeysRecordsTimestr_resultStandardScheme(); } } - private static class selectKeysRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -263995,38 +262791,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2300 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2300.size); - long _key2301; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2302; - for (int _i2303 = 0; _i2303 < _map2300.size; ++_i2303) + org.apache.thrift.protocol.TMap _map2256 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2256.size); + long _key2257; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2258; + for (int _i2259 = 0; _i2259 < _map2256.size; ++_i2259) { - _key2301 = iprot.readI64(); + _key2257 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2304 = iprot.readMapBegin(); - _val2302 = new java.util.LinkedHashMap>(2*_map2304.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2305; - @org.apache.thrift.annotation.Nullable java.util.Set _val2306; - for (int _i2307 = 0; _i2307 < _map2304.size; ++_i2307) + org.apache.thrift.protocol.TMap _map2260 = iprot.readMapBegin(); + _val2258 = new java.util.LinkedHashMap>(2*_map2260.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2261; + @org.apache.thrift.annotation.Nullable java.util.Set _val2262; + for (int _i2263 = 0; _i2263 < _map2260.size; ++_i2263) { - _key2305 = iprot.readString(); + _key2261 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2308 = iprot.readSetBegin(); - _val2306 = new java.util.LinkedHashSet(2*_set2308.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2309; - for (int _i2310 = 0; _i2310 < _set2308.size; ++_i2310) + org.apache.thrift.protocol.TSet _set2264 = iprot.readSetBegin(); + _val2262 = new java.util.LinkedHashSet(2*_set2264.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2265; + for (int _i2266 = 0; _i2266 < _set2264.size; ++_i2266) { - _elem2309 = new com.cinchapi.concourse.thrift.TObject(); - _elem2309.read(iprot); - _val2306.add(_elem2309); + _elem2265 = new com.cinchapi.concourse.thrift.TObject(); + _elem2265.read(iprot); + _val2262.add(_elem2265); } iprot.readSetEnd(); } - _val2302.put(_key2305, _val2306); + _val2258.put(_key2261, _val2262); } iprot.readMapEnd(); } - struct.success.put(_key2301, _val2302); + struct.success.put(_key2257, _val2258); } iprot.readMapEnd(); } @@ -264083,7 +262879,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -264091,19 +262887,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2311 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2267 : struct.success.entrySet()) { - oprot.writeI64(_iter2311.getKey()); + oprot.writeI64(_iter2267.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2311.getValue().size())); - for (java.util.Map.Entry> _iter2312 : _iter2311.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2267.getValue().size())); + for (java.util.Map.Entry> _iter2268 : _iter2267.getValue().entrySet()) { - oprot.writeString(_iter2312.getKey()); + oprot.writeString(_iter2268.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2312.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2313 : _iter2312.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2268.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2269 : _iter2268.getValue()) { - _iter2313.write(oprot); + _iter2269.write(oprot); } oprot.writeSetEnd(); } @@ -264141,17 +262937,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrPage_resultTupleScheme getScheme() { - return new selectKeysRecordsTimestrPage_resultTupleScheme(); + public selectKeysRecordsTimestr_resultTupleScheme getScheme() { + return new selectKeysRecordsTimestr_resultTupleScheme(); } } - private static class selectKeysRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -264173,19 +262969,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2314 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2270 : struct.success.entrySet()) { - oprot.writeI64(_iter2314.getKey()); + oprot.writeI64(_iter2270.getKey()); { - oprot.writeI32(_iter2314.getValue().size()); - for (java.util.Map.Entry> _iter2315 : _iter2314.getValue().entrySet()) + oprot.writeI32(_iter2270.getValue().size()); + for (java.util.Map.Entry> _iter2271 : _iter2270.getValue().entrySet()) { - oprot.writeString(_iter2315.getKey()); + oprot.writeString(_iter2271.getKey()); { - oprot.writeI32(_iter2315.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2316 : _iter2315.getValue()) + oprot.writeI32(_iter2271.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2272 : _iter2271.getValue()) { - _iter2316.write(oprot); + _iter2272.write(oprot); } } } @@ -264208,41 +263004,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2317 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2317.size); - long _key2318; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2319; - for (int _i2320 = 0; _i2320 < _map2317.size; ++_i2320) + org.apache.thrift.protocol.TMap _map2273 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2273.size); + long _key2274; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2275; + for (int _i2276 = 0; _i2276 < _map2273.size; ++_i2276) { - _key2318 = iprot.readI64(); + _key2274 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2321 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2319 = new java.util.LinkedHashMap>(2*_map2321.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2322; - @org.apache.thrift.annotation.Nullable java.util.Set _val2323; - for (int _i2324 = 0; _i2324 < _map2321.size; ++_i2324) + org.apache.thrift.protocol.TMap _map2277 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2275 = new java.util.LinkedHashMap>(2*_map2277.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2278; + @org.apache.thrift.annotation.Nullable java.util.Set _val2279; + for (int _i2280 = 0; _i2280 < _map2277.size; ++_i2280) { - _key2322 = iprot.readString(); + _key2278 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2325 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2323 = new java.util.LinkedHashSet(2*_set2325.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2326; - for (int _i2327 = 0; _i2327 < _set2325.size; ++_i2327) + org.apache.thrift.protocol.TSet _set2281 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2279 = new java.util.LinkedHashSet(2*_set2281.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2282; + for (int _i2283 = 0; _i2283 < _set2281.size; ++_i2283) { - _elem2326 = new com.cinchapi.concourse.thrift.TObject(); - _elem2326.read(iprot); - _val2323.add(_elem2326); + _elem2282 = new com.cinchapi.concourse.thrift.TObject(); + _elem2282.read(iprot); + _val2279.add(_elem2282); } } - _val2319.put(_key2322, _val2323); + _val2275.put(_key2278, _val2279); } } - struct.success.put(_key2318, _val2319); + struct.success.put(_key2274, _val2275); } } struct.setSuccessIsSet(true); @@ -264275,24 +263071,24 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrOrder_args"); + public static class selectKeysRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -264302,7 +263098,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -264327,8 +263123,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -264389,8 +263185,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -264398,17 +263194,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrPage_args.class, metaDataMap); } - public selectKeysRecordsTimestrOrder_args() { + public selectKeysRecordsTimestrPage_args() { } - public selectKeysRecordsTimestrOrder_args( + public selectKeysRecordsTimestrPage_args( java.util.List keys, java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -264417,7 +263213,7 @@ public selectKeysRecordsTimestrOrder_args( this.keys = keys; this.records = records; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -264426,7 +263222,7 @@ public selectKeysRecordsTimestrOrder_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimestrOrder_args(selectKeysRecordsTimestrOrder_args other) { + public selectKeysRecordsTimestrPage_args(selectKeysRecordsTimestrPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -264438,8 +263234,8 @@ public selectKeysRecordsTimestrOrder_args(selectKeysRecordsTimestrOrder_args oth if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -264453,8 +263249,8 @@ public selectKeysRecordsTimestrOrder_args(selectKeysRecordsTimestrOrder_args oth } @Override - public selectKeysRecordsTimestrOrder_args deepCopy() { - return new selectKeysRecordsTimestrOrder_args(this); + public selectKeysRecordsTimestrPage_args deepCopy() { + return new selectKeysRecordsTimestrPage_args(this); } @Override @@ -264462,7 +263258,7 @@ public void clear() { this.keys = null; this.records = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -264489,7 +263285,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -264530,7 +263326,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -264555,7 +263351,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -264576,27 +263372,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeysRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeysRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -264605,7 +263401,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -264630,7 +263426,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -264655,7 +263451,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -264702,11 +263498,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -264750,8 +263546,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -264780,8 +263576,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -264794,12 +263590,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimestrOrder_args) - return this.equals((selectKeysRecordsTimestrOrder_args)that); + if (that instanceof selectKeysRecordsTimestrPage_args) + return this.equals((selectKeysRecordsTimestrPage_args)that); return false; } - public boolean equals(selectKeysRecordsTimestrOrder_args that) { + public boolean equals(selectKeysRecordsTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -264832,12 +263628,12 @@ public boolean equals(selectKeysRecordsTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -264887,9 +263683,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -264907,7 +263703,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimestrOrder_args other) { + public int compareTo(selectKeysRecordsTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -264944,12 +263740,12 @@ public int compareTo(selectKeysRecordsTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -265005,7 +263801,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrPage_args("); boolean first = true; sb.append("keys:"); @@ -265032,11 +263828,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -265070,8 +263866,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -265097,17 +263893,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrOrder_argsStandardScheme getScheme() { - return new selectKeysRecordsTimestrOrder_argsStandardScheme(); + public selectKeysRecordsTimestrPage_argsStandardScheme getScheme() { + return new selectKeysRecordsTimestrPage_argsStandardScheme(); } } - private static class selectKeysRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -265120,13 +263916,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2328 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list2328.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2329; - for (int _i2330 = 0; _i2330 < _list2328.size; ++_i2330) + org.apache.thrift.protocol.TList _list2284 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list2284.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2285; + for (int _i2286 = 0; _i2286 < _list2284.size; ++_i2286) { - _elem2329 = iprot.readString(); - struct.keys.add(_elem2329); + _elem2285 = iprot.readString(); + struct.keys.add(_elem2285); } iprot.readListEnd(); } @@ -265138,13 +263934,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2331 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2331.size); - long _elem2332; - for (int _i2333 = 0; _i2333 < _list2331.size; ++_i2333) + org.apache.thrift.protocol.TList _list2287 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2287.size); + long _elem2288; + for (int _i2289 = 0; _i2289 < _list2287.size; ++_i2289) { - _elem2332 = iprot.readI64(); - struct.records.add(_elem2332); + _elem2288 = iprot.readI64(); + struct.records.add(_elem2288); } iprot.readListEnd(); } @@ -265161,11 +263957,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -265208,7 +264004,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -265216,9 +264012,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter2334 : struct.keys) + for (java.lang.String _iter2290 : struct.keys) { - oprot.writeString(_iter2334); + oprot.writeString(_iter2290); } oprot.writeListEnd(); } @@ -265228,9 +264024,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2335 : struct.records) + for (long _iter2291 : struct.records) { - oprot.writeI64(_iter2335); + oprot.writeI64(_iter2291); } oprot.writeListEnd(); } @@ -265241,9 +264037,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -265267,17 +264063,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrOrder_argsTupleScheme getScheme() { - return new selectKeysRecordsTimestrOrder_argsTupleScheme(); + public selectKeysRecordsTimestrPage_argsTupleScheme getScheme() { + return new selectKeysRecordsTimestrPage_argsTupleScheme(); } } - private static class selectKeysRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -265289,7 +264085,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -265305,26 +264101,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter2336 : struct.keys) + for (java.lang.String _iter2292 : struct.keys) { - oprot.writeString(_iter2336); + oprot.writeString(_iter2292); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2337 : struct.records) + for (long _iter2293 : struct.records) { - oprot.writeI64(_iter2337); + oprot.writeI64(_iter2293); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -265338,31 +264134,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list2338 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list2338.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2339; - for (int _i2340 = 0; _i2340 < _list2338.size; ++_i2340) + org.apache.thrift.protocol.TList _list2294 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list2294.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2295; + for (int _i2296 = 0; _i2296 < _list2294.size; ++_i2296) { - _elem2339 = iprot.readString(); - struct.keys.add(_elem2339); + _elem2295 = iprot.readString(); + struct.keys.add(_elem2295); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2341 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2341.size); - long _elem2342; - for (int _i2343 = 0; _i2343 < _list2341.size; ++_i2343) + org.apache.thrift.protocol.TList _list2297 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2297.size); + long _elem2298; + for (int _i2299 = 0; _i2299 < _list2297.size; ++_i2299) { - _elem2342 = iprot.readI64(); - struct.records.add(_elem2342); + _elem2298 = iprot.readI64(); + struct.records.add(_elem2298); } } struct.setRecordsIsSet(true); @@ -265372,9 +264168,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTim struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -265398,8 +264194,8 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrOrder_result"); + public static class selectKeysRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -265407,8 +264203,8 @@ public static class selectKeysRecordsTimestrOrder_result implements org.apache.t private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -265510,13 +264306,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrPage_result.class, metaDataMap); } - public selectKeysRecordsTimestrOrder_result() { + public selectKeysRecordsTimestrPage_result() { } - public selectKeysRecordsTimestrOrder_result( + public selectKeysRecordsTimestrPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -265534,7 +264330,7 @@ public selectKeysRecordsTimestrOrder_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimestrOrder_result(selectKeysRecordsTimestrOrder_result other) { + public selectKeysRecordsTimestrPage_result(selectKeysRecordsTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -265579,8 +264375,8 @@ public selectKeysRecordsTimestrOrder_result(selectKeysRecordsTimestrOrder_result } @Override - public selectKeysRecordsTimestrOrder_result deepCopy() { - return new selectKeysRecordsTimestrOrder_result(this); + public selectKeysRecordsTimestrPage_result deepCopy() { + return new selectKeysRecordsTimestrPage_result(this); } @Override @@ -265608,7 +264404,7 @@ public java.util.Map>> success) { + public selectKeysRecordsTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -265633,7 +264429,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -265658,7 +264454,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -265683,7 +264479,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -265708,7 +264504,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -265821,12 +264617,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimestrOrder_result) - return this.equals((selectKeysRecordsTimestrOrder_result)that); + if (that instanceof selectKeysRecordsTimestrPage_result) + return this.equals((selectKeysRecordsTimestrPage_result)that); return false; } - public boolean equals(selectKeysRecordsTimestrOrder_result that) { + public boolean equals(selectKeysRecordsTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -265908,7 +264704,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimestrOrder_result other) { + public int compareTo(selectKeysRecordsTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -265985,7 +264781,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -266052,17 +264848,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrOrder_resultStandardScheme getScheme() { - return new selectKeysRecordsTimestrOrder_resultStandardScheme(); + public selectKeysRecordsTimestrPage_resultStandardScheme getScheme() { + return new selectKeysRecordsTimestrPage_resultStandardScheme(); } } - private static class selectKeysRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -266075,38 +264871,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2344 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2344.size); - long _key2345; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2346; - for (int _i2347 = 0; _i2347 < _map2344.size; ++_i2347) + org.apache.thrift.protocol.TMap _map2300 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2300.size); + long _key2301; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2302; + for (int _i2303 = 0; _i2303 < _map2300.size; ++_i2303) { - _key2345 = iprot.readI64(); + _key2301 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2348 = iprot.readMapBegin(); - _val2346 = new java.util.LinkedHashMap>(2*_map2348.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2349; - @org.apache.thrift.annotation.Nullable java.util.Set _val2350; - for (int _i2351 = 0; _i2351 < _map2348.size; ++_i2351) + org.apache.thrift.protocol.TMap _map2304 = iprot.readMapBegin(); + _val2302 = new java.util.LinkedHashMap>(2*_map2304.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2305; + @org.apache.thrift.annotation.Nullable java.util.Set _val2306; + for (int _i2307 = 0; _i2307 < _map2304.size; ++_i2307) { - _key2349 = iprot.readString(); + _key2305 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2352 = iprot.readSetBegin(); - _val2350 = new java.util.LinkedHashSet(2*_set2352.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2353; - for (int _i2354 = 0; _i2354 < _set2352.size; ++_i2354) + org.apache.thrift.protocol.TSet _set2308 = iprot.readSetBegin(); + _val2306 = new java.util.LinkedHashSet(2*_set2308.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2309; + for (int _i2310 = 0; _i2310 < _set2308.size; ++_i2310) { - _elem2353 = new com.cinchapi.concourse.thrift.TObject(); - _elem2353.read(iprot); - _val2350.add(_elem2353); + _elem2309 = new com.cinchapi.concourse.thrift.TObject(); + _elem2309.read(iprot); + _val2306.add(_elem2309); } iprot.readSetEnd(); } - _val2346.put(_key2349, _val2350); + _val2302.put(_key2305, _val2306); } iprot.readMapEnd(); } - struct.success.put(_key2345, _val2346); + struct.success.put(_key2301, _val2302); } iprot.readMapEnd(); } @@ -266163,7 +264959,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -266171,19 +264967,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2355 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2311 : struct.success.entrySet()) { - oprot.writeI64(_iter2355.getKey()); + oprot.writeI64(_iter2311.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2355.getValue().size())); - for (java.util.Map.Entry> _iter2356 : _iter2355.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2311.getValue().size())); + for (java.util.Map.Entry> _iter2312 : _iter2311.getValue().entrySet()) { - oprot.writeString(_iter2356.getKey()); + oprot.writeString(_iter2312.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2356.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2357 : _iter2356.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2312.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2313 : _iter2312.getValue()) { - _iter2357.write(oprot); + _iter2313.write(oprot); } oprot.writeSetEnd(); } @@ -266221,17 +265017,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrOrder_resultTupleScheme getScheme() { - return new selectKeysRecordsTimestrOrder_resultTupleScheme(); + public selectKeysRecordsTimestrPage_resultTupleScheme getScheme() { + return new selectKeysRecordsTimestrPage_resultTupleScheme(); } } - private static class selectKeysRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -266253,19 +265049,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2358 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2314 : struct.success.entrySet()) { - oprot.writeI64(_iter2358.getKey()); + oprot.writeI64(_iter2314.getKey()); { - oprot.writeI32(_iter2358.getValue().size()); - for (java.util.Map.Entry> _iter2359 : _iter2358.getValue().entrySet()) + oprot.writeI32(_iter2314.getValue().size()); + for (java.util.Map.Entry> _iter2315 : _iter2314.getValue().entrySet()) { - oprot.writeString(_iter2359.getKey()); + oprot.writeString(_iter2315.getKey()); { - oprot.writeI32(_iter2359.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2360 : _iter2359.getValue()) + oprot.writeI32(_iter2315.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2316 : _iter2315.getValue()) { - _iter2360.write(oprot); + _iter2316.write(oprot); } } } @@ -266288,41 +265084,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2361 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2361.size); - long _key2362; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2363; - for (int _i2364 = 0; _i2364 < _map2361.size; ++_i2364) + org.apache.thrift.protocol.TMap _map2317 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2317.size); + long _key2318; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2319; + for (int _i2320 = 0; _i2320 < _map2317.size; ++_i2320) { - _key2362 = iprot.readI64(); + _key2318 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2365 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2363 = new java.util.LinkedHashMap>(2*_map2365.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2366; - @org.apache.thrift.annotation.Nullable java.util.Set _val2367; - for (int _i2368 = 0; _i2368 < _map2365.size; ++_i2368) + org.apache.thrift.protocol.TMap _map2321 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2319 = new java.util.LinkedHashMap>(2*_map2321.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2322; + @org.apache.thrift.annotation.Nullable java.util.Set _val2323; + for (int _i2324 = 0; _i2324 < _map2321.size; ++_i2324) { - _key2366 = iprot.readString(); + _key2322 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2369 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2367 = new java.util.LinkedHashSet(2*_set2369.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2370; - for (int _i2371 = 0; _i2371 < _set2369.size; ++_i2371) + org.apache.thrift.protocol.TSet _set2325 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2323 = new java.util.LinkedHashSet(2*_set2325.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2326; + for (int _i2327 = 0; _i2327 < _set2325.size; ++_i2327) { - _elem2370 = new com.cinchapi.concourse.thrift.TObject(); - _elem2370.read(iprot); - _val2367.add(_elem2370); + _elem2326 = new com.cinchapi.concourse.thrift.TObject(); + _elem2326.read(iprot); + _val2323.add(_elem2326); } } - _val2363.put(_key2366, _val2367); + _val2319.put(_key2322, _val2323); } } - struct.success.put(_key2362, _val2363); + struct.success.put(_key2318, _val2319); } } struct.setSuccessIsSet(true); @@ -266355,26 +265151,24 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrOrderPage_args"); + public static class selectKeysRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -266385,10 +265179,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -266412,13 +265205,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -266476,8 +265267,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -266485,18 +265274,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrOrder_args.class, metaDataMap); } - public selectKeysRecordsTimestrOrderPage_args() { + public selectKeysRecordsTimestrOrder_args() { } - public selectKeysRecordsTimestrOrderPage_args( + public selectKeysRecordsTimestrOrder_args( java.util.List keys, java.util.List records, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -266506,7 +265294,6 @@ public selectKeysRecordsTimestrOrderPage_args( this.records = records; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -266515,7 +265302,7 @@ public selectKeysRecordsTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimestrOrderPage_args(selectKeysRecordsTimestrOrderPage_args other) { + public selectKeysRecordsTimestrOrder_args(selectKeysRecordsTimestrOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -266530,9 +265317,6 @@ public selectKeysRecordsTimestrOrderPage_args(selectKeysRecordsTimestrOrderPage_ if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -266545,8 +265329,8 @@ public selectKeysRecordsTimestrOrderPage_args(selectKeysRecordsTimestrOrderPage_ } @Override - public selectKeysRecordsTimestrOrderPage_args deepCopy() { - return new selectKeysRecordsTimestrOrderPage_args(this); + public selectKeysRecordsTimestrOrder_args deepCopy() { + return new selectKeysRecordsTimestrOrder_args(this); } @Override @@ -266555,7 +265339,6 @@ public void clear() { this.records = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -266582,7 +265365,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysRecordsTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysRecordsTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -266623,7 +265406,7 @@ public java.util.List getRecords() { return this.records; } - public selectKeysRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public selectKeysRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -266648,7 +265431,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -266673,7 +265456,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeysRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeysRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -266693,37 +265476,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -266748,7 +265506,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -266773,7 +265531,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -266828,14 +265586,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -266879,9 +265629,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -266911,8 +265658,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -266925,12 +265670,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimestrOrderPage_args) - return this.equals((selectKeysRecordsTimestrOrderPage_args)that); + if (that instanceof selectKeysRecordsTimestrOrder_args) + return this.equals((selectKeysRecordsTimestrOrder_args)that); return false; } - public boolean equals(selectKeysRecordsTimestrOrderPage_args that) { + public boolean equals(selectKeysRecordsTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -266972,15 +265717,6 @@ public boolean equals(selectKeysRecordsTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -267031,10 +265767,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -267051,7 +265783,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimestrOrderPage_args other) { + public int compareTo(selectKeysRecordsTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -267098,16 +265830,6 @@ public int compareTo(selectKeysRecordsTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -267159,7 +265881,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrOrder_args("); boolean first = true; sb.append("keys:"); @@ -267194,14 +265916,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -267235,9 +265949,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -267262,17 +265973,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrOrderPage_argsStandardScheme getScheme() { - return new selectKeysRecordsTimestrOrderPage_argsStandardScheme(); + public selectKeysRecordsTimestrOrder_argsStandardScheme getScheme() { + return new selectKeysRecordsTimestrOrder_argsStandardScheme(); } } - private static class selectKeysRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -267285,13 +265996,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2372 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list2372.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2373; - for (int _i2374 = 0; _i2374 < _list2372.size; ++_i2374) + org.apache.thrift.protocol.TList _list2328 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list2328.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2329; + for (int _i2330 = 0; _i2330 < _list2328.size; ++_i2330) { - _elem2373 = iprot.readString(); - struct.keys.add(_elem2373); + _elem2329 = iprot.readString(); + struct.keys.add(_elem2329); } iprot.readListEnd(); } @@ -267303,13 +266014,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list2375 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list2375.size); - long _elem2376; - for (int _i2377 = 0; _i2377 < _list2375.size; ++_i2377) + org.apache.thrift.protocol.TList _list2331 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2331.size); + long _elem2332; + for (int _i2333 = 0; _i2333 < _list2331.size; ++_i2333) { - _elem2376 = iprot.readI64(); - struct.records.add(_elem2376); + _elem2332 = iprot.readI64(); + struct.records.add(_elem2332); } iprot.readListEnd(); } @@ -267335,16 +266046,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -267353,7 +266055,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -267362,7 +266064,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -267382,7 +266084,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -267390,9 +266092,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter2378 : struct.keys) + for (java.lang.String _iter2334 : struct.keys) { - oprot.writeString(_iter2378); + oprot.writeString(_iter2334); } oprot.writeListEnd(); } @@ -267402,9 +266104,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter2379 : struct.records) + for (long _iter2335 : struct.records) { - oprot.writeI64(_iter2379); + oprot.writeI64(_iter2335); } oprot.writeListEnd(); } @@ -267420,11 +266122,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -267446,17 +266143,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrOrderPage_argsTupleScheme getScheme() { - return new selectKeysRecordsTimestrOrderPage_argsTupleScheme(); + public selectKeysRecordsTimestrOrder_argsTupleScheme getScheme() { + return new selectKeysRecordsTimestrOrder_argsTupleScheme(); } } - private static class selectKeysRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -267471,34 +266168,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter2380 : struct.keys) + for (java.lang.String _iter2336 : struct.keys) { - oprot.writeString(_iter2380); + oprot.writeString(_iter2336); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter2381 : struct.records) + for (long _iter2337 : struct.records) { - oprot.writeI64(_iter2381); + oprot.writeI64(_iter2337); } } } @@ -267508,9 +266202,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -267523,31 +266214,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list2382 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list2382.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem2383; - for (int _i2384 = 0; _i2384 < _list2382.size; ++_i2384) + org.apache.thrift.protocol.TList _list2338 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list2338.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2339; + for (int _i2340 = 0; _i2340 < _list2338.size; ++_i2340) { - _elem2383 = iprot.readString(); - struct.keys.add(_elem2383); + _elem2339 = iprot.readString(); + struct.keys.add(_elem2339); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list2385 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list2385.size); - long _elem2386; - for (int _i2387 = 0; _i2387 < _list2385.size; ++_i2387) + org.apache.thrift.protocol.TList _list2341 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2341.size); + long _elem2342; + for (int _i2343 = 0; _i2343 < _list2341.size; ++_i2343) { - _elem2386 = iprot.readI64(); - struct.records.add(_elem2386); + _elem2342 = iprot.readI64(); + struct.records.add(_elem2342); } } struct.setRecordsIsSet(true); @@ -267562,21 +266253,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTim struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -267588,8 +266274,8 @@ private static S scheme(org.apache. } } - public static class selectKeysRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrOrderPage_result"); + public static class selectKeysRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -267597,8 +266283,8 @@ public static class selectKeysRecordsTimestrOrderPage_result implements org.apac private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -267700,13 +266386,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrOrder_result.class, metaDataMap); } - public selectKeysRecordsTimestrOrderPage_result() { + public selectKeysRecordsTimestrOrder_result() { } - public selectKeysRecordsTimestrOrderPage_result( + public selectKeysRecordsTimestrOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -267724,7 +266410,7 @@ public selectKeysRecordsTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeysRecordsTimestrOrderPage_result(selectKeysRecordsTimestrOrderPage_result other) { + public selectKeysRecordsTimestrOrder_result(selectKeysRecordsTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -267769,8 +266455,8 @@ public selectKeysRecordsTimestrOrderPage_result(selectKeysRecordsTimestrOrderPag } @Override - public selectKeysRecordsTimestrOrderPage_result deepCopy() { - return new selectKeysRecordsTimestrOrderPage_result(this); + public selectKeysRecordsTimestrOrder_result deepCopy() { + return new selectKeysRecordsTimestrOrder_result(this); } @Override @@ -267798,7 +266484,7 @@ public java.util.Map>> success) { + public selectKeysRecordsTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -267823,7 +266509,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -267848,7 +266534,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -267873,7 +266559,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -267898,7 +266584,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -268011,12 +266697,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysRecordsTimestrOrderPage_result) - return this.equals((selectKeysRecordsTimestrOrderPage_result)that); + if (that instanceof selectKeysRecordsTimestrOrder_result) + return this.equals((selectKeysRecordsTimestrOrder_result)that); return false; } - public boolean equals(selectKeysRecordsTimestrOrderPage_result that) { + public boolean equals(selectKeysRecordsTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -268098,7 +266784,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysRecordsTimestrOrderPage_result other) { + public int compareTo(selectKeysRecordsTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -268175,7 +266861,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -268242,17 +266928,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrOrderPage_resultStandardScheme getScheme() { - return new selectKeysRecordsTimestrOrderPage_resultStandardScheme(); + public selectKeysRecordsTimestrOrder_resultStandardScheme getScheme() { + return new selectKeysRecordsTimestrOrder_resultStandardScheme(); } } - private static class selectKeysRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -268265,38 +266951,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2388 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2388.size); - long _key2389; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2390; - for (int _i2391 = 0; _i2391 < _map2388.size; ++_i2391) + org.apache.thrift.protocol.TMap _map2344 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2344.size); + long _key2345; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2346; + for (int _i2347 = 0; _i2347 < _map2344.size; ++_i2347) { - _key2389 = iprot.readI64(); + _key2345 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2392 = iprot.readMapBegin(); - _val2390 = new java.util.LinkedHashMap>(2*_map2392.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2393; - @org.apache.thrift.annotation.Nullable java.util.Set _val2394; - for (int _i2395 = 0; _i2395 < _map2392.size; ++_i2395) + org.apache.thrift.protocol.TMap _map2348 = iprot.readMapBegin(); + _val2346 = new java.util.LinkedHashMap>(2*_map2348.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2349; + @org.apache.thrift.annotation.Nullable java.util.Set _val2350; + for (int _i2351 = 0; _i2351 < _map2348.size; ++_i2351) { - _key2393 = iprot.readString(); + _key2349 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2396 = iprot.readSetBegin(); - _val2394 = new java.util.LinkedHashSet(2*_set2396.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2397; - for (int _i2398 = 0; _i2398 < _set2396.size; ++_i2398) + org.apache.thrift.protocol.TSet _set2352 = iprot.readSetBegin(); + _val2350 = new java.util.LinkedHashSet(2*_set2352.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2353; + for (int _i2354 = 0; _i2354 < _set2352.size; ++_i2354) { - _elem2397 = new com.cinchapi.concourse.thrift.TObject(); - _elem2397.read(iprot); - _val2394.add(_elem2397); + _elem2353 = new com.cinchapi.concourse.thrift.TObject(); + _elem2353.read(iprot); + _val2350.add(_elem2353); } iprot.readSetEnd(); } - _val2390.put(_key2393, _val2394); + _val2346.put(_key2349, _val2350); } iprot.readMapEnd(); } - struct.success.put(_key2389, _val2390); + struct.success.put(_key2345, _val2346); } iprot.readMapEnd(); } @@ -268353,7 +267039,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -268361,19 +267047,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2399 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2355 : struct.success.entrySet()) { - oprot.writeI64(_iter2399.getKey()); + oprot.writeI64(_iter2355.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2399.getValue().size())); - for (java.util.Map.Entry> _iter2400 : _iter2399.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2355.getValue().size())); + for (java.util.Map.Entry> _iter2356 : _iter2355.getValue().entrySet()) { - oprot.writeString(_iter2400.getKey()); + oprot.writeString(_iter2356.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2400.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2401 : _iter2400.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2356.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2357 : _iter2356.getValue()) { - _iter2401.write(oprot); + _iter2357.write(oprot); } oprot.writeSetEnd(); } @@ -268411,17 +267097,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsT } - private static class selectKeysRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysRecordsTimestrOrderPage_resultTupleScheme getScheme() { - return new selectKeysRecordsTimestrOrderPage_resultTupleScheme(); + public selectKeysRecordsTimestrOrder_resultTupleScheme getScheme() { + return new selectKeysRecordsTimestrOrder_resultTupleScheme(); } } - private static class selectKeysRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -268443,19 +267129,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2402 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2358 : struct.success.entrySet()) { - oprot.writeI64(_iter2402.getKey()); + oprot.writeI64(_iter2358.getKey()); { - oprot.writeI32(_iter2402.getValue().size()); - for (java.util.Map.Entry> _iter2403 : _iter2402.getValue().entrySet()) + oprot.writeI32(_iter2358.getValue().size()); + for (java.util.Map.Entry> _iter2359 : _iter2358.getValue().entrySet()) { - oprot.writeString(_iter2403.getKey()); + oprot.writeString(_iter2359.getKey()); { - oprot.writeI32(_iter2403.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2404 : _iter2403.getValue()) + oprot.writeI32(_iter2359.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2360 : _iter2359.getValue()) { - _iter2404.write(oprot); + _iter2360.write(oprot); } } } @@ -268478,41 +267164,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2405 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2405.size); - long _key2406; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2407; - for (int _i2408 = 0; _i2408 < _map2405.size; ++_i2408) + org.apache.thrift.protocol.TMap _map2361 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2361.size); + long _key2362; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2363; + for (int _i2364 = 0; _i2364 < _map2361.size; ++_i2364) { - _key2406 = iprot.readI64(); + _key2362 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2409 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2407 = new java.util.LinkedHashMap>(2*_map2409.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2410; - @org.apache.thrift.annotation.Nullable java.util.Set _val2411; - for (int _i2412 = 0; _i2412 < _map2409.size; ++_i2412) + org.apache.thrift.protocol.TMap _map2365 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2363 = new java.util.LinkedHashMap>(2*_map2365.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2366; + @org.apache.thrift.annotation.Nullable java.util.Set _val2367; + for (int _i2368 = 0; _i2368 < _map2365.size; ++_i2368) { - _key2410 = iprot.readString(); + _key2366 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2413 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2411 = new java.util.LinkedHashSet(2*_set2413.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2414; - for (int _i2415 = 0; _i2415 < _set2413.size; ++_i2415) + org.apache.thrift.protocol.TSet _set2369 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2367 = new java.util.LinkedHashSet(2*_set2369.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2370; + for (int _i2371 = 0; _i2371 < _set2369.size; ++_i2371) { - _elem2414 = new com.cinchapi.concourse.thrift.TObject(); - _elem2414.read(iprot); - _val2411.add(_elem2414); + _elem2370 = new com.cinchapi.concourse.thrift.TObject(); + _elem2370.read(iprot); + _val2367.add(_elem2370); } } - _val2407.put(_key2410, _val2411); + _val2363.put(_key2366, _val2367); } } - struct.success.put(_key2406, _val2407); + struct.success.put(_key2362, _val2363); } } struct.setSuccessIsSet(true); @@ -268545,28 +267231,40 @@ private static S scheme(org.apache. } } - public static class selectCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteria_args"); + public static class selectKeysRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteria_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteria_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CRITERIA((short)1, "criteria"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + KEYS((short)1, "keys"), + RECORDS((short)2, "records"), + TIMESTAMP((short)3, "timestamp"), + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -268582,13 +267280,21 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CRITERIA - return CRITERIA; - case 2: // CREDS + case 1: // KEYS + return KEYS; + case 2: // RECORDS + return RECORDS; + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 3: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -268636,8 +267342,18 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -268645,20 +267361,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteria_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrOrderPage_args.class, metaDataMap); } - public selectCriteria_args() { + public selectKeysRecordsTimestrOrderPage_args() { } - public selectCriteria_args( - com.cinchapi.concourse.thrift.TCriteria criteria, + public selectKeysRecordsTimestrOrderPage_args( + java.util.List keys, + java.util.List records, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.criteria = criteria; + this.keys = keys; + this.records = records; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -268667,9 +267391,23 @@ public selectCriteria_args( /** * Performs a deep copy on other. */ - public selectCriteria_args(selectCriteria_args other) { - if (other.isSetCriteria()) { - this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + public selectKeysRecordsTimestrOrderPage_args(selectKeysRecordsTimestrOrderPage_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; + } + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -268683,40 +267421,176 @@ public selectCriteria_args(selectCriteria_args other) { } @Override - public selectCriteria_args deepCopy() { - return new selectCriteria_args(this); + public selectKeysRecordsTimestrOrderPage_args deepCopy() { + return new selectKeysRecordsTimestrOrderPage_args(this); } @Override public void clear() { - this.criteria = null; + this.keys = null; + this.records = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TCriteria getCriteria() { - return this.criteria; + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public selectCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { - this.criteria = criteria; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public selectKeysRecordsTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; return this; } - public void unsetCriteria() { - this.criteria = null; + public void unsetKeys() { + this.keys = null; } - /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ - public boolean isSetCriteria() { - return this.criteria != null; + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void setCriteriaIsSet(boolean value) { + public void setKeysIsSet(boolean value) { if (!value) { - this.criteria = null; + this.keys = null; + } + } + + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public selectKeysRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; + return this; + } + + public void unsetRecords() { + this.records = null; + } + + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; + } + + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public selectKeysRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeysRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -268725,7 +267599,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -268750,7 +267624,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -268775,7 +267649,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -268798,11 +267672,43 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CRITERIA: + case KEYS: if (value == null) { - unsetCriteria(); + unsetKeys(); } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + setKeys((java.util.List)value); + } + break; + + case RECORDS: + if (value == null) { + unsetRecords(); + } else { + setRecords((java.util.List)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -268837,8 +267743,20 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CRITERIA: - return getCriteria(); + case KEYS: + return getKeys(); + + case RECORDS: + return getRecords(); + + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -268861,8 +267779,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case CRITERIA: - return isSetCriteria(); + case KEYS: + return isSetKeys(); + case RECORDS: + return isSetRecords(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -268875,23 +267801,59 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCriteria_args) - return this.equals((selectCriteria_args)that); + if (that instanceof selectKeysRecordsTimestrOrderPage_args) + return this.equals((selectKeysRecordsTimestrOrderPage_args)that); return false; } - public boolean equals(selectCriteria_args that) { + public boolean equals(selectKeysRecordsTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.criteria.equals(that.criteria)) + if (!this.keys.equals(that.keys)) + return false; + } + + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) + return false; + if (!this.records.equals(that.records)) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -268929,9 +267891,25 @@ public boolean equals(selectCriteria_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); + + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -268949,19 +267927,59 @@ public int hashCode() { } @Override - public int compareTo(selectCriteria_args other) { + public int compareTo(selectKeysRecordsTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -269017,14 +268035,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteria_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrOrderPage_args("); boolean first = true; - sb.append("criteria:"); - if (this.criteria == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.criteria); + sb.append(this.keys); + } + first = false; + if (!first) sb.append(", "); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -269058,8 +268108,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -269085,17 +268138,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteria_argsStandardScheme getScheme() { - return new selectCriteria_argsStandardScheme(); + public selectKeysRecordsTimestrOrderPage_argsStandardScheme getScheme() { + return new selectKeysRecordsTimestrOrderPage_argsStandardScheme(); } } - private static class selectCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -269105,16 +268158,69 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_args break; } switch (schemeField.id) { - case 1: // CRITERIA + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list2372 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list2372.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2373; + for (int _i2374 = 0; _i2374 < _list2372.size; ++_i2374) + { + _elem2373 = iprot.readString(); + struct.keys.add(_elem2373); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list2375 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list2375.size); + long _elem2376; + for (int _i2377 = 0; _i2377 < _list2375.size; ++_i2377) + { + _elem2376 = iprot.readI64(); + struct.records.add(_elem2376); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // ORDER if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -269123,7 +268229,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -269132,7 +268238,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -269152,13 +268258,47 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter2378 : struct.keys) + { + oprot.writeString(_iter2378); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter2379 : struct.records) + { + oprot.writeI64(_iter2379); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -269182,34 +268322,70 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteria_arg } - private static class selectCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteria_argsTupleScheme getScheme() { - return new selectCriteria_argsTupleScheme(); + public selectKeysRecordsTimestrOrderPage_argsTupleScheme getScheme() { + return new selectKeysRecordsTimestrOrderPage_argsTupleScheme(); } } - private static class selectCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCriteria()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetOrder()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); + if (struct.isSetPage()) { + optionals.set(4); + } + if (struct.isSetCreds()) { + optionals.set(5); + } + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter2380 : struct.keys) + { + oprot.writeString(_iter2380); + } + } + } + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter2381 : struct.records) + { + oprot.writeI64(_iter2381); + } + } + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -269223,25 +268399,60 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteria_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + { + org.apache.thrift.protocol.TList _list2382 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list2382.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem2383; + for (int _i2384 = 0; _i2384 < _list2382.size; ++_i2384) + { + _elem2383 = iprot.readString(); + struct.keys.add(_elem2383); + } + } + struct.setKeysIsSet(true); } if (incoming.get(1)) { + { + org.apache.thrift.protocol.TList _list2385 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list2385.size); + long _elem2386; + for (int _i2387 = 0; _i2387 < _list2385.size; ++_i2387) + { + _elem2386 = iprot.readI64(); + struct.records.add(_elem2386); + } + } + struct.setRecordsIsSet(true); + } + if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -269253,28 +268464,31 @@ private static S scheme(org.apache. } } - public static class selectCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteria_result"); + public static class selectKeysRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysRecordsTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteria_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteria_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysRecordsTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysRecordsTimestrOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -269298,6 +268512,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -269356,31 +268572,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteria_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysRecordsTimestrOrderPage_result.class, metaDataMap); } - public selectCriteria_result() { + public selectKeysRecordsTimestrOrderPage_result() { } - public selectCriteria_result( + public selectKeysRecordsTimestrOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectCriteria_result(selectCriteria_result other) { + public selectKeysRecordsTimestrOrderPage_result(selectKeysRecordsTimestrOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -269417,13 +268637,16 @@ public selectCriteria_result(selectCriteria_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public selectCriteria_result deepCopy() { - return new selectCriteria_result(this); + public selectKeysRecordsTimestrOrderPage_result deepCopy() { + return new selectKeysRecordsTimestrOrderPage_result(this); } @Override @@ -269432,6 +268655,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -269450,7 +268674,7 @@ public java.util.Map>> success) { + public selectKeysRecordsTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -269475,7 +268699,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -269500,7 +268724,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -269521,11 +268745,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -269545,6 +268769,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public selectKeysRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -269576,7 +268825,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -269599,6 +268856,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -269619,18 +268879,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCriteria_result) - return this.equals((selectCriteria_result)that); + if (that instanceof selectKeysRecordsTimestrOrderPage_result) + return this.equals((selectKeysRecordsTimestrOrderPage_result)that); return false; } - public boolean equals(selectCriteria_result that) { + public boolean equals(selectKeysRecordsTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -269672,6 +268934,15 @@ public boolean equals(selectCriteria_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -269695,11 +268966,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(selectCriteria_result other) { + public int compareTo(selectKeysRecordsTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -269746,6 +269021,16 @@ public int compareTo(selectCriteria_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -269766,7 +269051,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteria_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysRecordsTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -269800,6 +269085,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -269825,17 +269118,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteria_resultStandardScheme getScheme() { - return new selectCriteria_resultStandardScheme(); + public selectKeysRecordsTimestrOrderPage_resultStandardScheme getScheme() { + return new selectKeysRecordsTimestrOrderPage_resultStandardScheme(); } } - private static class selectCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -269848,38 +269141,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2416 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2416.size); - long _key2417; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2418; - for (int _i2419 = 0; _i2419 < _map2416.size; ++_i2419) + org.apache.thrift.protocol.TMap _map2388 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2388.size); + long _key2389; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2390; + for (int _i2391 = 0; _i2391 < _map2388.size; ++_i2391) { - _key2417 = iprot.readI64(); + _key2389 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2420 = iprot.readMapBegin(); - _val2418 = new java.util.LinkedHashMap>(2*_map2420.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2421; - @org.apache.thrift.annotation.Nullable java.util.Set _val2422; - for (int _i2423 = 0; _i2423 < _map2420.size; ++_i2423) + org.apache.thrift.protocol.TMap _map2392 = iprot.readMapBegin(); + _val2390 = new java.util.LinkedHashMap>(2*_map2392.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2393; + @org.apache.thrift.annotation.Nullable java.util.Set _val2394; + for (int _i2395 = 0; _i2395 < _map2392.size; ++_i2395) { - _key2421 = iprot.readString(); + _key2393 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2424 = iprot.readSetBegin(); - _val2422 = new java.util.LinkedHashSet(2*_set2424.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2425; - for (int _i2426 = 0; _i2426 < _set2424.size; ++_i2426) + org.apache.thrift.protocol.TSet _set2396 = iprot.readSetBegin(); + _val2394 = new java.util.LinkedHashSet(2*_set2396.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2397; + for (int _i2398 = 0; _i2398 < _set2396.size; ++_i2398) { - _elem2425 = new com.cinchapi.concourse.thrift.TObject(); - _elem2425.read(iprot); - _val2422.add(_elem2425); + _elem2397 = new com.cinchapi.concourse.thrift.TObject(); + _elem2397.read(iprot); + _val2394.add(_elem2397); } iprot.readSetEnd(); } - _val2418.put(_key2421, _val2422); + _val2390.put(_key2393, _val2394); } iprot.readMapEnd(); } - struct.success.put(_key2417, _val2418); + struct.success.put(_key2389, _val2390); } iprot.readMapEnd(); } @@ -269908,13 +269201,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_resu break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -269927,7 +269229,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -269935,19 +269237,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteria_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2427 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2399 : struct.success.entrySet()) { - oprot.writeI64(_iter2427.getKey()); + oprot.writeI64(_iter2399.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2427.getValue().size())); - for (java.util.Map.Entry> _iter2428 : _iter2427.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2399.getValue().size())); + for (java.util.Map.Entry> _iter2400 : _iter2399.getValue().entrySet()) { - oprot.writeString(_iter2428.getKey()); + oprot.writeString(_iter2400.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2428.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2429 : _iter2428.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2400.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2401 : _iter2400.getValue()) { - _iter2429.write(oprot); + _iter2401.write(oprot); } oprot.writeSetEnd(); } @@ -269974,23 +269276,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteria_res struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteria_resultTupleScheme getScheme() { - return new selectCriteria_resultTupleScheme(); + public selectKeysRecordsTimestrOrderPage_resultTupleScheme getScheme() { + return new selectKeysRecordsTimestrOrderPage_resultTupleScheme(); } } - private static class selectCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -270005,23 +269312,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteria_resu if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2430 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2402 : struct.success.entrySet()) { - oprot.writeI64(_iter2430.getKey()); + oprot.writeI64(_iter2402.getKey()); { - oprot.writeI32(_iter2430.getValue().size()); - for (java.util.Map.Entry> _iter2431 : _iter2430.getValue().entrySet()) + oprot.writeI32(_iter2402.getValue().size()); + for (java.util.Map.Entry> _iter2403 : _iter2402.getValue().entrySet()) { - oprot.writeString(_iter2431.getKey()); + oprot.writeString(_iter2403.getKey()); { - oprot.writeI32(_iter2431.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2432 : _iter2431.getValue()) + oprot.writeI32(_iter2403.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2404 : _iter2403.getValue()) { - _iter2432.write(oprot); + _iter2404.write(oprot); } } } @@ -270038,44 +269348,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteria_resu if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2433 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2433.size); - long _key2434; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2435; - for (int _i2436 = 0; _i2436 < _map2433.size; ++_i2436) + org.apache.thrift.protocol.TMap _map2405 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2405.size); + long _key2406; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2407; + for (int _i2408 = 0; _i2408 < _map2405.size; ++_i2408) { - _key2434 = iprot.readI64(); + _key2406 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2437 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2435 = new java.util.LinkedHashMap>(2*_map2437.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2438; - @org.apache.thrift.annotation.Nullable java.util.Set _val2439; - for (int _i2440 = 0; _i2440 < _map2437.size; ++_i2440) + org.apache.thrift.protocol.TMap _map2409 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2407 = new java.util.LinkedHashMap>(2*_map2409.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2410; + @org.apache.thrift.annotation.Nullable java.util.Set _val2411; + for (int _i2412 = 0; _i2412 < _map2409.size; ++_i2412) { - _key2438 = iprot.readString(); + _key2410 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2441 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2439 = new java.util.LinkedHashSet(2*_set2441.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2442; - for (int _i2443 = 0; _i2443 < _set2441.size; ++_i2443) + org.apache.thrift.protocol.TSet _set2413 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2411 = new java.util.LinkedHashSet(2*_set2413.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2414; + for (int _i2415 = 0; _i2415 < _set2413.size; ++_i2415) { - _elem2442 = new com.cinchapi.concourse.thrift.TObject(); - _elem2442.read(iprot); - _val2439.add(_elem2442); + _elem2414 = new com.cinchapi.concourse.thrift.TObject(); + _elem2414.read(iprot); + _val2411.add(_elem2414); } } - _val2435.put(_key2438, _val2439); + _val2407.put(_key2410, _val2411); } } - struct.success.put(_key2434, _val2435); + struct.success.put(_key2406, _val2407); } } struct.setSuccessIsSet(true); @@ -270091,10 +269404,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteria_resul struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -270103,20 +269421,18 @@ private static S scheme(org.apache. } } - public static class selectCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaPage_args"); + public static class selectCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteria_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteria_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteria_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -270124,10 +269440,9 @@ public static class selectCriteriaPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -270145,13 +269460,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // CRITERIA return CRITERIA; - case 2: // PAGE - return PAGE; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -270201,8 +269514,6 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -270210,22 +269521,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteria_args.class, metaDataMap); } - public selectCriteriaPage_args() { + public selectCriteria_args() { } - public selectCriteriaPage_args( + public selectCriteria_args( com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.criteria = criteria; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -270234,13 +269543,10 @@ public selectCriteriaPage_args( /** * Performs a deep copy on other. */ - public selectCriteriaPage_args(selectCriteriaPage_args other) { + public selectCriteria_args(selectCriteria_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -270253,14 +269559,13 @@ public selectCriteriaPage_args(selectCriteriaPage_args other) { } @Override - public selectCriteriaPage_args deepCopy() { - return new selectCriteriaPage_args(this); + public selectCriteria_args deepCopy() { + return new selectCriteria_args(this); } @Override public void clear() { this.criteria = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -270271,7 +269576,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -270291,37 +269596,12 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -270346,7 +269626,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -270371,7 +269651,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -270402,14 +269682,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -270444,9 +269716,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -270470,8 +269739,6 @@ public boolean isSet(_Fields field) { switch (field) { case CRITERIA: return isSetCriteria(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -270484,12 +269751,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCriteriaPage_args) - return this.equals((selectCriteriaPage_args)that); + if (that instanceof selectCriteria_args) + return this.equals((selectCriteria_args)that); return false; } - public boolean equals(selectCriteriaPage_args that) { + public boolean equals(selectCriteria_args that) { if (that == null) return false; if (this == that) @@ -270504,15 +269771,6 @@ public boolean equals(selectCriteriaPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -270551,10 +269809,6 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -270571,7 +269825,7 @@ public int hashCode() { } @Override - public int compareTo(selectCriteriaPage_args other) { + public int compareTo(selectCriteria_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -270588,16 +269842,6 @@ public int compareTo(selectCriteriaPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -270649,7 +269893,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteria_args("); boolean first = true; sb.append("criteria:"); @@ -270660,14 +269904,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -270701,9 +269937,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -270728,17 +269961,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaPage_argsStandardScheme getScheme() { - return new selectCriteriaPage_argsStandardScheme(); + public selectCriteria_argsStandardScheme getScheme() { + return new selectCriteria_argsStandardScheme(); } } - private static class selectCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -270757,16 +269990,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -270775,7 +269999,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -270784,7 +270008,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -270804,7 +270028,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteria_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -270813,11 +270037,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaPage struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -270839,41 +270058,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaPage } - private static class selectCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaPage_argsTupleScheme getScheme() { - return new selectCriteriaPage_argsTupleScheme(); + public selectCriteria_argsTupleScheme getScheme() { + return new selectCriteria_argsTupleScheme(); } } - private static class selectCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetPage()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -270886,30 +270099,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); struct.setCriteriaIsSet(true); } if (incoming.get(1)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -270921,16 +270129,16 @@ private static S scheme(org.apache. } } - public static class selectCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaPage_result"); + public static class selectCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteria_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteria_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteria_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -271026,13 +270234,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteria_result.class, metaDataMap); } - public selectCriteriaPage_result() { + public selectCriteria_result() { } - public selectCriteriaPage_result( + public selectCriteria_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -271048,7 +270256,7 @@ public selectCriteriaPage_result( /** * Performs a deep copy on other. */ - public selectCriteriaPage_result(selectCriteriaPage_result other) { + public selectCriteria_result(selectCriteria_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -271090,8 +270298,8 @@ public selectCriteriaPage_result(selectCriteriaPage_result other) { } @Override - public selectCriteriaPage_result deepCopy() { - return new selectCriteriaPage_result(this); + public selectCriteria_result deepCopy() { + return new selectCriteria_result(this); } @Override @@ -271118,7 +270326,7 @@ public java.util.Map>> success) { + public selectCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -271143,7 +270351,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -271168,7 +270376,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -271193,7 +270401,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -271293,12 +270501,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCriteriaPage_result) - return this.equals((selectCriteriaPage_result)that); + if (that instanceof selectCriteria_result) + return this.equals((selectCriteria_result)that); return false; } - public boolean equals(selectCriteriaPage_result that) { + public boolean equals(selectCriteria_result that) { if (that == null) return false; if (this == that) @@ -271367,7 +270575,7 @@ public int hashCode() { } @Override - public int compareTo(selectCriteriaPage_result other) { + public int compareTo(selectCriteria_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -271434,7 +270642,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteria_result("); boolean first = true; sb.append("success:"); @@ -271493,17 +270701,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaPage_resultStandardScheme getScheme() { - return new selectCriteriaPage_resultStandardScheme(); + public selectCriteria_resultStandardScheme getScheme() { + return new selectCriteria_resultStandardScheme(); } } - private static class selectCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -271516,38 +270724,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2444 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2444.size); - long _key2445; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2446; - for (int _i2447 = 0; _i2447 < _map2444.size; ++_i2447) + org.apache.thrift.protocol.TMap _map2416 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2416.size); + long _key2417; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2418; + for (int _i2419 = 0; _i2419 < _map2416.size; ++_i2419) { - _key2445 = iprot.readI64(); + _key2417 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2448 = iprot.readMapBegin(); - _val2446 = new java.util.LinkedHashMap>(2*_map2448.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2449; - @org.apache.thrift.annotation.Nullable java.util.Set _val2450; - for (int _i2451 = 0; _i2451 < _map2448.size; ++_i2451) + org.apache.thrift.protocol.TMap _map2420 = iprot.readMapBegin(); + _val2418 = new java.util.LinkedHashMap>(2*_map2420.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2421; + @org.apache.thrift.annotation.Nullable java.util.Set _val2422; + for (int _i2423 = 0; _i2423 < _map2420.size; ++_i2423) { - _key2449 = iprot.readString(); + _key2421 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2452 = iprot.readSetBegin(); - _val2450 = new java.util.LinkedHashSet(2*_set2452.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2453; - for (int _i2454 = 0; _i2454 < _set2452.size; ++_i2454) + org.apache.thrift.protocol.TSet _set2424 = iprot.readSetBegin(); + _val2422 = new java.util.LinkedHashSet(2*_set2424.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2425; + for (int _i2426 = 0; _i2426 < _set2424.size; ++_i2426) { - _elem2453 = new com.cinchapi.concourse.thrift.TObject(); - _elem2453.read(iprot); - _val2450.add(_elem2453); + _elem2425 = new com.cinchapi.concourse.thrift.TObject(); + _elem2425.read(iprot); + _val2422.add(_elem2425); } iprot.readSetEnd(); } - _val2446.put(_key2449, _val2450); + _val2418.put(_key2421, _val2422); } iprot.readMapEnd(); } - struct.success.put(_key2445, _val2446); + struct.success.put(_key2417, _val2418); } iprot.readMapEnd(); } @@ -271595,7 +270803,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteria_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -271603,19 +270811,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaPage oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2455 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2427 : struct.success.entrySet()) { - oprot.writeI64(_iter2455.getKey()); + oprot.writeI64(_iter2427.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2455.getValue().size())); - for (java.util.Map.Entry> _iter2456 : _iter2455.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2427.getValue().size())); + for (java.util.Map.Entry> _iter2428 : _iter2427.getValue().entrySet()) { - oprot.writeString(_iter2456.getKey()); + oprot.writeString(_iter2428.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2456.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2457 : _iter2456.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2428.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2429 : _iter2428.getValue()) { - _iter2457.write(oprot); + _iter2429.write(oprot); } oprot.writeSetEnd(); } @@ -271648,17 +270856,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaPage } - private static class selectCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaPage_resultTupleScheme getScheme() { - return new selectCriteriaPage_resultTupleScheme(); + public selectCriteria_resultTupleScheme getScheme() { + return new selectCriteria_resultTupleScheme(); } } - private static class selectCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -271677,19 +270885,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2458 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2430 : struct.success.entrySet()) { - oprot.writeI64(_iter2458.getKey()); + oprot.writeI64(_iter2430.getKey()); { - oprot.writeI32(_iter2458.getValue().size()); - for (java.util.Map.Entry> _iter2459 : _iter2458.getValue().entrySet()) + oprot.writeI32(_iter2430.getValue().size()); + for (java.util.Map.Entry> _iter2431 : _iter2430.getValue().entrySet()) { - oprot.writeString(_iter2459.getKey()); + oprot.writeString(_iter2431.getKey()); { - oprot.writeI32(_iter2459.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2460 : _iter2459.getValue()) + oprot.writeI32(_iter2431.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2432 : _iter2431.getValue()) { - _iter2460.write(oprot); + _iter2432.write(oprot); } } } @@ -271709,41 +270917,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2461 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2461.size); - long _key2462; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2463; - for (int _i2464 = 0; _i2464 < _map2461.size; ++_i2464) + org.apache.thrift.protocol.TMap _map2433 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2433.size); + long _key2434; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2435; + for (int _i2436 = 0; _i2436 < _map2433.size; ++_i2436) { - _key2462 = iprot.readI64(); + _key2434 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2465 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2463 = new java.util.LinkedHashMap>(2*_map2465.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2466; - @org.apache.thrift.annotation.Nullable java.util.Set _val2467; - for (int _i2468 = 0; _i2468 < _map2465.size; ++_i2468) + org.apache.thrift.protocol.TMap _map2437 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2435 = new java.util.LinkedHashMap>(2*_map2437.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2438; + @org.apache.thrift.annotation.Nullable java.util.Set _val2439; + for (int _i2440 = 0; _i2440 < _map2437.size; ++_i2440) { - _key2466 = iprot.readString(); + _key2438 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2469 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2467 = new java.util.LinkedHashSet(2*_set2469.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2470; - for (int _i2471 = 0; _i2471 < _set2469.size; ++_i2471) + org.apache.thrift.protocol.TSet _set2441 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2439 = new java.util.LinkedHashSet(2*_set2441.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2442; + for (int _i2443 = 0; _i2443 < _set2441.size; ++_i2443) { - _elem2470 = new com.cinchapi.concourse.thrift.TObject(); - _elem2470.read(iprot); - _val2467.add(_elem2470); + _elem2442 = new com.cinchapi.concourse.thrift.TObject(); + _elem2442.read(iprot); + _val2439.add(_elem2442); } } - _val2463.put(_key2466, _val2467); + _val2435.put(_key2438, _val2439); } } - struct.success.put(_key2462, _val2463); + struct.success.put(_key2434, _val2435); } } struct.setSuccessIsSet(true); @@ -271771,20 +270979,20 @@ private static S scheme(org.apache. } } - public static class selectCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaOrder_args"); + public static class selectCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaPage_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -271792,7 +271000,7 @@ public static class selectCriteriaOrder_args implements org.apache.thrift.TBase< /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), - ORDER((short)2, "order"), + PAGE((short)2, "page"), CREDS((short)3, "creds"), TRANSACTION((short)4, "transaction"), ENVIRONMENT((short)5, "environment"); @@ -271813,8 +271021,8 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // CRITERIA return CRITERIA; - case 2: // ORDER - return ORDER; + case 2: // PAGE + return PAGE; case 3: // CREDS return CREDS; case 4: // TRANSACTION @@ -271869,8 +271077,8 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -271878,22 +271086,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaPage_args.class, metaDataMap); } - public selectCriteriaOrder_args() { + public selectCriteriaPage_args() { } - public selectCriteriaOrder_args( + public selectCriteriaPage_args( com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.criteria = criteria; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -271902,12 +271110,12 @@ public selectCriteriaOrder_args( /** * Performs a deep copy on other. */ - public selectCriteriaOrder_args(selectCriteriaOrder_args other) { + public selectCriteriaPage_args(selectCriteriaPage_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -271921,14 +271129,14 @@ public selectCriteriaOrder_args(selectCriteriaOrder_args other) { } @Override - public selectCriteriaOrder_args deepCopy() { - return new selectCriteriaOrder_args(this); + public selectCriteriaPage_args deepCopy() { + return new selectCriteriaPage_args(this); } @Override public void clear() { this.criteria = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -271939,7 +271147,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -271960,27 +271168,27 @@ public void setCriteriaIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -271989,7 +271197,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -272014,7 +271222,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -272039,7 +271247,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -272070,11 +271278,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -272112,8 +271320,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -272138,8 +271346,8 @@ public boolean isSet(_Fields field) { switch (field) { case CRITERIA: return isSetCriteria(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -272152,12 +271360,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCriteriaOrder_args) - return this.equals((selectCriteriaOrder_args)that); + if (that instanceof selectCriteriaPage_args) + return this.equals((selectCriteriaPage_args)that); return false; } - public boolean equals(selectCriteriaOrder_args that) { + public boolean equals(selectCriteriaPage_args that) { if (that == null) return false; if (this == that) @@ -272172,12 +271380,12 @@ public boolean equals(selectCriteriaOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -272219,9 +271427,9 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -272239,7 +271447,7 @@ public int hashCode() { } @Override - public int compareTo(selectCriteriaOrder_args other) { + public int compareTo(selectCriteriaPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -272256,12 +271464,12 @@ public int compareTo(selectCriteriaOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -272317,7 +271525,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaPage_args("); boolean first = true; sb.append("criteria:"); @@ -272328,11 +271536,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -272369,8 +271577,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -272396,17 +271604,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaOrder_argsStandardScheme getScheme() { - return new selectCriteriaOrder_argsStandardScheme(); + public selectCriteriaPage_argsStandardScheme getScheme() { + return new selectCriteriaPage_argsStandardScheme(); } } - private static class selectCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -272425,11 +271633,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // ORDER + case 2: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -272472,7 +271680,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -272481,9 +271689,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrde struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -272507,23 +271715,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrde } - private static class selectCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaOrder_argsTupleScheme getScheme() { - return new selectCriteriaOrder_argsTupleScheme(); + public selectCriteriaPage_argsTupleScheme getScheme() { + return new selectCriteriaPage_argsTupleScheme(); } } - private static class selectCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -272539,8 +271747,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -272554,7 +271762,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -272563,9 +271771,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_ struct.setCriteriaIsSet(true); } if (incoming.get(1)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -272589,16 +271797,16 @@ private static S scheme(org.apache. } } - public static class selectCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaOrder_result"); + public static class selectCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -272694,13 +271902,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaPage_result.class, metaDataMap); } - public selectCriteriaOrder_result() { + public selectCriteriaPage_result() { } - public selectCriteriaOrder_result( + public selectCriteriaPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -272716,7 +271924,7 @@ public selectCriteriaOrder_result( /** * Performs a deep copy on other. */ - public selectCriteriaOrder_result(selectCriteriaOrder_result other) { + public selectCriteriaPage_result(selectCriteriaPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -272758,8 +271966,8 @@ public selectCriteriaOrder_result(selectCriteriaOrder_result other) { } @Override - public selectCriteriaOrder_result deepCopy() { - return new selectCriteriaOrder_result(this); + public selectCriteriaPage_result deepCopy() { + return new selectCriteriaPage_result(this); } @Override @@ -272786,7 +271994,7 @@ public java.util.Map>> success) { + public selectCriteriaPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -272811,7 +272019,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -272836,7 +272044,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -272861,7 +272069,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -272961,12 +272169,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCriteriaOrder_result) - return this.equals((selectCriteriaOrder_result)that); + if (that instanceof selectCriteriaPage_result) + return this.equals((selectCriteriaPage_result)that); return false; } - public boolean equals(selectCriteriaOrder_result that) { + public boolean equals(selectCriteriaPage_result that) { if (that == null) return false; if (this == that) @@ -273035,7 +272243,7 @@ public int hashCode() { } @Override - public int compareTo(selectCriteriaOrder_result other) { + public int compareTo(selectCriteriaPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -273102,7 +272310,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaPage_result("); boolean first = true; sb.append("success:"); @@ -273161,17 +272369,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaOrder_resultStandardScheme getScheme() { - return new selectCriteriaOrder_resultStandardScheme(); + public selectCriteriaPage_resultStandardScheme getScheme() { + return new selectCriteriaPage_resultStandardScheme(); } } - private static class selectCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -273184,38 +272392,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2472 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2472.size); - long _key2473; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2474; - for (int _i2475 = 0; _i2475 < _map2472.size; ++_i2475) + org.apache.thrift.protocol.TMap _map2444 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2444.size); + long _key2445; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2446; + for (int _i2447 = 0; _i2447 < _map2444.size; ++_i2447) { - _key2473 = iprot.readI64(); + _key2445 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2476 = iprot.readMapBegin(); - _val2474 = new java.util.LinkedHashMap>(2*_map2476.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2477; - @org.apache.thrift.annotation.Nullable java.util.Set _val2478; - for (int _i2479 = 0; _i2479 < _map2476.size; ++_i2479) + org.apache.thrift.protocol.TMap _map2448 = iprot.readMapBegin(); + _val2446 = new java.util.LinkedHashMap>(2*_map2448.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2449; + @org.apache.thrift.annotation.Nullable java.util.Set _val2450; + for (int _i2451 = 0; _i2451 < _map2448.size; ++_i2451) { - _key2477 = iprot.readString(); + _key2449 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2480 = iprot.readSetBegin(); - _val2478 = new java.util.LinkedHashSet(2*_set2480.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2481; - for (int _i2482 = 0; _i2482 < _set2480.size; ++_i2482) + org.apache.thrift.protocol.TSet _set2452 = iprot.readSetBegin(); + _val2450 = new java.util.LinkedHashSet(2*_set2452.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2453; + for (int _i2454 = 0; _i2454 < _set2452.size; ++_i2454) { - _elem2481 = new com.cinchapi.concourse.thrift.TObject(); - _elem2481.read(iprot); - _val2478.add(_elem2481); + _elem2453 = new com.cinchapi.concourse.thrift.TObject(); + _elem2453.read(iprot); + _val2450.add(_elem2453); } iprot.readSetEnd(); } - _val2474.put(_key2477, _val2478); + _val2446.put(_key2449, _val2450); } iprot.readMapEnd(); } - struct.success.put(_key2473, _val2474); + struct.success.put(_key2445, _val2446); } iprot.readMapEnd(); } @@ -273263,7 +272471,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -273271,19 +272479,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrde oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2483 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2455 : struct.success.entrySet()) { - oprot.writeI64(_iter2483.getKey()); + oprot.writeI64(_iter2455.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2483.getValue().size())); - for (java.util.Map.Entry> _iter2484 : _iter2483.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2455.getValue().size())); + for (java.util.Map.Entry> _iter2456 : _iter2455.getValue().entrySet()) { - oprot.writeString(_iter2484.getKey()); + oprot.writeString(_iter2456.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2484.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2485 : _iter2484.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2456.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2457 : _iter2456.getValue()) { - _iter2485.write(oprot); + _iter2457.write(oprot); } oprot.writeSetEnd(); } @@ -273316,17 +272524,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrde } - private static class selectCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaOrder_resultTupleScheme getScheme() { - return new selectCriteriaOrder_resultTupleScheme(); + public selectCriteriaPage_resultTupleScheme getScheme() { + return new selectCriteriaPage_resultTupleScheme(); } } - private static class selectCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -273345,19 +272553,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2486 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2458 : struct.success.entrySet()) { - oprot.writeI64(_iter2486.getKey()); + oprot.writeI64(_iter2458.getKey()); { - oprot.writeI32(_iter2486.getValue().size()); - for (java.util.Map.Entry> _iter2487 : _iter2486.getValue().entrySet()) + oprot.writeI32(_iter2458.getValue().size()); + for (java.util.Map.Entry> _iter2459 : _iter2458.getValue().entrySet()) { - oprot.writeString(_iter2487.getKey()); + oprot.writeString(_iter2459.getKey()); { - oprot.writeI32(_iter2487.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2488 : _iter2487.getValue()) + oprot.writeI32(_iter2459.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2460 : _iter2459.getValue()) { - _iter2488.write(oprot); + _iter2460.write(oprot); } } } @@ -273377,41 +272585,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2489 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2489.size); - long _key2490; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2491; - for (int _i2492 = 0; _i2492 < _map2489.size; ++_i2492) + org.apache.thrift.protocol.TMap _map2461 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2461.size); + long _key2462; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2463; + for (int _i2464 = 0; _i2464 < _map2461.size; ++_i2464) { - _key2490 = iprot.readI64(); + _key2462 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2493 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2491 = new java.util.LinkedHashMap>(2*_map2493.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2494; - @org.apache.thrift.annotation.Nullable java.util.Set _val2495; - for (int _i2496 = 0; _i2496 < _map2493.size; ++_i2496) + org.apache.thrift.protocol.TMap _map2465 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2463 = new java.util.LinkedHashMap>(2*_map2465.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2466; + @org.apache.thrift.annotation.Nullable java.util.Set _val2467; + for (int _i2468 = 0; _i2468 < _map2465.size; ++_i2468) { - _key2494 = iprot.readString(); + _key2466 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2497 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2495 = new java.util.LinkedHashSet(2*_set2497.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2498; - for (int _i2499 = 0; _i2499 < _set2497.size; ++_i2499) + org.apache.thrift.protocol.TSet _set2469 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2467 = new java.util.LinkedHashSet(2*_set2469.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2470; + for (int _i2471 = 0; _i2471 < _set2469.size; ++_i2471) { - _elem2498 = new com.cinchapi.concourse.thrift.TObject(); - _elem2498.read(iprot); - _val2495.add(_elem2498); + _elem2470 = new com.cinchapi.concourse.thrift.TObject(); + _elem2470.read(iprot); + _val2467.add(_elem2470); } } - _val2491.put(_key2494, _val2495); + _val2463.put(_key2466, _val2467); } } - struct.success.put(_key2490, _val2491); + struct.success.put(_key2462, _val2463); } } struct.setSuccessIsSet(true); @@ -273439,22 +272647,20 @@ private static S scheme(org.apache. } } - public static class selectCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaOrderPage_args"); + public static class selectCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaOrder_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -273463,10 +272669,9 @@ public static class selectCriteriaOrderPage_args implements org.apache.thrift.TB public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), ORDER((short)2, "order"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -273486,13 +272691,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 2: // ORDER return ORDER; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -273544,8 +272747,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -273553,16 +272754,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaOrder_args.class, metaDataMap); } - public selectCriteriaOrderPage_args() { + public selectCriteriaOrder_args() { } - public selectCriteriaOrderPage_args( + public selectCriteriaOrder_args( com.cinchapi.concourse.thrift.TCriteria criteria, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -273570,7 +272770,6 @@ public selectCriteriaOrderPage_args( this(); this.criteria = criteria; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -273579,16 +272778,13 @@ public selectCriteriaOrderPage_args( /** * Performs a deep copy on other. */ - public selectCriteriaOrderPage_args(selectCriteriaOrderPage_args other) { + public selectCriteriaOrder_args(selectCriteriaOrder_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -273601,15 +272797,14 @@ public selectCriteriaOrderPage_args(selectCriteriaOrderPage_args other) { } @Override - public selectCriteriaOrderPage_args deepCopy() { - return new selectCriteriaOrderPage_args(this); + public selectCriteriaOrder_args deepCopy() { + return new selectCriteriaOrder_args(this); } @Override public void clear() { this.criteria = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -273620,7 +272815,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -273645,7 +272840,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -273665,37 +272860,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -273720,7 +272890,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -273745,7 +272915,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -273784,14 +272954,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -273829,9 +272991,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -273857,8 +273016,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -273871,12 +273028,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCriteriaOrderPage_args) - return this.equals((selectCriteriaOrderPage_args)that); + if (that instanceof selectCriteriaOrder_args) + return this.equals((selectCriteriaOrder_args)that); return false; } - public boolean equals(selectCriteriaOrderPage_args that) { + public boolean equals(selectCriteriaOrder_args that) { if (that == null) return false; if (this == that) @@ -273900,15 +273057,6 @@ public boolean equals(selectCriteriaOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -273951,10 +273099,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -273971,7 +273115,7 @@ public int hashCode() { } @Override - public int compareTo(selectCriteriaOrderPage_args other) { + public int compareTo(selectCriteriaOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -273998,16 +273142,6 @@ public int compareTo(selectCriteriaOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -274059,7 +273193,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaOrder_args("); boolean first = true; sb.append("criteria:"); @@ -274078,14 +273212,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -274122,9 +273248,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -274149,17 +273272,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaOrderPage_argsStandardScheme getScheme() { - return new selectCriteriaOrderPage_argsStandardScheme(); + public selectCriteriaOrder_argsStandardScheme getScheme() { + return new selectCriteriaOrder_argsStandardScheme(); } } - private static class selectCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -274187,16 +273310,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -274205,7 +273319,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -274214,7 +273328,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -274234,7 +273348,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -274248,11 +273362,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrde struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -274274,17 +273383,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrde } - private static class selectCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaOrderPage_argsTupleScheme getScheme() { - return new selectCriteriaOrderPage_argsTupleScheme(); + public selectCriteriaOrder_argsTupleScheme getScheme() { + return new selectCriteriaOrder_argsTupleScheme(); } } - private static class selectCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -274293,28 +273402,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -274327,9 +273430,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); @@ -274341,21 +273444,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderP struct.setOrderIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -274367,16 +273465,16 @@ private static S scheme(org.apache. } } - public static class selectCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaOrderPage_result"); + public static class selectCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -274472,13 +273570,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaOrder_result.class, metaDataMap); } - public selectCriteriaOrderPage_result() { + public selectCriteriaOrder_result() { } - public selectCriteriaOrderPage_result( + public selectCriteriaOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -274494,7 +273592,7 @@ public selectCriteriaOrderPage_result( /** * Performs a deep copy on other. */ - public selectCriteriaOrderPage_result(selectCriteriaOrderPage_result other) { + public selectCriteriaOrder_result(selectCriteriaOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -274536,8 +273634,8 @@ public selectCriteriaOrderPage_result(selectCriteriaOrderPage_result other) { } @Override - public selectCriteriaOrderPage_result deepCopy() { - return new selectCriteriaOrderPage_result(this); + public selectCriteriaOrder_result deepCopy() { + return new selectCriteriaOrder_result(this); } @Override @@ -274564,7 +273662,7 @@ public java.util.Map>> success) { + public selectCriteriaOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -274589,7 +273687,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -274614,7 +273712,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -274639,7 +273737,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -274739,12 +273837,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCriteriaOrderPage_result) - return this.equals((selectCriteriaOrderPage_result)that); + if (that instanceof selectCriteriaOrder_result) + return this.equals((selectCriteriaOrder_result)that); return false; } - public boolean equals(selectCriteriaOrderPage_result that) { + public boolean equals(selectCriteriaOrder_result that) { if (that == null) return false; if (this == that) @@ -274813,7 +273911,7 @@ public int hashCode() { } @Override - public int compareTo(selectCriteriaOrderPage_result other) { + public int compareTo(selectCriteriaOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -274880,7 +273978,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaOrder_result("); boolean first = true; sb.append("success:"); @@ -274939,17 +274037,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaOrderPage_resultStandardScheme getScheme() { - return new selectCriteriaOrderPage_resultStandardScheme(); + public selectCriteriaOrder_resultStandardScheme getScheme() { + return new selectCriteriaOrder_resultStandardScheme(); } } - private static class selectCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -274962,38 +274060,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2500 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2500.size); - long _key2501; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2502; - for (int _i2503 = 0; _i2503 < _map2500.size; ++_i2503) + org.apache.thrift.protocol.TMap _map2472 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2472.size); + long _key2473; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2474; + for (int _i2475 = 0; _i2475 < _map2472.size; ++_i2475) { - _key2501 = iprot.readI64(); + _key2473 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2504 = iprot.readMapBegin(); - _val2502 = new java.util.LinkedHashMap>(2*_map2504.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2505; - @org.apache.thrift.annotation.Nullable java.util.Set _val2506; - for (int _i2507 = 0; _i2507 < _map2504.size; ++_i2507) + org.apache.thrift.protocol.TMap _map2476 = iprot.readMapBegin(); + _val2474 = new java.util.LinkedHashMap>(2*_map2476.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2477; + @org.apache.thrift.annotation.Nullable java.util.Set _val2478; + for (int _i2479 = 0; _i2479 < _map2476.size; ++_i2479) { - _key2505 = iprot.readString(); + _key2477 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2508 = iprot.readSetBegin(); - _val2506 = new java.util.LinkedHashSet(2*_set2508.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2509; - for (int _i2510 = 0; _i2510 < _set2508.size; ++_i2510) + org.apache.thrift.protocol.TSet _set2480 = iprot.readSetBegin(); + _val2478 = new java.util.LinkedHashSet(2*_set2480.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2481; + for (int _i2482 = 0; _i2482 < _set2480.size; ++_i2482) { - _elem2509 = new com.cinchapi.concourse.thrift.TObject(); - _elem2509.read(iprot); - _val2506.add(_elem2509); + _elem2481 = new com.cinchapi.concourse.thrift.TObject(); + _elem2481.read(iprot); + _val2478.add(_elem2481); } iprot.readSetEnd(); } - _val2502.put(_key2505, _val2506); + _val2474.put(_key2477, _val2478); } iprot.readMapEnd(); } - struct.success.put(_key2501, _val2502); + struct.success.put(_key2473, _val2474); } iprot.readMapEnd(); } @@ -275041,7 +274139,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -275049,19 +274147,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrde oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2511 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2483 : struct.success.entrySet()) { - oprot.writeI64(_iter2511.getKey()); + oprot.writeI64(_iter2483.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2511.getValue().size())); - for (java.util.Map.Entry> _iter2512 : _iter2511.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2483.getValue().size())); + for (java.util.Map.Entry> _iter2484 : _iter2483.getValue().entrySet()) { - oprot.writeString(_iter2512.getKey()); + oprot.writeString(_iter2484.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2512.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2513 : _iter2512.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2484.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2485 : _iter2484.getValue()) { - _iter2513.write(oprot); + _iter2485.write(oprot); } oprot.writeSetEnd(); } @@ -275094,17 +274192,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrde } - private static class selectCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCriteriaOrderPage_resultTupleScheme getScheme() { - return new selectCriteriaOrderPage_resultTupleScheme(); + public selectCriteriaOrder_resultTupleScheme getScheme() { + return new selectCriteriaOrder_resultTupleScheme(); } } - private static class selectCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -275123,19 +274221,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2514 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2486 : struct.success.entrySet()) { - oprot.writeI64(_iter2514.getKey()); + oprot.writeI64(_iter2486.getKey()); { - oprot.writeI32(_iter2514.getValue().size()); - for (java.util.Map.Entry> _iter2515 : _iter2514.getValue().entrySet()) + oprot.writeI32(_iter2486.getValue().size()); + for (java.util.Map.Entry> _iter2487 : _iter2486.getValue().entrySet()) { - oprot.writeString(_iter2515.getKey()); + oprot.writeString(_iter2487.getKey()); { - oprot.writeI32(_iter2515.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2516 : _iter2515.getValue()) + oprot.writeI32(_iter2487.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2488 : _iter2487.getValue()) { - _iter2516.write(oprot); + _iter2488.write(oprot); } } } @@ -275155,41 +274253,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2517 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2517.size); - long _key2518; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2519; - for (int _i2520 = 0; _i2520 < _map2517.size; ++_i2520) + org.apache.thrift.protocol.TMap _map2489 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2489.size); + long _key2490; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2491; + for (int _i2492 = 0; _i2492 < _map2489.size; ++_i2492) { - _key2518 = iprot.readI64(); + _key2490 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2521 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2519 = new java.util.LinkedHashMap>(2*_map2521.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2522; - @org.apache.thrift.annotation.Nullable java.util.Set _val2523; - for (int _i2524 = 0; _i2524 < _map2521.size; ++_i2524) + org.apache.thrift.protocol.TMap _map2493 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2491 = new java.util.LinkedHashMap>(2*_map2493.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2494; + @org.apache.thrift.annotation.Nullable java.util.Set _val2495; + for (int _i2496 = 0; _i2496 < _map2493.size; ++_i2496) { - _key2522 = iprot.readString(); + _key2494 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2525 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2523 = new java.util.LinkedHashSet(2*_set2525.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2526; - for (int _i2527 = 0; _i2527 < _set2525.size; ++_i2527) + org.apache.thrift.protocol.TSet _set2497 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2495 = new java.util.LinkedHashSet(2*_set2497.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2498; + for (int _i2499 = 0; _i2499 < _set2497.size; ++_i2499) { - _elem2526 = new com.cinchapi.concourse.thrift.TObject(); - _elem2526.read(iprot); - _val2523.add(_elem2526); + _elem2498 = new com.cinchapi.concourse.thrift.TObject(); + _elem2498.read(iprot); + _val2495.add(_elem2498); } } - _val2519.put(_key2522, _val2523); + _val2491.put(_key2494, _val2495); } } - struct.success.put(_key2518, _val2519); + struct.success.put(_key2490, _val2491); } } struct.setSuccessIsSet(true); @@ -275217,28 +274315,34 @@ private static S scheme(org.apache. } } - public static class selectCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCcl_args"); + public static class selectCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaOrderPage_args"); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCcl_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCcl_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CCL((short)1, "ccl"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + CRITERIA((short)1, "criteria"), + ORDER((short)2, "order"), + PAGE((short)3, "page"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -275254,13 +274358,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CCL - return CCL; - case 2: // CREDS + case 1: // CRITERIA + return CRITERIA; + case 2: // ORDER + return ORDER; + case 3: // PAGE + return PAGE; + case 4: // CREDS return CREDS; - case 3: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -275308,8 +274416,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -275317,20 +274429,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCcl_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaOrderPage_args.class, metaDataMap); } - public selectCcl_args() { + public selectCriteriaOrderPage_args() { } - public selectCcl_args( - java.lang.String ccl, + public selectCriteriaOrderPage_args( + com.cinchapi.concourse.thrift.TCriteria criteria, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.ccl = ccl; + this.criteria = criteria; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -275339,9 +274455,15 @@ public selectCcl_args( /** * Performs a deep copy on other. */ - public selectCcl_args(selectCcl_args other) { - if (other.isSetCcl()) { - this.ccl = other.ccl; + public selectCriteriaOrderPage_args(selectCriteriaOrderPage_args other) { + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -275355,40 +274477,92 @@ public selectCcl_args(selectCcl_args other) { } @Override - public selectCcl_args deepCopy() { - return new selectCcl_args(this); + public selectCriteriaOrderPage_args deepCopy() { + return new selectCriteriaOrderPage_args(this); } @Override public void clear() { - this.ccl = null; + this.criteria = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public selectCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public selectCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -275397,7 +274571,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -275422,7 +274596,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -275447,7 +274621,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -275470,11 +274644,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -275509,8 +274699,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -275533,8 +274729,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -275547,23 +274747,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCcl_args) - return this.equals((selectCcl_args)that); + if (that instanceof selectCriteriaOrderPage_args) + return this.equals((selectCriteriaOrderPage_args)that); return false; } - public boolean equals(selectCcl_args that) { + public boolean equals(selectCriteriaOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -275601,9 +274819,17 @@ public boolean equals(selectCcl_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -275621,19 +274847,39 @@ public int hashCode() { } @Override - public int compareTo(selectCcl_args other) { + public int compareTo(selectCriteriaOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -275689,14 +274935,30 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCcl_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaOrderPage_args("); boolean first = true; - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -275730,6 +274992,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -275754,17 +275025,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCcl_argsStandardScheme getScheme() { - return new selectCcl_argsStandardScheme(); + public selectCriteriaOrderPage_argsStandardScheme getScheme() { + return new selectCriteriaOrderPage_argsStandardScheme(); } } - private static class selectCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -275774,15 +275045,34 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_args stru break; } switch (schemeField.id) { - case 1: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 1: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 2: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -275791,7 +275081,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -275800,7 +275090,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -275820,13 +275110,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_args stru } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -275850,34 +275150,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCcl_args str } - private static class selectCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCcl_argsTupleScheme getScheme() { - return new selectCcl_argsTupleScheme(); + public selectCriteriaOrderPage_argsTupleScheme getScheme() { + return new selectCriteriaOrderPage_argsTupleScheme(); } } - private static class selectCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetTransaction()) { + optionals.set(4); + } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -275891,24 +275203,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCcl_args stru } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(1)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(2)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -275920,31 +275243,28 @@ private static S scheme(org.apache. } } - public static class selectCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCcl_result"); + public static class selectCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCriteriaOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCcl_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCcl_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCriteriaOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCriteriaOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -275968,8 +275288,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -276028,35 +275346,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCcl_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectCriteriaOrderPage_result.class, metaDataMap); } - public selectCcl_result() { + public selectCriteriaOrderPage_result() { } - public selectCcl_result( + public selectCriteriaOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectCcl_result(selectCcl_result other) { + public selectCriteriaOrderPage_result(selectCriteriaOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -276093,16 +275407,13 @@ public selectCcl_result(selectCcl_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectCcl_result deepCopy() { - return new selectCcl_result(this); + public selectCriteriaOrderPage_result deepCopy() { + return new selectCriteriaOrderPage_result(this); } @Override @@ -276111,7 +275422,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -276130,7 +275440,7 @@ public java.util.Map>> success) { + public selectCriteriaOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -276155,7 +275465,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -276180,7 +275490,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -276201,11 +275511,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -276225,31 +275535,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -276281,15 +275566,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -276312,9 +275589,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -276335,20 +275609,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectCcl_result) - return this.equals((selectCcl_result)that); + if (that instanceof selectCriteriaOrderPage_result) + return this.equals((selectCriteriaOrderPage_result)that); return false; } - public boolean equals(selectCcl_result that) { + public boolean equals(selectCriteriaOrderPage_result that) { if (that == null) return false; if (this == that) @@ -276390,15 +275662,6 @@ public boolean equals(selectCcl_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -276422,15 +275685,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectCcl_result other) { + public int compareTo(selectCriteriaOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -276477,16 +275736,6 @@ public int compareTo(selectCcl_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -276507,7 +275756,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCcl_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectCriteriaOrderPage_result("); boolean first = true; sb.append("success:"); @@ -276541,14 +275790,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -276574,17 +275815,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCcl_resultStandardScheme getScheme() { - return new selectCcl_resultStandardScheme(); + public selectCriteriaOrderPage_resultStandardScheme getScheme() { + return new selectCriteriaOrderPage_resultStandardScheme(); } } - private static class selectCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -276597,38 +275838,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_result st case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map2528 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map2528.size); - long _key2529; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2530; - for (int _i2531 = 0; _i2531 < _map2528.size; ++_i2531) + org.apache.thrift.protocol.TMap _map2500 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map2500.size); + long _key2501; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2502; + for (int _i2503 = 0; _i2503 < _map2500.size; ++_i2503) { - _key2529 = iprot.readI64(); + _key2501 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2532 = iprot.readMapBegin(); - _val2530 = new java.util.LinkedHashMap>(2*_map2532.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2533; - @org.apache.thrift.annotation.Nullable java.util.Set _val2534; - for (int _i2535 = 0; _i2535 < _map2532.size; ++_i2535) + org.apache.thrift.protocol.TMap _map2504 = iprot.readMapBegin(); + _val2502 = new java.util.LinkedHashMap>(2*_map2504.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2505; + @org.apache.thrift.annotation.Nullable java.util.Set _val2506; + for (int _i2507 = 0; _i2507 < _map2504.size; ++_i2507) { - _key2533 = iprot.readString(); + _key2505 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2536 = iprot.readSetBegin(); - _val2534 = new java.util.LinkedHashSet(2*_set2536.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2537; - for (int _i2538 = 0; _i2538 < _set2536.size; ++_i2538) + org.apache.thrift.protocol.TSet _set2508 = iprot.readSetBegin(); + _val2506 = new java.util.LinkedHashSet(2*_set2508.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2509; + for (int _i2510 = 0; _i2510 < _set2508.size; ++_i2510) { - _elem2537 = new com.cinchapi.concourse.thrift.TObject(); - _elem2537.read(iprot); - _val2534.add(_elem2537); + _elem2509 = new com.cinchapi.concourse.thrift.TObject(); + _elem2509.read(iprot); + _val2506.add(_elem2509); } iprot.readSetEnd(); } - _val2530.put(_key2533, _val2534); + _val2502.put(_key2505, _val2506); } iprot.readMapEnd(); } - struct.success.put(_key2529, _val2530); + struct.success.put(_key2501, _val2502); } iprot.readMapEnd(); } @@ -276657,22 +275898,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_result st break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -276685,7 +275917,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectCcl_result st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectCriteriaOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -276693,19 +275925,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCcl_result s oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter2539 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2511 : struct.success.entrySet()) { - oprot.writeI64(_iter2539.getKey()); + oprot.writeI64(_iter2511.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2539.getValue().size())); - for (java.util.Map.Entry> _iter2540 : _iter2539.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter2511.getValue().size())); + for (java.util.Map.Entry> _iter2512 : _iter2511.getValue().entrySet()) { - oprot.writeString(_iter2540.getKey()); + oprot.writeString(_iter2512.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2540.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter2541 : _iter2540.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter2512.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter2513 : _iter2512.getValue()) { - _iter2541.write(oprot); + _iter2513.write(oprot); } oprot.writeSetEnd(); } @@ -276732,28 +275964,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectCcl_result s struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectCcl_resultTupleScheme getScheme() { - return new selectCcl_resultTupleScheme(); + public selectCriteriaOrderPage_resultTupleScheme getScheme() { + return new selectCriteriaOrderPage_resultTupleScheme(); } } - private static class selectCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -276768,26 +275995,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCcl_result st if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter2542 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter2514 : struct.success.entrySet()) { - oprot.writeI64(_iter2542.getKey()); + oprot.writeI64(_iter2514.getKey()); { - oprot.writeI32(_iter2542.getValue().size()); - for (java.util.Map.Entry> _iter2543 : _iter2542.getValue().entrySet()) + oprot.writeI32(_iter2514.getValue().size()); + for (java.util.Map.Entry> _iter2515 : _iter2514.getValue().entrySet()) { - oprot.writeString(_iter2543.getKey()); + oprot.writeString(_iter2515.getKey()); { - oprot.writeI32(_iter2543.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter2544 : _iter2543.getValue()) + oprot.writeI32(_iter2515.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter2516 : _iter2515.getValue()) { - _iter2544.write(oprot); + _iter2516.write(oprot); } } } @@ -276804,47 +276028,44 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectCcl_result st if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map2545 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map2545.size); - long _key2546; - @org.apache.thrift.annotation.Nullable java.util.Map> _val2547; - for (int _i2548 = 0; _i2548 < _map2545.size; ++_i2548) + org.apache.thrift.protocol.TMap _map2517 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map2517.size); + long _key2518; + @org.apache.thrift.annotation.Nullable java.util.Map> _val2519; + for (int _i2520 = 0; _i2520 < _map2517.size; ++_i2520) { - _key2546 = iprot.readI64(); + _key2518 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map2549 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val2547 = new java.util.LinkedHashMap>(2*_map2549.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key2550; - @org.apache.thrift.annotation.Nullable java.util.Set _val2551; - for (int _i2552 = 0; _i2552 < _map2549.size; ++_i2552) + org.apache.thrift.protocol.TMap _map2521 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val2519 = new java.util.LinkedHashMap>(2*_map2521.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key2522; + @org.apache.thrift.annotation.Nullable java.util.Set _val2523; + for (int _i2524 = 0; _i2524 < _map2521.size; ++_i2524) { - _key2550 = iprot.readString(); + _key2522 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set2553 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val2551 = new java.util.LinkedHashSet(2*_set2553.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2554; - for (int _i2555 = 0; _i2555 < _set2553.size; ++_i2555) + org.apache.thrift.protocol.TSet _set2525 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val2523 = new java.util.LinkedHashSet(2*_set2525.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem2526; + for (int _i2527 = 0; _i2527 < _set2525.size; ++_i2527) { - _elem2554 = new com.cinchapi.concourse.thrift.TObject(); - _elem2554.read(iprot); - _val2551.add(_elem2554); + _elem2526 = new com.cinchapi.concourse.thrift.TObject(); + _elem2526.read(iprot); + _val2523.add(_elem2526); } } - _val2547.put(_key2550, _val2551); + _val2519.put(_key2522, _val2523); } } - struct.success.put(_key2546, _val2547); + struct.success.put(_key2518, _val2519); } } struct.setSuccessIsSet(true); @@ -276860,15 +276081,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectCcl_result str struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -276877,20 +276093,18 @@ private static S scheme(org.apache. } } - public static class selectCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCclPage_args"); + public static class selectCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectCcl_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCclPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCclPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectCcl_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectCcl_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -276898,10 +276112,9 @@ public static class selectCclPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -363823,13 +362772,17 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // CCL - return CCL; - case 3: // CREDS + case 2: // CRITERIA + return CRITERIA; + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -363880,8 +362833,12 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -363889,22 +362846,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCcl_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaOrderPage_args.class, metaDataMap); } - public selectKeysCcl_args() { + public selectKeysCriteriaOrderPage_args() { } - public selectKeysCcl_args( + public selectKeysCriteriaOrderPage_args( java.util.List keys, - java.lang.String ccl, + com.cinchapi.concourse.thrift.TCriteria criteria, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.ccl = ccl; + this.criteria = criteria; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -363913,13 +362874,19 @@ public selectKeysCcl_args( /** * Performs a deep copy on other. */ - public selectKeysCcl_args(selectKeysCcl_args other) { + public selectKeysCriteriaOrderPage_args(selectKeysCriteriaOrderPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetCcl()) { - this.ccl = other.ccl; + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -363933,14 +362900,16 @@ public selectKeysCcl_args(selectKeysCcl_args other) { } @Override - public selectKeysCcl_args deepCopy() { - return new selectKeysCcl_args(this); + public selectKeysCriteriaOrderPage_args deepCopy() { + return new selectKeysCriteriaOrderPage_args(this); } @Override public void clear() { this.keys = null; - this.ccl = null; + this.criteria = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -363967,7 +362936,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCcl_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -363988,27 +362957,77 @@ public void setKeysIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public selectKeysCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public selectKeysCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeysCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -364017,7 +363036,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -364042,7 +363061,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -364067,7 +363086,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -364098,11 +363117,27 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -364140,8 +363175,14 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -364166,8 +363207,12 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -364180,12 +363225,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCcl_args) - return this.equals((selectKeysCcl_args)that); + if (that instanceof selectKeysCriteriaOrderPage_args) + return this.equals((selectKeysCriteriaOrderPage_args)that); return false; } - public boolean equals(selectKeysCcl_args that) { + public boolean equals(selectKeysCriteriaOrderPage_args that) { if (that == null) return false; if (this == that) @@ -364200,12 +363245,30 @@ public boolean equals(selectKeysCcl_args that) { return false; } - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -364247,9 +363310,17 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -364267,7 +363338,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCcl_args other) { + public int compareTo(selectKeysCriteriaOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -364284,12 +363355,32 @@ public int compareTo(selectKeysCcl_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -364345,7 +363436,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCcl_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -364356,11 +363447,27 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -364394,6 +363501,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -364418,17 +363534,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCcl_argsStandardScheme getScheme() { - return new selectKeysCcl_argsStandardScheme(); + public selectKeysCriteriaOrderPage_argsStandardScheme getScheme() { + return new selectKeysCriteriaOrderPage_argsStandardScheme(); } } - private static class selectKeysCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -364441,13 +363557,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_args case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3664 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3664.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3665; - for (int _i3666 = 0; _i3666 < _list3664.size; ++_i3666) + org.apache.thrift.protocol.TList _list3628 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3628.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3629; + for (int _i3630 = 0; _i3630 < _list3628.size; ++_i3630) { - _elem3665 = iprot.readString(); - struct.keys.add(_elem3665); + _elem3629 = iprot.readString(); + struct.keys.add(_elem3629); } iprot.readListEnd(); } @@ -364456,15 +363572,34 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 2: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -364473,7 +363608,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -364482,7 +363617,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -364502,7 +363637,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -364510,17 +363645,27 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCcl_args oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3667 : struct.keys) + for (java.lang.String _iter3631 : struct.keys) { - oprot.writeString(_iter3667); + oprot.writeString(_iter3631); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -364544,46 +363689,58 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCcl_args } - private static class selectKeysCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCcl_argsTupleScheme getScheme() { - return new selectKeysCcl_argsTupleScheme(); + public selectKeysCriteriaOrderPage_argsTupleScheme getScheme() { + return new selectKeysCriteriaOrderPage_argsTupleScheme(); } } - private static class selectKeysCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3668 : struct.keys) + for (java.lang.String _iter3632 : struct.keys) { - oprot.writeString(_iter3668); + oprot.writeString(_iter3632); } } } - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -364597,37 +363754,48 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3669 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3669.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3670; - for (int _i3671 = 0; _i3671 < _list3669.size; ++_i3671) + org.apache.thrift.protocol.TList _list3633 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3633.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3634; + for (int _i3635 = 0; _i3635 < _list3633.size; ++_i3635) { - _elem3670 = iprot.readString(); - struct.keys.add(_elem3670); + _elem3634 = iprot.readString(); + struct.keys.add(_elem3634); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -364639,31 +363807,28 @@ private static S scheme(org.apache. } } - public static class selectKeysCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCcl_result"); + public static class selectKeysCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCcl_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCcl_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -364687,8 +363852,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -364747,35 +363910,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCcl_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaOrderPage_result.class, metaDataMap); } - public selectKeysCcl_result() { + public selectKeysCriteriaOrderPage_result() { } - public selectKeysCcl_result( + public selectKeysCriteriaOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeysCcl_result(selectKeysCcl_result other) { + public selectKeysCriteriaOrderPage_result(selectKeysCriteriaOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -364812,16 +363971,13 @@ public selectKeysCcl_result(selectKeysCcl_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectKeysCcl_result deepCopy() { - return new selectKeysCcl_result(this); + public selectKeysCriteriaOrderPage_result deepCopy() { + return new selectKeysCriteriaOrderPage_result(this); } @Override @@ -364830,7 +363986,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -364849,7 +364004,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -364874,7 +364029,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -364899,7 +364054,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -364920,11 +364075,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -364944,31 +364099,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectKeysCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -365000,15 +364130,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -365031,9 +364153,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -365054,20 +364173,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCcl_result) - return this.equals((selectKeysCcl_result)that); + if (that instanceof selectKeysCriteriaOrderPage_result) + return this.equals((selectKeysCriteriaOrderPage_result)that); return false; } - public boolean equals(selectKeysCcl_result that) { + public boolean equals(selectKeysCriteriaOrderPage_result that) { if (that == null) return false; if (this == that) @@ -365109,15 +364226,6 @@ public boolean equals(selectKeysCcl_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -365141,15 +364249,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectKeysCcl_result other) { + public int compareTo(selectKeysCriteriaOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -365196,16 +364300,6 @@ public int compareTo(selectKeysCcl_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -365226,7 +364320,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCcl_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaOrderPage_result("); boolean first = true; sb.append("success:"); @@ -365260,14 +364354,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -365293,17 +364379,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCcl_resultStandardScheme getScheme() { - return new selectKeysCcl_resultStandardScheme(); + public selectKeysCriteriaOrderPage_resultStandardScheme getScheme() { + return new selectKeysCriteriaOrderPage_resultStandardScheme(); } } - private static class selectKeysCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -365316,38 +364402,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3672 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3672.size); - long _key3673; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3674; - for (int _i3675 = 0; _i3675 < _map3672.size; ++_i3675) + org.apache.thrift.protocol.TMap _map3636 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3636.size); + long _key3637; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3638; + for (int _i3639 = 0; _i3639 < _map3636.size; ++_i3639) { - _key3673 = iprot.readI64(); + _key3637 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3676 = iprot.readMapBegin(); - _val3674 = new java.util.LinkedHashMap>(2*_map3676.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3677; - @org.apache.thrift.annotation.Nullable java.util.Set _val3678; - for (int _i3679 = 0; _i3679 < _map3676.size; ++_i3679) + org.apache.thrift.protocol.TMap _map3640 = iprot.readMapBegin(); + _val3638 = new java.util.LinkedHashMap>(2*_map3640.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3641; + @org.apache.thrift.annotation.Nullable java.util.Set _val3642; + for (int _i3643 = 0; _i3643 < _map3640.size; ++_i3643) { - _key3677 = iprot.readString(); + _key3641 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3680 = iprot.readSetBegin(); - _val3678 = new java.util.LinkedHashSet(2*_set3680.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3681; - for (int _i3682 = 0; _i3682 < _set3680.size; ++_i3682) + org.apache.thrift.protocol.TSet _set3644 = iprot.readSetBegin(); + _val3642 = new java.util.LinkedHashSet(2*_set3644.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3645; + for (int _i3646 = 0; _i3646 < _set3644.size; ++_i3646) { - _elem3681 = new com.cinchapi.concourse.thrift.TObject(); - _elem3681.read(iprot); - _val3678.add(_elem3681); + _elem3645 = new com.cinchapi.concourse.thrift.TObject(); + _elem3645.read(iprot); + _val3642.add(_elem3645); } iprot.readSetEnd(); } - _val3674.put(_key3677, _val3678); + _val3638.put(_key3641, _val3642); } iprot.readMapEnd(); } - struct.success.put(_key3673, _val3674); + struct.success.put(_key3637, _val3638); } iprot.readMapEnd(); } @@ -365376,22 +364462,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_resul break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -365404,7 +364481,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -365412,19 +364489,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCcl_resu oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3683 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3647 : struct.success.entrySet()) { - oprot.writeI64(_iter3683.getKey()); + oprot.writeI64(_iter3647.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3683.getValue().size())); - for (java.util.Map.Entry> _iter3684 : _iter3683.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3647.getValue().size())); + for (java.util.Map.Entry> _iter3648 : _iter3647.getValue().entrySet()) { - oprot.writeString(_iter3684.getKey()); + oprot.writeString(_iter3648.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3684.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3685 : _iter3684.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3648.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3649 : _iter3648.getValue()) { - _iter3685.write(oprot); + _iter3649.write(oprot); } oprot.writeSetEnd(); } @@ -365451,28 +364528,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCcl_resu struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeysCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCcl_resultTupleScheme getScheme() { - return new selectKeysCcl_resultTupleScheme(); + public selectKeysCriteriaOrderPage_resultTupleScheme getScheme() { + return new selectKeysCriteriaOrderPage_resultTupleScheme(); } } - private static class selectKeysCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -365487,26 +364559,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_resul if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3686 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3650 : struct.success.entrySet()) { - oprot.writeI64(_iter3686.getKey()); + oprot.writeI64(_iter3650.getKey()); { - oprot.writeI32(_iter3686.getValue().size()); - for (java.util.Map.Entry> _iter3687 : _iter3686.getValue().entrySet()) + oprot.writeI32(_iter3650.getValue().size()); + for (java.util.Map.Entry> _iter3651 : _iter3650.getValue().entrySet()) { - oprot.writeString(_iter3687.getKey()); + oprot.writeString(_iter3651.getKey()); { - oprot.writeI32(_iter3687.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3688 : _iter3687.getValue()) + oprot.writeI32(_iter3651.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3652 : _iter3651.getValue()) { - _iter3688.write(oprot); + _iter3652.write(oprot); } } } @@ -365523,47 +364592,44 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_resul if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3689 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3689.size); - long _key3690; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3691; - for (int _i3692 = 0; _i3692 < _map3689.size; ++_i3692) + org.apache.thrift.protocol.TMap _map3653 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3653.size); + long _key3654; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3655; + for (int _i3656 = 0; _i3656 < _map3653.size; ++_i3656) { - _key3690 = iprot.readI64(); + _key3654 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3693 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3691 = new java.util.LinkedHashMap>(2*_map3693.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3694; - @org.apache.thrift.annotation.Nullable java.util.Set _val3695; - for (int _i3696 = 0; _i3696 < _map3693.size; ++_i3696) + org.apache.thrift.protocol.TMap _map3657 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3655 = new java.util.LinkedHashMap>(2*_map3657.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3658; + @org.apache.thrift.annotation.Nullable java.util.Set _val3659; + for (int _i3660 = 0; _i3660 < _map3657.size; ++_i3660) { - _key3694 = iprot.readString(); + _key3658 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3697 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3695 = new java.util.LinkedHashSet(2*_set3697.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3698; - for (int _i3699 = 0; _i3699 < _set3697.size; ++_i3699) + org.apache.thrift.protocol.TSet _set3661 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3659 = new java.util.LinkedHashSet(2*_set3661.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3662; + for (int _i3663 = 0; _i3663 < _set3661.size; ++_i3663) { - _elem3698 = new com.cinchapi.concourse.thrift.TObject(); - _elem3698.read(iprot); - _val3695.add(_elem3698); + _elem3662 = new com.cinchapi.concourse.thrift.TObject(); + _elem3662.read(iprot); + _val3659.add(_elem3662); } } - _val3691.put(_key3694, _val3695); + _val3655.put(_key3658, _val3659); } } - struct.success.put(_key3690, _val3691); + struct.success.put(_key3654, _val3655); } } struct.setSuccessIsSet(true); @@ -365579,15 +364645,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_result struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -365596,22 +364657,20 @@ private static S scheme(org.apache. } } - public static class selectKeysCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclPage_args"); + public static class selectKeysCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCcl_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCcl_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCcl_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -365620,10 +364679,9 @@ public static class selectKeysCclPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -365643,13 +364701,11 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // CCL return CCL; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -365702,8 +364758,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -365711,16 +364765,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCcl_args.class, metaDataMap); } - public selectKeysCclPage_args() { + public selectKeysCcl_args() { } - public selectKeysCclPage_args( + public selectKeysCcl_args( java.util.List keys, java.lang.String ccl, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -365728,7 +364781,6 @@ public selectKeysCclPage_args( this(); this.keys = keys; this.ccl = ccl; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -365737,7 +364789,7 @@ public selectKeysCclPage_args( /** * Performs a deep copy on other. */ - public selectKeysCclPage_args(selectKeysCclPage_args other) { + public selectKeysCcl_args(selectKeysCcl_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -365745,9 +364797,6 @@ public selectKeysCclPage_args(selectKeysCclPage_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -365760,15 +364809,14 @@ public selectKeysCclPage_args(selectKeysCclPage_args other) { } @Override - public selectKeysCclPage_args deepCopy() { - return new selectKeysCclPage_args(this); + public selectKeysCcl_args deepCopy() { + return new selectKeysCcl_args(this); } @Override public void clear() { this.keys = null; this.ccl = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -365795,7 +364843,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCcl_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -365820,7 +364868,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -365840,37 +364888,12 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -365895,7 +364918,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -365920,7 +364943,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -365959,14 +364982,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -366004,9 +365019,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -366032,8 +365044,6 @@ public boolean isSet(_Fields field) { return isSetKeys(); case CCL: return isSetCcl(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -366046,12 +365056,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclPage_args) - return this.equals((selectKeysCclPage_args)that); + if (that instanceof selectKeysCcl_args) + return this.equals((selectKeysCcl_args)that); return false; } - public boolean equals(selectKeysCclPage_args that) { + public boolean equals(selectKeysCcl_args that) { if (that == null) return false; if (this == that) @@ -366075,15 +365085,6 @@ public boolean equals(selectKeysCclPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -366126,10 +365127,6 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -366146,7 +365143,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclPage_args other) { + public int compareTo(selectKeysCcl_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -366173,16 +365170,6 @@ public int compareTo(selectKeysCclPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -366234,7 +365221,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCcl_args("); boolean first = true; sb.append("keys:"); @@ -366253,14 +365240,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -366291,9 +365270,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -366318,17 +365294,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclPage_argsStandardScheme getScheme() { - return new selectKeysCclPage_argsStandardScheme(); + public selectKeysCcl_argsStandardScheme getScheme() { + return new selectKeysCcl_argsStandardScheme(); } } - private static class selectKeysCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -366341,13 +365317,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_a case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3700 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3700.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3701; - for (int _i3702 = 0; _i3702 < _list3700.size; ++_i3702) + org.apache.thrift.protocol.TList _list3664 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3664.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3665; + for (int _i3666 = 0; _i3666 < _list3664.size; ++_i3666) { - _elem3701 = iprot.readString(); - struct.keys.add(_elem3701); + _elem3665 = iprot.readString(); + struct.keys.add(_elem3665); } iprot.readListEnd(); } @@ -366364,16 +365340,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -366382,7 +365349,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -366391,7 +365358,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -366411,7 +365378,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCcl_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -366419,9 +365386,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_ oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3703 : struct.keys) + for (java.lang.String _iter3667 : struct.keys) { - oprot.writeString(_iter3703); + oprot.writeString(_iter3667); } oprot.writeListEnd(); } @@ -366432,11 +365399,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_ oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -366458,17 +365420,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_ } - private static class selectKeysCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclPage_argsTupleScheme getScheme() { - return new selectKeysCclPage_argsTupleScheme(); + public selectKeysCcl_argsTupleScheme getScheme() { + return new selectKeysCcl_argsTupleScheme(); } } - private static class selectKeysCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -366477,34 +365439,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_a if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3704 : struct.keys) + for (java.lang.String _iter3668 : struct.keys) { - oprot.writeString(_iter3704); + oprot.writeString(_iter3668); } } } if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -366517,18 +365473,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3705 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3705.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3706; - for (int _i3707 = 0; _i3707 < _list3705.size; ++_i3707) + org.apache.thrift.protocol.TList _list3669 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3669.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3670; + for (int _i3671 = 0; _i3671 < _list3669.size; ++_i3671) { - _elem3706 = iprot.readString(); - struct.keys.add(_elem3706); + _elem3670 = iprot.readString(); + struct.keys.add(_elem3670); } } struct.setKeysIsSet(true); @@ -366538,21 +365494,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_ar struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -366564,8 +365515,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclPage_result"); + public static class selectKeysCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCcl_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -366573,8 +365524,8 @@ public static class selectKeysCclPage_result implements org.apache.thrift.TBase< private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCcl_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCcl_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -366676,13 +365627,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCcl_result.class, metaDataMap); } - public selectKeysCclPage_result() { + public selectKeysCcl_result() { } - public selectKeysCclPage_result( + public selectKeysCcl_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -366700,7 +365651,7 @@ public selectKeysCclPage_result( /** * Performs a deep copy on other. */ - public selectKeysCclPage_result(selectKeysCclPage_result other) { + public selectKeysCcl_result(selectKeysCcl_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -366745,8 +365696,8 @@ public selectKeysCclPage_result(selectKeysCclPage_result other) { } @Override - public selectKeysCclPage_result deepCopy() { - return new selectKeysCclPage_result(this); + public selectKeysCcl_result deepCopy() { + return new selectKeysCcl_result(this); } @Override @@ -366774,7 +365725,7 @@ public java.util.Map>> success) { + public selectKeysCcl_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -366799,7 +365750,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -366824,7 +365775,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -366849,7 +365800,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -366874,7 +365825,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -366987,12 +365938,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclPage_result) - return this.equals((selectKeysCclPage_result)that); + if (that instanceof selectKeysCcl_result) + return this.equals((selectKeysCcl_result)that); return false; } - public boolean equals(selectKeysCclPage_result that) { + public boolean equals(selectKeysCcl_result that) { if (that == null) return false; if (this == that) @@ -367074,7 +366025,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclPage_result other) { + public int compareTo(selectKeysCcl_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -367151,7 +366102,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCcl_result("); boolean first = true; sb.append("success:"); @@ -367218,17 +366169,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclPage_resultStandardScheme getScheme() { - return new selectKeysCclPage_resultStandardScheme(); + public selectKeysCcl_resultStandardScheme getScheme() { + return new selectKeysCcl_resultStandardScheme(); } } - private static class selectKeysCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -367241,38 +366192,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3708 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3708.size); - long _key3709; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3710; - for (int _i3711 = 0; _i3711 < _map3708.size; ++_i3711) + org.apache.thrift.protocol.TMap _map3672 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3672.size); + long _key3673; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3674; + for (int _i3675 = 0; _i3675 < _map3672.size; ++_i3675) { - _key3709 = iprot.readI64(); + _key3673 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3712 = iprot.readMapBegin(); - _val3710 = new java.util.LinkedHashMap>(2*_map3712.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3713; - @org.apache.thrift.annotation.Nullable java.util.Set _val3714; - for (int _i3715 = 0; _i3715 < _map3712.size; ++_i3715) + org.apache.thrift.protocol.TMap _map3676 = iprot.readMapBegin(); + _val3674 = new java.util.LinkedHashMap>(2*_map3676.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3677; + @org.apache.thrift.annotation.Nullable java.util.Set _val3678; + for (int _i3679 = 0; _i3679 < _map3676.size; ++_i3679) { - _key3713 = iprot.readString(); + _key3677 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3716 = iprot.readSetBegin(); - _val3714 = new java.util.LinkedHashSet(2*_set3716.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3717; - for (int _i3718 = 0; _i3718 < _set3716.size; ++_i3718) + org.apache.thrift.protocol.TSet _set3680 = iprot.readSetBegin(); + _val3678 = new java.util.LinkedHashSet(2*_set3680.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3681; + for (int _i3682 = 0; _i3682 < _set3680.size; ++_i3682) { - _elem3717 = new com.cinchapi.concourse.thrift.TObject(); - _elem3717.read(iprot); - _val3714.add(_elem3717); + _elem3681 = new com.cinchapi.concourse.thrift.TObject(); + _elem3681.read(iprot); + _val3678.add(_elem3681); } iprot.readSetEnd(); } - _val3710.put(_key3713, _val3714); + _val3674.put(_key3677, _val3678); } iprot.readMapEnd(); } - struct.success.put(_key3709, _val3710); + struct.success.put(_key3673, _val3674); } iprot.readMapEnd(); } @@ -367329,7 +366280,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCcl_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -367337,19 +366288,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3719 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3683 : struct.success.entrySet()) { - oprot.writeI64(_iter3719.getKey()); + oprot.writeI64(_iter3683.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3719.getValue().size())); - for (java.util.Map.Entry> _iter3720 : _iter3719.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3683.getValue().size())); + for (java.util.Map.Entry> _iter3684 : _iter3683.getValue().entrySet()) { - oprot.writeString(_iter3720.getKey()); + oprot.writeString(_iter3684.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3720.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3721 : _iter3720.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3684.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3685 : _iter3684.getValue()) { - _iter3721.write(oprot); + _iter3685.write(oprot); } oprot.writeSetEnd(); } @@ -367387,17 +366338,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_ } - private static class selectKeysCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclPage_resultTupleScheme getScheme() { - return new selectKeysCclPage_resultTupleScheme(); + public selectKeysCcl_resultTupleScheme getScheme() { + return new selectKeysCcl_resultTupleScheme(); } } - private static class selectKeysCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -367419,19 +366370,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3722 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3686 : struct.success.entrySet()) { - oprot.writeI64(_iter3722.getKey()); + oprot.writeI64(_iter3686.getKey()); { - oprot.writeI32(_iter3722.getValue().size()); - for (java.util.Map.Entry> _iter3723 : _iter3722.getValue().entrySet()) + oprot.writeI32(_iter3686.getValue().size()); + for (java.util.Map.Entry> _iter3687 : _iter3686.getValue().entrySet()) { - oprot.writeString(_iter3723.getKey()); + oprot.writeString(_iter3687.getKey()); { - oprot.writeI32(_iter3723.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3724 : _iter3723.getValue()) + oprot.writeI32(_iter3687.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3688 : _iter3687.getValue()) { - _iter3724.write(oprot); + _iter3688.write(oprot); } } } @@ -367454,41 +366405,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3725 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3725.size); - long _key3726; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3727; - for (int _i3728 = 0; _i3728 < _map3725.size; ++_i3728) + org.apache.thrift.protocol.TMap _map3689 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3689.size); + long _key3690; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3691; + for (int _i3692 = 0; _i3692 < _map3689.size; ++_i3692) { - _key3726 = iprot.readI64(); + _key3690 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3729 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3727 = new java.util.LinkedHashMap>(2*_map3729.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3730; - @org.apache.thrift.annotation.Nullable java.util.Set _val3731; - for (int _i3732 = 0; _i3732 < _map3729.size; ++_i3732) + org.apache.thrift.protocol.TMap _map3693 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3691 = new java.util.LinkedHashMap>(2*_map3693.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3694; + @org.apache.thrift.annotation.Nullable java.util.Set _val3695; + for (int _i3696 = 0; _i3696 < _map3693.size; ++_i3696) { - _key3730 = iprot.readString(); + _key3694 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3733 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3731 = new java.util.LinkedHashSet(2*_set3733.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3734; - for (int _i3735 = 0; _i3735 < _set3733.size; ++_i3735) + org.apache.thrift.protocol.TSet _set3697 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3695 = new java.util.LinkedHashSet(2*_set3697.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3698; + for (int _i3699 = 0; _i3699 < _set3697.size; ++_i3699) { - _elem3734 = new com.cinchapi.concourse.thrift.TObject(); - _elem3734.read(iprot); - _val3731.add(_elem3734); + _elem3698 = new com.cinchapi.concourse.thrift.TObject(); + _elem3698.read(iprot); + _val3695.add(_elem3698); } } - _val3727.put(_key3730, _val3731); + _val3691.put(_key3694, _val3695); } } - struct.success.put(_key3726, _val3727); + struct.success.put(_key3690, _val3691); } } struct.setSuccessIsSet(true); @@ -367521,22 +366472,22 @@ private static S scheme(org.apache. } } - public static class selectKeysCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclOrder_args"); + public static class selectKeysCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -367545,7 +366496,7 @@ public static class selectKeysCclOrder_args implements org.apache.thrift.TBase keys, java.lang.String ccl, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -367653,7 +366604,7 @@ public selectKeysCclOrder_args( this(); this.keys = keys; this.ccl = ccl; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -367662,7 +366613,7 @@ public selectKeysCclOrder_args( /** * Performs a deep copy on other. */ - public selectKeysCclOrder_args(selectKeysCclOrder_args other) { + public selectKeysCclPage_args(selectKeysCclPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -367670,8 +366621,8 @@ public selectKeysCclOrder_args(selectKeysCclOrder_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -367685,15 +366636,15 @@ public selectKeysCclOrder_args(selectKeysCclOrder_args other) { } @Override - public selectKeysCclOrder_args deepCopy() { - return new selectKeysCclOrder_args(this); + public selectKeysCclPage_args deepCopy() { + return new selectKeysCclPage_args(this); } @Override public void clear() { this.keys = null; this.ccl = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -367720,7 +366671,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -367745,7 +366696,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -367766,27 +366717,27 @@ public void setCclIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeysCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeysCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -367795,7 +366746,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -367820,7 +366771,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -367845,7 +366796,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -367884,11 +366835,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -367929,8 +366880,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -367957,8 +366908,8 @@ public boolean isSet(_Fields field) { return isSetKeys(); case CCL: return isSetCcl(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -367971,12 +366922,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclOrder_args) - return this.equals((selectKeysCclOrder_args)that); + if (that instanceof selectKeysCclPage_args) + return this.equals((selectKeysCclPage_args)that); return false; } - public boolean equals(selectKeysCclOrder_args that) { + public boolean equals(selectKeysCclPage_args that) { if (that == null) return false; if (this == that) @@ -368000,12 +366951,12 @@ public boolean equals(selectKeysCclOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -368051,9 +367002,9 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -368071,7 +367022,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclOrder_args other) { + public int compareTo(selectKeysCclPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -368098,12 +367049,12 @@ public int compareTo(selectKeysCclOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -368159,7 +367110,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclPage_args("); boolean first = true; sb.append("keys:"); @@ -368178,11 +367129,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -368216,8 +367167,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -368243,17 +367194,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclOrder_argsStandardScheme getScheme() { - return new selectKeysCclOrder_argsStandardScheme(); + public selectKeysCclPage_argsStandardScheme getScheme() { + return new selectKeysCclPage_argsStandardScheme(); } } - private static class selectKeysCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -368266,13 +367217,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_ case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3736 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3736.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3737; - for (int _i3738 = 0; _i3738 < _list3736.size; ++_i3738) + org.apache.thrift.protocol.TList _list3700 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3700.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3701; + for (int _i3702 = 0; _i3702 < _list3700.size; ++_i3702) { - _elem3737 = iprot.readString(); - struct.keys.add(_elem3737); + _elem3701 = iprot.readString(); + struct.keys.add(_elem3701); } iprot.readListEnd(); } @@ -368289,11 +367240,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -368336,7 +367287,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -368344,9 +367295,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3739 : struct.keys) + for (java.lang.String _iter3703 : struct.keys) { - oprot.writeString(_iter3739); + oprot.writeString(_iter3703); } oprot.writeListEnd(); } @@ -368357,9 +367308,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -368383,17 +367334,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder } - private static class selectKeysCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclOrder_argsTupleScheme getScheme() { - return new selectKeysCclOrder_argsTupleScheme(); + public selectKeysCclPage_argsTupleScheme getScheme() { + return new selectKeysCclPage_argsTupleScheme(); } } - private static class selectKeysCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -368402,7 +367353,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_ if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -368418,17 +367369,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_ if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3740 : struct.keys) + for (java.lang.String _iter3704 : struct.keys) { - oprot.writeString(_iter3740); + oprot.writeString(_iter3704); } } } if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -368442,18 +367393,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3741 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3741.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3742; - for (int _i3743 = 0; _i3743 < _list3741.size; ++_i3743) + org.apache.thrift.protocol.TList _list3705 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3705.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3706; + for (int _i3707 = 0; _i3707 < _list3705.size; ++_i3707) { - _elem3742 = iprot.readString(); - struct.keys.add(_elem3742); + _elem3706 = iprot.readString(); + struct.keys.add(_elem3706); } } struct.setKeysIsSet(true); @@ -368463,9 +367414,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_a struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -368489,8 +367440,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclOrder_result"); + public static class selectKeysCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -368498,8 +367449,8 @@ public static class selectKeysCclOrder_result implements org.apache.thrift.TBase private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -368601,13 +367552,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclPage_result.class, metaDataMap); } - public selectKeysCclOrder_result() { + public selectKeysCclPage_result() { } - public selectKeysCclOrder_result( + public selectKeysCclPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -368625,7 +367576,7 @@ public selectKeysCclOrder_result( /** * Performs a deep copy on other. */ - public selectKeysCclOrder_result(selectKeysCclOrder_result other) { + public selectKeysCclPage_result(selectKeysCclPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -368670,8 +367621,8 @@ public selectKeysCclOrder_result(selectKeysCclOrder_result other) { } @Override - public selectKeysCclOrder_result deepCopy() { - return new selectKeysCclOrder_result(this); + public selectKeysCclPage_result deepCopy() { + return new selectKeysCclPage_result(this); } @Override @@ -368699,7 +367650,7 @@ public java.util.Map>> success) { + public selectKeysCclPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -368724,7 +367675,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -368749,7 +367700,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -368774,7 +367725,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -368799,7 +367750,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -368912,12 +367863,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclOrder_result) - return this.equals((selectKeysCclOrder_result)that); + if (that instanceof selectKeysCclPage_result) + return this.equals((selectKeysCclPage_result)that); return false; } - public boolean equals(selectKeysCclOrder_result that) { + public boolean equals(selectKeysCclPage_result that) { if (that == null) return false; if (this == that) @@ -368999,7 +367950,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclOrder_result other) { + public int compareTo(selectKeysCclPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -369076,7 +368027,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclPage_result("); boolean first = true; sb.append("success:"); @@ -369143,17 +368094,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclOrder_resultStandardScheme getScheme() { - return new selectKeysCclOrder_resultStandardScheme(); + public selectKeysCclPage_resultStandardScheme getScheme() { + return new selectKeysCclPage_resultStandardScheme(); } } - private static class selectKeysCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -369166,38 +368117,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3744 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3744.size); - long _key3745; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3746; - for (int _i3747 = 0; _i3747 < _map3744.size; ++_i3747) + org.apache.thrift.protocol.TMap _map3708 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3708.size); + long _key3709; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3710; + for (int _i3711 = 0; _i3711 < _map3708.size; ++_i3711) { - _key3745 = iprot.readI64(); + _key3709 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3748 = iprot.readMapBegin(); - _val3746 = new java.util.LinkedHashMap>(2*_map3748.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3749; - @org.apache.thrift.annotation.Nullable java.util.Set _val3750; - for (int _i3751 = 0; _i3751 < _map3748.size; ++_i3751) + org.apache.thrift.protocol.TMap _map3712 = iprot.readMapBegin(); + _val3710 = new java.util.LinkedHashMap>(2*_map3712.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3713; + @org.apache.thrift.annotation.Nullable java.util.Set _val3714; + for (int _i3715 = 0; _i3715 < _map3712.size; ++_i3715) { - _key3749 = iprot.readString(); + _key3713 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3752 = iprot.readSetBegin(); - _val3750 = new java.util.LinkedHashSet(2*_set3752.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3753; - for (int _i3754 = 0; _i3754 < _set3752.size; ++_i3754) + org.apache.thrift.protocol.TSet _set3716 = iprot.readSetBegin(); + _val3714 = new java.util.LinkedHashSet(2*_set3716.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3717; + for (int _i3718 = 0; _i3718 < _set3716.size; ++_i3718) { - _elem3753 = new com.cinchapi.concourse.thrift.TObject(); - _elem3753.read(iprot); - _val3750.add(_elem3753); + _elem3717 = new com.cinchapi.concourse.thrift.TObject(); + _elem3717.read(iprot); + _val3714.add(_elem3717); } iprot.readSetEnd(); } - _val3746.put(_key3749, _val3750); + _val3710.put(_key3713, _val3714); } iprot.readMapEnd(); } - struct.success.put(_key3745, _val3746); + struct.success.put(_key3709, _val3710); } iprot.readMapEnd(); } @@ -369254,7 +368205,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -369262,19 +368213,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3755 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3719 : struct.success.entrySet()) { - oprot.writeI64(_iter3755.getKey()); + oprot.writeI64(_iter3719.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3755.getValue().size())); - for (java.util.Map.Entry> _iter3756 : _iter3755.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3719.getValue().size())); + for (java.util.Map.Entry> _iter3720 : _iter3719.getValue().entrySet()) { - oprot.writeString(_iter3756.getKey()); + oprot.writeString(_iter3720.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3756.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3757 : _iter3756.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3720.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3721 : _iter3720.getValue()) { - _iter3757.write(oprot); + _iter3721.write(oprot); } oprot.writeSetEnd(); } @@ -369312,17 +368263,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder } - private static class selectKeysCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclOrder_resultTupleScheme getScheme() { - return new selectKeysCclOrder_resultTupleScheme(); + public selectKeysCclPage_resultTupleScheme getScheme() { + return new selectKeysCclPage_resultTupleScheme(); } } - private static class selectKeysCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -369344,19 +368295,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3758 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3722 : struct.success.entrySet()) { - oprot.writeI64(_iter3758.getKey()); + oprot.writeI64(_iter3722.getKey()); { - oprot.writeI32(_iter3758.getValue().size()); - for (java.util.Map.Entry> _iter3759 : _iter3758.getValue().entrySet()) + oprot.writeI32(_iter3722.getValue().size()); + for (java.util.Map.Entry> _iter3723 : _iter3722.getValue().entrySet()) { - oprot.writeString(_iter3759.getKey()); + oprot.writeString(_iter3723.getKey()); { - oprot.writeI32(_iter3759.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3760 : _iter3759.getValue()) + oprot.writeI32(_iter3723.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3724 : _iter3723.getValue()) { - _iter3760.write(oprot); + _iter3724.write(oprot); } } } @@ -369379,41 +368330,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3761 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3761.size); - long _key3762; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3763; - for (int _i3764 = 0; _i3764 < _map3761.size; ++_i3764) + org.apache.thrift.protocol.TMap _map3725 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3725.size); + long _key3726; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3727; + for (int _i3728 = 0; _i3728 < _map3725.size; ++_i3728) { - _key3762 = iprot.readI64(); + _key3726 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3765 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3763 = new java.util.LinkedHashMap>(2*_map3765.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3766; - @org.apache.thrift.annotation.Nullable java.util.Set _val3767; - for (int _i3768 = 0; _i3768 < _map3765.size; ++_i3768) + org.apache.thrift.protocol.TMap _map3729 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3727 = new java.util.LinkedHashMap>(2*_map3729.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3730; + @org.apache.thrift.annotation.Nullable java.util.Set _val3731; + for (int _i3732 = 0; _i3732 < _map3729.size; ++_i3732) { - _key3766 = iprot.readString(); + _key3730 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3769 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3767 = new java.util.LinkedHashSet(2*_set3769.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3770; - for (int _i3771 = 0; _i3771 < _set3769.size; ++_i3771) + org.apache.thrift.protocol.TSet _set3733 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3731 = new java.util.LinkedHashSet(2*_set3733.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3734; + for (int _i3735 = 0; _i3735 < _set3733.size; ++_i3735) { - _elem3770 = new com.cinchapi.concourse.thrift.TObject(); - _elem3770.read(iprot); - _val3767.add(_elem3770); + _elem3734 = new com.cinchapi.concourse.thrift.TObject(); + _elem3734.read(iprot); + _val3731.add(_elem3734); } } - _val3763.put(_key3766, _val3767); + _val3727.put(_key3730, _val3731); } } - struct.success.put(_key3762, _val3763); + struct.success.put(_key3726, _val3727); } } struct.setSuccessIsSet(true); @@ -369446,24 +368397,22 @@ private static S scheme(org.apache. } } - public static class selectKeysCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclOrderPage_args"); + public static class selectKeysCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -369473,10 +368422,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -369498,13 +368446,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -369559,8 +368505,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -369568,17 +368512,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclOrder_args.class, metaDataMap); } - public selectKeysCclOrderPage_args() { + public selectKeysCclOrder_args() { } - public selectKeysCclOrderPage_args( + public selectKeysCclOrder_args( java.util.List keys, java.lang.String ccl, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -369587,7 +368530,6 @@ public selectKeysCclOrderPage_args( this.keys = keys; this.ccl = ccl; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -369596,7 +368538,7 @@ public selectKeysCclOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeysCclOrderPage_args(selectKeysCclOrderPage_args other) { + public selectKeysCclOrder_args(selectKeysCclOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -369607,9 +368549,6 @@ public selectKeysCclOrderPage_args(selectKeysCclOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -369622,8 +368561,8 @@ public selectKeysCclOrderPage_args(selectKeysCclOrderPage_args other) { } @Override - public selectKeysCclOrderPage_args deepCopy() { - return new selectKeysCclOrderPage_args(this); + public selectKeysCclOrder_args deepCopy() { + return new selectKeysCclOrder_args(this); } @Override @@ -369631,7 +368570,6 @@ public void clear() { this.keys = null; this.ccl = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -369658,7 +368596,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -369683,7 +368621,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -369708,7 +368646,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeysCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeysCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -369728,37 +368666,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -369783,7 +368696,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -369808,7 +368721,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -369855,14 +368768,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -369903,9 +368808,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -369933,8 +368835,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -369947,12 +368847,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclOrderPage_args) - return this.equals((selectKeysCclOrderPage_args)that); + if (that instanceof selectKeysCclOrder_args) + return this.equals((selectKeysCclOrder_args)that); return false; } - public boolean equals(selectKeysCclOrderPage_args that) { + public boolean equals(selectKeysCclOrder_args that) { if (that == null) return false; if (this == that) @@ -369985,15 +368885,6 @@ public boolean equals(selectKeysCclOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -370040,10 +368931,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -370060,7 +368947,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclOrderPage_args other) { + public int compareTo(selectKeysCclOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -370097,16 +368984,6 @@ public int compareTo(selectKeysCclOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -370158,7 +369035,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclOrder_args("); boolean first = true; sb.append("keys:"); @@ -370185,14 +369062,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -370226,9 +369095,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -370253,17 +369119,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclOrderPage_argsStandardScheme getScheme() { - return new selectKeysCclOrderPage_argsStandardScheme(); + public selectKeysCclOrder_argsStandardScheme getScheme() { + return new selectKeysCclOrder_argsStandardScheme(); } } - private static class selectKeysCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -370276,13 +369142,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderP case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3772 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3772.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3773; - for (int _i3774 = 0; _i3774 < _list3772.size; ++_i3774) + org.apache.thrift.protocol.TList _list3736 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3736.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3737; + for (int _i3738 = 0; _i3738 < _list3736.size; ++_i3738) { - _elem3773 = iprot.readString(); - struct.keys.add(_elem3773); + _elem3737 = iprot.readString(); + struct.keys.add(_elem3737); } iprot.readListEnd(); } @@ -370308,16 +369174,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -370326,7 +369183,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -370335,7 +369192,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -370355,7 +369212,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -370363,9 +369220,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3775 : struct.keys) + for (java.lang.String _iter3739 : struct.keys) { - oprot.writeString(_iter3775); + oprot.writeString(_iter3739); } oprot.writeListEnd(); } @@ -370381,11 +369238,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -370407,17 +369259,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder } - private static class selectKeysCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclOrderPage_argsTupleScheme getScheme() { - return new selectKeysCclOrderPage_argsTupleScheme(); + public selectKeysCclOrder_argsTupleScheme getScheme() { + return new selectKeysCclOrder_argsTupleScheme(); } } - private static class selectKeysCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -370429,25 +369281,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderP if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3776 : struct.keys) + for (java.lang.String _iter3740 : struct.keys) { - oprot.writeString(_iter3776); + oprot.writeString(_iter3740); } } } @@ -370457,9 +369306,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderP if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -370472,18 +369318,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3777 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3777.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3778; - for (int _i3779 = 0; _i3779 < _list3777.size; ++_i3779) + org.apache.thrift.protocol.TList _list3741 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3741.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3742; + for (int _i3743 = 0; _i3743 < _list3741.size; ++_i3743) { - _elem3778 = iprot.readString(); - struct.keys.add(_elem3778); + _elem3742 = iprot.readString(); + struct.keys.add(_elem3742); } } struct.setKeysIsSet(true); @@ -370498,21 +369344,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPa struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -370524,8 +369365,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclOrderPage_result"); + public static class selectKeysCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -370533,8 +369374,8 @@ public static class selectKeysCclOrderPage_result implements org.apache.thrift.T private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -370636,13 +369477,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclOrder_result.class, metaDataMap); } - public selectKeysCclOrderPage_result() { + public selectKeysCclOrder_result() { } - public selectKeysCclOrderPage_result( + public selectKeysCclOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -370660,7 +369501,7 @@ public selectKeysCclOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeysCclOrderPage_result(selectKeysCclOrderPage_result other) { + public selectKeysCclOrder_result(selectKeysCclOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -370705,8 +369546,8 @@ public selectKeysCclOrderPage_result(selectKeysCclOrderPage_result other) { } @Override - public selectKeysCclOrderPage_result deepCopy() { - return new selectKeysCclOrderPage_result(this); + public selectKeysCclOrder_result deepCopy() { + return new selectKeysCclOrder_result(this); } @Override @@ -370734,7 +369575,7 @@ public java.util.Map>> success) { + public selectKeysCclOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -370759,7 +369600,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -370784,7 +369625,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -370809,7 +369650,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -370834,7 +369675,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -370947,12 +369788,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclOrderPage_result) - return this.equals((selectKeysCclOrderPage_result)that); + if (that instanceof selectKeysCclOrder_result) + return this.equals((selectKeysCclOrder_result)that); return false; } - public boolean equals(selectKeysCclOrderPage_result that) { + public boolean equals(selectKeysCclOrder_result that) { if (that == null) return false; if (this == that) @@ -371034,7 +369875,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclOrderPage_result other) { + public int compareTo(selectKeysCclOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -371111,7 +369952,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclOrder_result("); boolean first = true; sb.append("success:"); @@ -371178,17 +370019,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclOrderPage_resultStandardScheme getScheme() { - return new selectKeysCclOrderPage_resultStandardScheme(); + public selectKeysCclOrder_resultStandardScheme getScheme() { + return new selectKeysCclOrder_resultStandardScheme(); } } - private static class selectKeysCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -371201,38 +370042,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderP case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3780 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3780.size); - long _key3781; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3782; - for (int _i3783 = 0; _i3783 < _map3780.size; ++_i3783) + org.apache.thrift.protocol.TMap _map3744 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3744.size); + long _key3745; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3746; + for (int _i3747 = 0; _i3747 < _map3744.size; ++_i3747) { - _key3781 = iprot.readI64(); + _key3745 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3784 = iprot.readMapBegin(); - _val3782 = new java.util.LinkedHashMap>(2*_map3784.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3785; - @org.apache.thrift.annotation.Nullable java.util.Set _val3786; - for (int _i3787 = 0; _i3787 < _map3784.size; ++_i3787) + org.apache.thrift.protocol.TMap _map3748 = iprot.readMapBegin(); + _val3746 = new java.util.LinkedHashMap>(2*_map3748.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3749; + @org.apache.thrift.annotation.Nullable java.util.Set _val3750; + for (int _i3751 = 0; _i3751 < _map3748.size; ++_i3751) { - _key3785 = iprot.readString(); + _key3749 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3788 = iprot.readSetBegin(); - _val3786 = new java.util.LinkedHashSet(2*_set3788.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3789; - for (int _i3790 = 0; _i3790 < _set3788.size; ++_i3790) + org.apache.thrift.protocol.TSet _set3752 = iprot.readSetBegin(); + _val3750 = new java.util.LinkedHashSet(2*_set3752.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3753; + for (int _i3754 = 0; _i3754 < _set3752.size; ++_i3754) { - _elem3789 = new com.cinchapi.concourse.thrift.TObject(); - _elem3789.read(iprot); - _val3786.add(_elem3789); + _elem3753 = new com.cinchapi.concourse.thrift.TObject(); + _elem3753.read(iprot); + _val3750.add(_elem3753); } iprot.readSetEnd(); } - _val3782.put(_key3785, _val3786); + _val3746.put(_key3749, _val3750); } iprot.readMapEnd(); } - struct.success.put(_key3781, _val3782); + struct.success.put(_key3745, _val3746); } iprot.readMapEnd(); } @@ -371289,7 +370130,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -371297,19 +370138,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3791 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3755 : struct.success.entrySet()) { - oprot.writeI64(_iter3791.getKey()); + oprot.writeI64(_iter3755.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3791.getValue().size())); - for (java.util.Map.Entry> _iter3792 : _iter3791.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3755.getValue().size())); + for (java.util.Map.Entry> _iter3756 : _iter3755.getValue().entrySet()) { - oprot.writeString(_iter3792.getKey()); + oprot.writeString(_iter3756.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3792.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3793 : _iter3792.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3756.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3757 : _iter3756.getValue()) { - _iter3793.write(oprot); + _iter3757.write(oprot); } oprot.writeSetEnd(); } @@ -371347,17 +370188,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrder } - private static class selectKeysCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclOrderPage_resultTupleScheme getScheme() { - return new selectKeysCclOrderPage_resultTupleScheme(); + public selectKeysCclOrder_resultTupleScheme getScheme() { + return new selectKeysCclOrder_resultTupleScheme(); } } - private static class selectKeysCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -371379,19 +370220,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderP if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3794 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3758 : struct.success.entrySet()) { - oprot.writeI64(_iter3794.getKey()); + oprot.writeI64(_iter3758.getKey()); { - oprot.writeI32(_iter3794.getValue().size()); - for (java.util.Map.Entry> _iter3795 : _iter3794.getValue().entrySet()) + oprot.writeI32(_iter3758.getValue().size()); + for (java.util.Map.Entry> _iter3759 : _iter3758.getValue().entrySet()) { - oprot.writeString(_iter3795.getKey()); + oprot.writeString(_iter3759.getKey()); { - oprot.writeI32(_iter3795.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3796 : _iter3795.getValue()) + oprot.writeI32(_iter3759.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3760 : _iter3759.getValue()) { - _iter3796.write(oprot); + _iter3760.write(oprot); } } } @@ -371414,41 +370255,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3797 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3797.size); - long _key3798; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3799; - for (int _i3800 = 0; _i3800 < _map3797.size; ++_i3800) + org.apache.thrift.protocol.TMap _map3761 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3761.size); + long _key3762; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3763; + for (int _i3764 = 0; _i3764 < _map3761.size; ++_i3764) { - _key3798 = iprot.readI64(); + _key3762 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3801 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3799 = new java.util.LinkedHashMap>(2*_map3801.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3802; - @org.apache.thrift.annotation.Nullable java.util.Set _val3803; - for (int _i3804 = 0; _i3804 < _map3801.size; ++_i3804) + org.apache.thrift.protocol.TMap _map3765 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3763 = new java.util.LinkedHashMap>(2*_map3765.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3766; + @org.apache.thrift.annotation.Nullable java.util.Set _val3767; + for (int _i3768 = 0; _i3768 < _map3765.size; ++_i3768) { - _key3802 = iprot.readString(); + _key3766 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3805 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3803 = new java.util.LinkedHashSet(2*_set3805.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3806; - for (int _i3807 = 0; _i3807 < _set3805.size; ++_i3807) + org.apache.thrift.protocol.TSet _set3769 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3767 = new java.util.LinkedHashSet(2*_set3769.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3770; + for (int _i3771 = 0; _i3771 < _set3769.size; ++_i3771) { - _elem3806 = new com.cinchapi.concourse.thrift.TObject(); - _elem3806.read(iprot); - _val3803.add(_elem3806); + _elem3770 = new com.cinchapi.concourse.thrift.TObject(); + _elem3770.read(iprot); + _val3767.add(_elem3770); } } - _val3799.put(_key3802, _val3803); + _val3763.put(_key3766, _val3767); } } - struct.success.put(_key3798, _val3799); + struct.success.put(_key3762, _val3763); } } struct.setSuccessIsSet(true); @@ -371481,22 +370322,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTime_args"); + public static class selectKeysCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -371504,11 +370347,12 @@ public static class selectKeysCriteriaTime_args implements org.apache.thrift.TBa /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), - CRITERIA((short)2, "criteria"), - TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CCL((short)2, "ccl"), + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -371526,15 +370370,17 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // CRITERIA - return CRITERIA; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 2: // CCL + return CCL; + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 5: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -371579,18 +370425,18 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -371598,25 +370444,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclOrderPage_args.class, metaDataMap); } - public selectKeysCriteriaTime_args() { + public selectKeysCclOrderPage_args() { } - public selectKeysCriteriaTime_args( + public selectKeysCclOrderPage_args( java.util.List keys, - com.cinchapi.concourse.thrift.TCriteria criteria, - long timestamp, + java.lang.String ccl, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.criteria = criteria; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.ccl = ccl; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -371625,16 +370472,20 @@ public selectKeysCriteriaTime_args( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTime_args(selectKeysCriteriaTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public selectKeysCclOrderPage_args(selectKeysCclOrderPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetCriteria()) { - this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + if (other.isSetCcl()) { + this.ccl = other.ccl; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -371647,16 +370498,16 @@ public selectKeysCriteriaTime_args(selectKeysCriteriaTime_args other) { } @Override - public selectKeysCriteriaTime_args deepCopy() { - return new selectKeysCriteriaTime_args(this); + public selectKeysCclOrderPage_args deepCopy() { + return new selectKeysCclOrderPage_args(this); } @Override public void clear() { this.keys = null; - this.criteria = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.ccl = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -371683,7 +370534,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCriteriaTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -371704,51 +370555,78 @@ public void setKeysIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TCriteria getCriteria() { - return this.criteria; + public java.lang.String getCcl() { + return this.ccl; } - public selectKeysCriteriaTime_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { - this.criteria = criteria; + public selectKeysCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetCriteria() { - this.criteria = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ - public boolean isSetCriteria() { - return this.criteria != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setCriteriaIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.criteria = null; + this.ccl = null; } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public selectKeysCriteriaTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public selectKeysCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -371756,7 +370634,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCriteriaTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -371781,7 +370659,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCriteriaTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -371806,7 +370684,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCriteriaTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -371837,19 +370715,27 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case CRITERIA: + case CCL: if (value == null) { - unsetCriteria(); + unsetCcl(); } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + setCcl((java.lang.String)value); } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -371887,11 +370773,14 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case CRITERIA: - return getCriteria(); + case CCL: + return getCcl(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -371916,10 +370805,12 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case CRITERIA: - return isSetCriteria(); - case TIMESTAMP: - return isSetTimestamp(); + case CCL: + return isSetCcl(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -371932,12 +370823,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTime_args) - return this.equals((selectKeysCriteriaTime_args)that); + if (that instanceof selectKeysCclOrderPage_args) + return this.equals((selectKeysCclOrderPage_args)that); return false; } - public boolean equals(selectKeysCriteriaTime_args that) { + public boolean equals(selectKeysCclOrderPage_args that) { if (that == null) return false; if (this == that) @@ -371952,21 +370843,30 @@ public boolean equals(selectKeysCriteriaTime_args that) { return false; } - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.criteria.equals(that.criteria)) + if (!this.ccl.equals(that.ccl)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -372008,11 +370908,17 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -372030,7 +370936,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTime_args other) { + public int compareTo(selectKeysCclOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -372047,22 +370953,32 @@ public int compareTo(selectKeysCriteriaTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -372118,7 +371034,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -372129,16 +371045,28 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("criteria:"); - if (this.criteria == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.criteria); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -372171,8 +371099,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -372192,25 +371123,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeysCriteriaTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTime_argsStandardScheme getScheme() { - return new selectKeysCriteriaTime_argsStandardScheme(); + public selectKeysCclOrderPage_argsStandardScheme getScheme() { + return new selectKeysCclOrderPage_argsStandardScheme(); } } - private static class selectKeysCriteriaTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -372223,13 +371152,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3808 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3808.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3809; - for (int _i3810 = 0; _i3810 < _list3808.size; ++_i3810) + org.apache.thrift.protocol.TList _list3772 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3772.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3773; + for (int _i3774 = 0; _i3774 < _list3772.size; ++_i3774) { - _elem3809 = iprot.readString(); - struct.keys.add(_elem3809); + _elem3773 = iprot.readString(); + struct.keys.add(_elem3773); } iprot.readListEnd(); } @@ -372238,24 +371167,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CRITERIA + case 2: // CCL + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // ORDER if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -372264,7 +371202,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -372273,7 +371211,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -372293,7 +371231,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -372301,22 +371239,29 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3811 : struct.keys) + for (java.lang.String _iter3775 : struct.keys) { - oprot.writeString(_iter3811); + oprot.writeString(_iter3775); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -372338,52 +371283,58 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTime_argsTupleScheme getScheme() { - return new selectKeysCriteriaTime_argsTupleScheme(); + public selectKeysCclOrderPage_argsTupleScheme getScheme() { + return new selectKeysCclOrderPage_argsTupleScheme(); } } - private static class selectKeysCriteriaTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetCriteria()) { + if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3812 : struct.keys) + for (java.lang.String _iter3776 : struct.keys) { - oprot.writeString(_iter3812); + oprot.writeString(_iter3776); } } } - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -372397,42 +371348,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3813 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3813.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3814; - for (int _i3815 = 0; _i3815 < _list3813.size; ++_i3815) + org.apache.thrift.protocol.TList _list3777 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3777.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3778; + for (int _i3779 = 0; _i3779 < _list3777.size; ++_i3779) { - _elem3814 = iprot.readString(); - struct.keys.add(_elem3814); + _elem3778 = iprot.readString(); + struct.keys.add(_elem3778); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -372444,28 +371400,31 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTime_result"); + public static class selectKeysCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -372489,6 +371448,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -372547,31 +371508,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclOrderPage_result.class, metaDataMap); } - public selectKeysCriteriaTime_result() { + public selectKeysCclOrderPage_result() { } - public selectKeysCriteriaTime_result( + public selectKeysCclOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeysCriteriaTime_result(selectKeysCriteriaTime_result other) { + public selectKeysCclOrderPage_result(selectKeysCclOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -372608,13 +371573,16 @@ public selectKeysCriteriaTime_result(selectKeysCriteriaTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public selectKeysCriteriaTime_result deepCopy() { - return new selectKeysCriteriaTime_result(this); + public selectKeysCclOrderPage_result deepCopy() { + return new selectKeysCclOrderPage_result(this); } @Override @@ -372623,6 +371591,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -372641,7 +371610,7 @@ public java.util.Map>> success) { + public selectKeysCclOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -372666,7 +371635,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCriteriaTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -372691,7 +371660,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCriteriaTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -372712,11 +371681,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCriteriaTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -372736,6 +371705,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public selectKeysCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -372767,7 +371761,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -372790,6 +371792,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -372810,18 +371815,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTime_result) - return this.equals((selectKeysCriteriaTime_result)that); + if (that instanceof selectKeysCclOrderPage_result) + return this.equals((selectKeysCclOrderPage_result)that); return false; } - public boolean equals(selectKeysCriteriaTime_result that) { + public boolean equals(selectKeysCclOrderPage_result that) { if (that == null) return false; if (this == that) @@ -372863,6 +371870,15 @@ public boolean equals(selectKeysCriteriaTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -372886,11 +371902,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(selectKeysCriteriaTime_result other) { + public int compareTo(selectKeysCclOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -372937,6 +371957,16 @@ public int compareTo(selectKeysCriteriaTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -372957,7 +371987,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclOrderPage_result("); boolean first = true; sb.append("success:"); @@ -372991,6 +372021,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -373016,17 +372054,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTime_resultStandardScheme getScheme() { - return new selectKeysCriteriaTime_resultStandardScheme(); + public selectKeysCclOrderPage_resultStandardScheme getScheme() { + return new selectKeysCclOrderPage_resultStandardScheme(); } } - private static class selectKeysCriteriaTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -373039,38 +372077,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3816 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3816.size); - long _key3817; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3818; - for (int _i3819 = 0; _i3819 < _map3816.size; ++_i3819) + org.apache.thrift.protocol.TMap _map3780 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3780.size); + long _key3781; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3782; + for (int _i3783 = 0; _i3783 < _map3780.size; ++_i3783) { - _key3817 = iprot.readI64(); + _key3781 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3820 = iprot.readMapBegin(); - _val3818 = new java.util.LinkedHashMap>(2*_map3820.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3821; - @org.apache.thrift.annotation.Nullable java.util.Set _val3822; - for (int _i3823 = 0; _i3823 < _map3820.size; ++_i3823) + org.apache.thrift.protocol.TMap _map3784 = iprot.readMapBegin(); + _val3782 = new java.util.LinkedHashMap>(2*_map3784.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3785; + @org.apache.thrift.annotation.Nullable java.util.Set _val3786; + for (int _i3787 = 0; _i3787 < _map3784.size; ++_i3787) { - _key3821 = iprot.readString(); + _key3785 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3824 = iprot.readSetBegin(); - _val3822 = new java.util.LinkedHashSet(2*_set3824.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3825; - for (int _i3826 = 0; _i3826 < _set3824.size; ++_i3826) + org.apache.thrift.protocol.TSet _set3788 = iprot.readSetBegin(); + _val3786 = new java.util.LinkedHashSet(2*_set3788.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3789; + for (int _i3790 = 0; _i3790 < _set3788.size; ++_i3790) { - _elem3825 = new com.cinchapi.concourse.thrift.TObject(); - _elem3825.read(iprot); - _val3822.add(_elem3825); + _elem3789 = new com.cinchapi.concourse.thrift.TObject(); + _elem3789.read(iprot); + _val3786.add(_elem3789); } iprot.readSetEnd(); } - _val3818.put(_key3821, _val3822); + _val3782.put(_key3785, _val3786); } iprot.readMapEnd(); } - struct.success.put(_key3817, _val3818); + struct.success.put(_key3781, _val3782); } iprot.readMapEnd(); } @@ -373099,13 +372137,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -373118,7 +372165,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -373126,19 +372173,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3827 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3791 : struct.success.entrySet()) { - oprot.writeI64(_iter3827.getKey()); + oprot.writeI64(_iter3791.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3827.getValue().size())); - for (java.util.Map.Entry> _iter3828 : _iter3827.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3791.getValue().size())); + for (java.util.Map.Entry> _iter3792 : _iter3791.getValue().entrySet()) { - oprot.writeString(_iter3828.getKey()); + oprot.writeString(_iter3792.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3828.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3829 : _iter3828.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3792.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3793 : _iter3792.getValue()) { - _iter3829.write(oprot); + _iter3793.write(oprot); } oprot.writeSetEnd(); } @@ -373165,23 +372212,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeysCriteriaTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTime_resultTupleScheme getScheme() { - return new selectKeysCriteriaTime_resultTupleScheme(); + public selectKeysCclOrderPage_resultTupleScheme getScheme() { + return new selectKeysCclOrderPage_resultTupleScheme(); } } - private static class selectKeysCriteriaTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -373196,23 +372248,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3830 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3794 : struct.success.entrySet()) { - oprot.writeI64(_iter3830.getKey()); + oprot.writeI64(_iter3794.getKey()); { - oprot.writeI32(_iter3830.getValue().size()); - for (java.util.Map.Entry> _iter3831 : _iter3830.getValue().entrySet()) + oprot.writeI32(_iter3794.getValue().size()); + for (java.util.Map.Entry> _iter3795 : _iter3794.getValue().entrySet()) { - oprot.writeString(_iter3831.getKey()); + oprot.writeString(_iter3795.getKey()); { - oprot.writeI32(_iter3831.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3832 : _iter3831.getValue()) + oprot.writeI32(_iter3795.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3796 : _iter3795.getValue()) { - _iter3832.write(oprot); + _iter3796.write(oprot); } } } @@ -373229,44 +372284,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3833 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3833.size); - long _key3834; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3835; - for (int _i3836 = 0; _i3836 < _map3833.size; ++_i3836) + org.apache.thrift.protocol.TMap _map3797 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3797.size); + long _key3798; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3799; + for (int _i3800 = 0; _i3800 < _map3797.size; ++_i3800) { - _key3834 = iprot.readI64(); + _key3798 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3837 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3835 = new java.util.LinkedHashMap>(2*_map3837.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3838; - @org.apache.thrift.annotation.Nullable java.util.Set _val3839; - for (int _i3840 = 0; _i3840 < _map3837.size; ++_i3840) + org.apache.thrift.protocol.TMap _map3801 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3799 = new java.util.LinkedHashMap>(2*_map3801.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3802; + @org.apache.thrift.annotation.Nullable java.util.Set _val3803; + for (int _i3804 = 0; _i3804 < _map3801.size; ++_i3804) { - _key3838 = iprot.readString(); + _key3802 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3841 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3839 = new java.util.LinkedHashSet(2*_set3841.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3842; - for (int _i3843 = 0; _i3843 < _set3841.size; ++_i3843) + org.apache.thrift.protocol.TSet _set3805 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3803 = new java.util.LinkedHashSet(2*_set3805.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3806; + for (int _i3807 = 0; _i3807 < _set3805.size; ++_i3807) { - _elem3842 = new com.cinchapi.concourse.thrift.TObject(); - _elem3842.read(iprot); - _val3839.add(_elem3842); + _elem3806 = new com.cinchapi.concourse.thrift.TObject(); + _elem3806.read(iprot); + _val3803.add(_elem3806); } } - _val3835.put(_key3838, _val3839); + _val3799.put(_key3802, _val3803); } } - struct.success.put(_key3834, _val3835); + struct.success.put(_key3798, _val3799); } } struct.setSuccessIsSet(true); @@ -373282,10 +372340,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -373294,24 +372357,22 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimePage_args"); + public static class selectKeysCriteriaTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -373321,10 +372382,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -373346,13 +372406,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -373409,8 +372467,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -373418,17 +372474,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTime_args.class, metaDataMap); } - public selectKeysCriteriaTimePage_args() { + public selectKeysCriteriaTime_args() { } - public selectKeysCriteriaTimePage_args( + public selectKeysCriteriaTime_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -373438,7 +372493,6 @@ public selectKeysCriteriaTimePage_args( this.criteria = criteria; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -373447,7 +372501,7 @@ public selectKeysCriteriaTimePage_args( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimePage_args(selectKeysCriteriaTimePage_args other) { + public selectKeysCriteriaTime_args(selectKeysCriteriaTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -373457,9 +372511,6 @@ public selectKeysCriteriaTimePage_args(selectKeysCriteriaTimePage_args other) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -373472,8 +372523,8 @@ public selectKeysCriteriaTimePage_args(selectKeysCriteriaTimePage_args other) { } @Override - public selectKeysCriteriaTimePage_args deepCopy() { - return new selectKeysCriteriaTimePage_args(this); + public selectKeysCriteriaTime_args deepCopy() { + return new selectKeysCriteriaTime_args(this); } @Override @@ -373482,7 +372533,6 @@ public void clear() { this.criteria = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -373509,7 +372559,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCriteriaTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -373534,7 +372584,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectKeysCriteriaTimePage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectKeysCriteriaTime_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -373558,7 +372608,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysCriteriaTimePage_args setTimestamp(long timestamp) { + public selectKeysCriteriaTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -373577,37 +372627,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCriteriaTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCriteriaTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -373632,7 +372657,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCriteriaTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -373657,7 +372682,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCriteriaTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -373704,14 +372729,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -373752,9 +372769,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -373782,8 +372796,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -373796,12 +372808,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimePage_args) - return this.equals((selectKeysCriteriaTimePage_args)that); + if (that instanceof selectKeysCriteriaTime_args) + return this.equals((selectKeysCriteriaTime_args)that); return false; } - public boolean equals(selectKeysCriteriaTimePage_args that) { + public boolean equals(selectKeysCriteriaTime_args that) { if (that == null) return false; if (this == that) @@ -373834,15 +372846,6 @@ public boolean equals(selectKeysCriteriaTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -373887,10 +372890,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -373907,7 +372906,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimePage_args other) { + public int compareTo(selectKeysCriteriaTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -373944,16 +372943,6 @@ public int compareTo(selectKeysCriteriaTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -374005,7 +372994,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTime_args("); boolean first = true; sb.append("keys:"); @@ -374028,14 +373017,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -374069,9 +373050,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -374098,17 +373076,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimePage_argsStandardScheme getScheme() { - return new selectKeysCriteriaTimePage_argsStandardScheme(); + public selectKeysCriteriaTime_argsStandardScheme getScheme() { + return new selectKeysCriteriaTime_argsStandardScheme(); } } - private static class selectKeysCriteriaTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -374121,13 +373099,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3844 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3844.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3845; - for (int _i3846 = 0; _i3846 < _list3844.size; ++_i3846) + org.apache.thrift.protocol.TList _list3808 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3808.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3809; + for (int _i3810 = 0; _i3810 < _list3808.size; ++_i3810) { - _elem3845 = iprot.readString(); - struct.keys.add(_elem3845); + _elem3809 = iprot.readString(); + struct.keys.add(_elem3809); } iprot.readListEnd(); } @@ -374153,16 +373131,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -374171,7 +373140,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -374180,7 +373149,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -374200,7 +373169,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -374208,9 +373177,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3847 : struct.keys) + for (java.lang.String _iter3811 : struct.keys) { - oprot.writeString(_iter3847); + oprot.writeString(_iter3811); } oprot.writeListEnd(); } @@ -374224,11 +373193,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -374250,17 +373214,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimePage_argsTupleScheme getScheme() { - return new selectKeysCriteriaTimePage_argsTupleScheme(); + public selectKeysCriteriaTime_argsTupleScheme getScheme() { + return new selectKeysCriteriaTime_argsTupleScheme(); } } - private static class selectKeysCriteriaTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -374272,25 +373236,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3848 : struct.keys) + for (java.lang.String _iter3812 : struct.keys) { - oprot.writeString(_iter3848); + oprot.writeString(_iter3812); } } } @@ -374300,9 +373261,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -374315,18 +373273,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3849 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3849.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3850; - for (int _i3851 = 0; _i3851 < _list3849.size; ++_i3851) + org.apache.thrift.protocol.TList _list3813 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3813.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3814; + for (int _i3815 = 0; _i3815 < _list3813.size; ++_i3815) { - _elem3850 = iprot.readString(); - struct.keys.add(_elem3850); + _elem3814 = iprot.readString(); + struct.keys.add(_elem3814); } } struct.setKeysIsSet(true); @@ -374341,21 +373299,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -374367,16 +373320,16 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimePage_result"); + public static class selectKeysCriteriaTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -374472,13 +373425,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTime_result.class, metaDataMap); } - public selectKeysCriteriaTimePage_result() { + public selectKeysCriteriaTime_result() { } - public selectKeysCriteriaTimePage_result( + public selectKeysCriteriaTime_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -374494,7 +373447,7 @@ public selectKeysCriteriaTimePage_result( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimePage_result(selectKeysCriteriaTimePage_result other) { + public selectKeysCriteriaTime_result(selectKeysCriteriaTime_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -374536,8 +373489,8 @@ public selectKeysCriteriaTimePage_result(selectKeysCriteriaTimePage_result other } @Override - public selectKeysCriteriaTimePage_result deepCopy() { - return new selectKeysCriteriaTimePage_result(this); + public selectKeysCriteriaTime_result deepCopy() { + return new selectKeysCriteriaTime_result(this); } @Override @@ -374564,7 +373517,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -374589,7 +373542,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCriteriaTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -374614,7 +373567,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCriteriaTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -374639,7 +373592,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysCriteriaTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysCriteriaTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -374739,12 +373692,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimePage_result) - return this.equals((selectKeysCriteriaTimePage_result)that); + if (that instanceof selectKeysCriteriaTime_result) + return this.equals((selectKeysCriteriaTime_result)that); return false; } - public boolean equals(selectKeysCriteriaTimePage_result that) { + public boolean equals(selectKeysCriteriaTime_result that) { if (that == null) return false; if (this == that) @@ -374813,7 +373766,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimePage_result other) { + public int compareTo(selectKeysCriteriaTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -374880,7 +373833,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTime_result("); boolean first = true; sb.append("success:"); @@ -374939,17 +373892,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimePage_resultStandardScheme getScheme() { - return new selectKeysCriteriaTimePage_resultStandardScheme(); + public selectKeysCriteriaTime_resultStandardScheme getScheme() { + return new selectKeysCriteriaTime_resultStandardScheme(); } } - private static class selectKeysCriteriaTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -374962,38 +373915,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3852 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3852.size); - long _key3853; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3854; - for (int _i3855 = 0; _i3855 < _map3852.size; ++_i3855) + org.apache.thrift.protocol.TMap _map3816 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3816.size); + long _key3817; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3818; + for (int _i3819 = 0; _i3819 < _map3816.size; ++_i3819) { - _key3853 = iprot.readI64(); + _key3817 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3856 = iprot.readMapBegin(); - _val3854 = new java.util.LinkedHashMap>(2*_map3856.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3857; - @org.apache.thrift.annotation.Nullable java.util.Set _val3858; - for (int _i3859 = 0; _i3859 < _map3856.size; ++_i3859) + org.apache.thrift.protocol.TMap _map3820 = iprot.readMapBegin(); + _val3818 = new java.util.LinkedHashMap>(2*_map3820.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3821; + @org.apache.thrift.annotation.Nullable java.util.Set _val3822; + for (int _i3823 = 0; _i3823 < _map3820.size; ++_i3823) { - _key3857 = iprot.readString(); + _key3821 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3860 = iprot.readSetBegin(); - _val3858 = new java.util.LinkedHashSet(2*_set3860.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3861; - for (int _i3862 = 0; _i3862 < _set3860.size; ++_i3862) + org.apache.thrift.protocol.TSet _set3824 = iprot.readSetBegin(); + _val3822 = new java.util.LinkedHashSet(2*_set3824.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3825; + for (int _i3826 = 0; _i3826 < _set3824.size; ++_i3826) { - _elem3861 = new com.cinchapi.concourse.thrift.TObject(); - _elem3861.read(iprot); - _val3858.add(_elem3861); + _elem3825 = new com.cinchapi.concourse.thrift.TObject(); + _elem3825.read(iprot); + _val3822.add(_elem3825); } iprot.readSetEnd(); } - _val3854.put(_key3857, _val3858); + _val3818.put(_key3821, _val3822); } iprot.readMapEnd(); } - struct.success.put(_key3853, _val3854); + struct.success.put(_key3817, _val3818); } iprot.readMapEnd(); } @@ -375041,7 +373994,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -375049,19 +374002,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3863 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3827 : struct.success.entrySet()) { - oprot.writeI64(_iter3863.getKey()); + oprot.writeI64(_iter3827.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3863.getValue().size())); - for (java.util.Map.Entry> _iter3864 : _iter3863.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3827.getValue().size())); + for (java.util.Map.Entry> _iter3828 : _iter3827.getValue().entrySet()) { - oprot.writeString(_iter3864.getKey()); + oprot.writeString(_iter3828.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3864.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3865 : _iter3864.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3828.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3829 : _iter3828.getValue()) { - _iter3865.write(oprot); + _iter3829.write(oprot); } oprot.writeSetEnd(); } @@ -375094,17 +374047,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimePage_resultTupleScheme getScheme() { - return new selectKeysCriteriaTimePage_resultTupleScheme(); + public selectKeysCriteriaTime_resultTupleScheme getScheme() { + return new selectKeysCriteriaTime_resultTupleScheme(); } } - private static class selectKeysCriteriaTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -375123,19 +374076,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3866 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3830 : struct.success.entrySet()) { - oprot.writeI64(_iter3866.getKey()); + oprot.writeI64(_iter3830.getKey()); { - oprot.writeI32(_iter3866.getValue().size()); - for (java.util.Map.Entry> _iter3867 : _iter3866.getValue().entrySet()) + oprot.writeI32(_iter3830.getValue().size()); + for (java.util.Map.Entry> _iter3831 : _iter3830.getValue().entrySet()) { - oprot.writeString(_iter3867.getKey()); + oprot.writeString(_iter3831.getKey()); { - oprot.writeI32(_iter3867.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3868 : _iter3867.getValue()) + oprot.writeI32(_iter3831.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3832 : _iter3831.getValue()) { - _iter3868.write(oprot); + _iter3832.write(oprot); } } } @@ -375155,41 +374108,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3869 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3869.size); - long _key3870; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3871; - for (int _i3872 = 0; _i3872 < _map3869.size; ++_i3872) + org.apache.thrift.protocol.TMap _map3833 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3833.size); + long _key3834; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3835; + for (int _i3836 = 0; _i3836 < _map3833.size; ++_i3836) { - _key3870 = iprot.readI64(); + _key3834 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3873 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3871 = new java.util.LinkedHashMap>(2*_map3873.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3874; - @org.apache.thrift.annotation.Nullable java.util.Set _val3875; - for (int _i3876 = 0; _i3876 < _map3873.size; ++_i3876) + org.apache.thrift.protocol.TMap _map3837 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3835 = new java.util.LinkedHashMap>(2*_map3837.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3838; + @org.apache.thrift.annotation.Nullable java.util.Set _val3839; + for (int _i3840 = 0; _i3840 < _map3837.size; ++_i3840) { - _key3874 = iprot.readString(); + _key3838 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3877 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3875 = new java.util.LinkedHashSet(2*_set3877.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3878; - for (int _i3879 = 0; _i3879 < _set3877.size; ++_i3879) + org.apache.thrift.protocol.TSet _set3841 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3839 = new java.util.LinkedHashSet(2*_set3841.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3842; + for (int _i3843 = 0; _i3843 < _set3841.size; ++_i3843) { - _elem3878 = new com.cinchapi.concourse.thrift.TObject(); - _elem3878.read(iprot); - _val3875.add(_elem3878); + _elem3842 = new com.cinchapi.concourse.thrift.TObject(); + _elem3842.read(iprot); + _val3839.add(_elem3842); } } - _val3871.put(_key3874, _val3875); + _val3835.put(_key3838, _val3839); } } - struct.success.put(_key3870, _val3871); + struct.success.put(_key3834, _val3835); } } struct.setSuccessIsSet(true); @@ -375217,24 +374170,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimeOrder_args"); + public static class selectKeysCriteriaTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimePage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -375244,7 +374197,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -375269,8 +374222,8 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -375332,8 +374285,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -375341,17 +374294,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimePage_args.class, metaDataMap); } - public selectKeysCriteriaTimeOrder_args() { + public selectKeysCriteriaTimePage_args() { } - public selectKeysCriteriaTimeOrder_args( + public selectKeysCriteriaTimePage_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -375361,7 +374314,7 @@ public selectKeysCriteriaTimeOrder_args( this.criteria = criteria; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -375370,7 +374323,7 @@ public selectKeysCriteriaTimeOrder_args( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimeOrder_args(selectKeysCriteriaTimeOrder_args other) { + public selectKeysCriteriaTimePage_args(selectKeysCriteriaTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -375380,8 +374333,8 @@ public selectKeysCriteriaTimeOrder_args(selectKeysCriteriaTimeOrder_args other) this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -375395,8 +374348,8 @@ public selectKeysCriteriaTimeOrder_args(selectKeysCriteriaTimeOrder_args other) } @Override - public selectKeysCriteriaTimeOrder_args deepCopy() { - return new selectKeysCriteriaTimeOrder_args(this); + public selectKeysCriteriaTimePage_args deepCopy() { + return new selectKeysCriteriaTimePage_args(this); } @Override @@ -375405,7 +374358,7 @@ public void clear() { this.criteria = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -375432,7 +374385,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCriteriaTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -375457,7 +374410,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectKeysCriteriaTimeOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectKeysCriteriaTimePage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -375481,7 +374434,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysCriteriaTimeOrder_args setTimestamp(long timestamp) { + public selectKeysCriteriaTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -375501,27 +374454,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeysCriteriaTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeysCriteriaTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -375530,7 +374483,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCriteriaTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -375555,7 +374508,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCriteriaTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -375580,7 +374533,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCriteriaTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -375627,11 +374580,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -375675,8 +374628,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -375705,8 +374658,8 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -375719,12 +374672,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimeOrder_args) - return this.equals((selectKeysCriteriaTimeOrder_args)that); + if (that instanceof selectKeysCriteriaTimePage_args) + return this.equals((selectKeysCriteriaTimePage_args)that); return false; } - public boolean equals(selectKeysCriteriaTimeOrder_args that) { + public boolean equals(selectKeysCriteriaTimePage_args that) { if (that == null) return false; if (this == that) @@ -375757,12 +374710,12 @@ public boolean equals(selectKeysCriteriaTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -375810,9 +374763,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -375830,7 +374783,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimeOrder_args other) { + public int compareTo(selectKeysCriteriaTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -375867,12 +374820,12 @@ public int compareTo(selectKeysCriteriaTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -375928,7 +374881,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimePage_args("); boolean first = true; sb.append("keys:"); @@ -375951,11 +374904,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -375992,8 +374945,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -376021,17 +374974,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimeOrder_argsStandardScheme getScheme() { - return new selectKeysCriteriaTimeOrder_argsStandardScheme(); + public selectKeysCriteriaTimePage_argsStandardScheme getScheme() { + return new selectKeysCriteriaTimePage_argsStandardScheme(); } } - private static class selectKeysCriteriaTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -376044,13 +374997,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3880 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3880.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3881; - for (int _i3882 = 0; _i3882 < _list3880.size; ++_i3882) + org.apache.thrift.protocol.TList _list3844 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3844.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3845; + for (int _i3846 = 0; _i3846 < _list3844.size; ++_i3846) { - _elem3881 = iprot.readString(); - struct.keys.add(_elem3881); + _elem3845 = iprot.readString(); + struct.keys.add(_elem3845); } iprot.readListEnd(); } @@ -376076,11 +375029,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -376123,7 +375076,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -376131,9 +375084,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3883 : struct.keys) + for (java.lang.String _iter3847 : struct.keys) { - oprot.writeString(_iter3883); + oprot.writeString(_iter3847); } oprot.writeListEnd(); } @@ -376147,9 +375100,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -376173,17 +375126,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimeOrder_argsTupleScheme getScheme() { - return new selectKeysCriteriaTimeOrder_argsTupleScheme(); + public selectKeysCriteriaTimePage_argsTupleScheme getScheme() { + return new selectKeysCriteriaTimePage_argsTupleScheme(); } } - private static class selectKeysCriteriaTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -376195,7 +375148,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -376211,9 +375164,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3884 : struct.keys) + for (java.lang.String _iter3848 : struct.keys) { - oprot.writeString(_iter3884); + oprot.writeString(_iter3848); } } } @@ -376223,8 +375176,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -376238,18 +375191,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3885 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3885.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3886; - for (int _i3887 = 0; _i3887 < _list3885.size; ++_i3887) + org.apache.thrift.protocol.TList _list3849 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3849.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3850; + for (int _i3851 = 0; _i3851 < _list3849.size; ++_i3851) { - _elem3886 = iprot.readString(); - struct.keys.add(_elem3886); + _elem3850 = iprot.readString(); + struct.keys.add(_elem3850); } } struct.setKeysIsSet(true); @@ -376264,9 +375217,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -376290,16 +375243,16 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimeOrder_result"); + public static class selectKeysCriteriaTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -376395,13 +375348,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimePage_result.class, metaDataMap); } - public selectKeysCriteriaTimeOrder_result() { + public selectKeysCriteriaTimePage_result() { } - public selectKeysCriteriaTimeOrder_result( + public selectKeysCriteriaTimePage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -376417,7 +375370,7 @@ public selectKeysCriteriaTimeOrder_result( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimeOrder_result(selectKeysCriteriaTimeOrder_result other) { + public selectKeysCriteriaTimePage_result(selectKeysCriteriaTimePage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -376459,8 +375412,8 @@ public selectKeysCriteriaTimeOrder_result(selectKeysCriteriaTimeOrder_result oth } @Override - public selectKeysCriteriaTimeOrder_result deepCopy() { - return new selectKeysCriteriaTimeOrder_result(this); + public selectKeysCriteriaTimePage_result deepCopy() { + return new selectKeysCriteriaTimePage_result(this); } @Override @@ -376487,7 +375440,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -376512,7 +375465,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCriteriaTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -376537,7 +375490,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCriteriaTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -376562,7 +375515,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysCriteriaTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysCriteriaTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -376662,12 +375615,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimeOrder_result) - return this.equals((selectKeysCriteriaTimeOrder_result)that); + if (that instanceof selectKeysCriteriaTimePage_result) + return this.equals((selectKeysCriteriaTimePage_result)that); return false; } - public boolean equals(selectKeysCriteriaTimeOrder_result that) { + public boolean equals(selectKeysCriteriaTimePage_result that) { if (that == null) return false; if (this == that) @@ -376736,7 +375689,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimeOrder_result other) { + public int compareTo(selectKeysCriteriaTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -376803,7 +375756,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimePage_result("); boolean first = true; sb.append("success:"); @@ -376862,17 +375815,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimeOrder_resultStandardScheme getScheme() { - return new selectKeysCriteriaTimeOrder_resultStandardScheme(); + public selectKeysCriteriaTimePage_resultStandardScheme getScheme() { + return new selectKeysCriteriaTimePage_resultStandardScheme(); } } - private static class selectKeysCriteriaTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -376885,38 +375838,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3888 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3888.size); - long _key3889; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3890; - for (int _i3891 = 0; _i3891 < _map3888.size; ++_i3891) + org.apache.thrift.protocol.TMap _map3852 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3852.size); + long _key3853; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3854; + for (int _i3855 = 0; _i3855 < _map3852.size; ++_i3855) { - _key3889 = iprot.readI64(); + _key3853 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3892 = iprot.readMapBegin(); - _val3890 = new java.util.LinkedHashMap>(2*_map3892.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3893; - @org.apache.thrift.annotation.Nullable java.util.Set _val3894; - for (int _i3895 = 0; _i3895 < _map3892.size; ++_i3895) + org.apache.thrift.protocol.TMap _map3856 = iprot.readMapBegin(); + _val3854 = new java.util.LinkedHashMap>(2*_map3856.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3857; + @org.apache.thrift.annotation.Nullable java.util.Set _val3858; + for (int _i3859 = 0; _i3859 < _map3856.size; ++_i3859) { - _key3893 = iprot.readString(); + _key3857 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3896 = iprot.readSetBegin(); - _val3894 = new java.util.LinkedHashSet(2*_set3896.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3897; - for (int _i3898 = 0; _i3898 < _set3896.size; ++_i3898) + org.apache.thrift.protocol.TSet _set3860 = iprot.readSetBegin(); + _val3858 = new java.util.LinkedHashSet(2*_set3860.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3861; + for (int _i3862 = 0; _i3862 < _set3860.size; ++_i3862) { - _elem3897 = new com.cinchapi.concourse.thrift.TObject(); - _elem3897.read(iprot); - _val3894.add(_elem3897); + _elem3861 = new com.cinchapi.concourse.thrift.TObject(); + _elem3861.read(iprot); + _val3858.add(_elem3861); } iprot.readSetEnd(); } - _val3890.put(_key3893, _val3894); + _val3854.put(_key3857, _val3858); } iprot.readMapEnd(); } - struct.success.put(_key3889, _val3890); + struct.success.put(_key3853, _val3854); } iprot.readMapEnd(); } @@ -376964,7 +375917,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -376972,19 +375925,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3899 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3863 : struct.success.entrySet()) { - oprot.writeI64(_iter3899.getKey()); + oprot.writeI64(_iter3863.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3899.getValue().size())); - for (java.util.Map.Entry> _iter3900 : _iter3899.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3863.getValue().size())); + for (java.util.Map.Entry> _iter3864 : _iter3863.getValue().entrySet()) { - oprot.writeString(_iter3900.getKey()); + oprot.writeString(_iter3864.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3900.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3901 : _iter3900.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3864.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3865 : _iter3864.getValue()) { - _iter3901.write(oprot); + _iter3865.write(oprot); } oprot.writeSetEnd(); } @@ -377017,17 +375970,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimeOrder_resultTupleScheme getScheme() { - return new selectKeysCriteriaTimeOrder_resultTupleScheme(); + public selectKeysCriteriaTimePage_resultTupleScheme getScheme() { + return new selectKeysCriteriaTimePage_resultTupleScheme(); } } - private static class selectKeysCriteriaTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -377046,19 +375999,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3902 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3866 : struct.success.entrySet()) { - oprot.writeI64(_iter3902.getKey()); + oprot.writeI64(_iter3866.getKey()); { - oprot.writeI32(_iter3902.getValue().size()); - for (java.util.Map.Entry> _iter3903 : _iter3902.getValue().entrySet()) + oprot.writeI32(_iter3866.getValue().size()); + for (java.util.Map.Entry> _iter3867 : _iter3866.getValue().entrySet()) { - oprot.writeString(_iter3903.getKey()); + oprot.writeString(_iter3867.getKey()); { - oprot.writeI32(_iter3903.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3904 : _iter3903.getValue()) + oprot.writeI32(_iter3867.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3868 : _iter3867.getValue()) { - _iter3904.write(oprot); + _iter3868.write(oprot); } } } @@ -377078,41 +376031,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3905 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3905.size); - long _key3906; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3907; - for (int _i3908 = 0; _i3908 < _map3905.size; ++_i3908) + org.apache.thrift.protocol.TMap _map3869 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3869.size); + long _key3870; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3871; + for (int _i3872 = 0; _i3872 < _map3869.size; ++_i3872) { - _key3906 = iprot.readI64(); + _key3870 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3909 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3907 = new java.util.LinkedHashMap>(2*_map3909.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3910; - @org.apache.thrift.annotation.Nullable java.util.Set _val3911; - for (int _i3912 = 0; _i3912 < _map3909.size; ++_i3912) + org.apache.thrift.protocol.TMap _map3873 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3871 = new java.util.LinkedHashMap>(2*_map3873.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3874; + @org.apache.thrift.annotation.Nullable java.util.Set _val3875; + for (int _i3876 = 0; _i3876 < _map3873.size; ++_i3876) { - _key3910 = iprot.readString(); + _key3874 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3913 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3911 = new java.util.LinkedHashSet(2*_set3913.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3914; - for (int _i3915 = 0; _i3915 < _set3913.size; ++_i3915) + org.apache.thrift.protocol.TSet _set3877 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3875 = new java.util.LinkedHashSet(2*_set3877.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3878; + for (int _i3879 = 0; _i3879 < _set3877.size; ++_i3879) { - _elem3914 = new com.cinchapi.concourse.thrift.TObject(); - _elem3914.read(iprot); - _val3911.add(_elem3914); + _elem3878 = new com.cinchapi.concourse.thrift.TObject(); + _elem3878.read(iprot); + _val3875.add(_elem3878); } } - _val3907.put(_key3910, _val3911); + _val3871.put(_key3874, _val3875); } } - struct.success.put(_key3906, _val3907); + struct.success.put(_key3870, _val3871); } } struct.setSuccessIsSet(true); @@ -377140,26 +376093,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimeOrderPage_args"); + public static class selectKeysCriteriaTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -377170,10 +376121,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -377197,13 +376147,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -377262,8 +376210,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -377271,18 +376217,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimeOrder_args.class, metaDataMap); } - public selectKeysCriteriaTimeOrderPage_args() { + public selectKeysCriteriaTimeOrder_args() { } - public selectKeysCriteriaTimeOrderPage_args( + public selectKeysCriteriaTimeOrder_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -377293,7 +376238,6 @@ public selectKeysCriteriaTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -377302,7 +376246,7 @@ public selectKeysCriteriaTimeOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimeOrderPage_args(selectKeysCriteriaTimeOrderPage_args other) { + public selectKeysCriteriaTimeOrder_args(selectKeysCriteriaTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -377315,9 +376259,6 @@ public selectKeysCriteriaTimeOrderPage_args(selectKeysCriteriaTimeOrderPage_args if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -377330,8 +376271,8 @@ public selectKeysCriteriaTimeOrderPage_args(selectKeysCriteriaTimeOrderPage_args } @Override - public selectKeysCriteriaTimeOrderPage_args deepCopy() { - return new selectKeysCriteriaTimeOrderPage_args(this); + public selectKeysCriteriaTimeOrder_args deepCopy() { + return new selectKeysCriteriaTimeOrder_args(this); } @Override @@ -377341,7 +376282,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -377368,7 +376308,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCriteriaTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -377393,7 +376333,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectKeysCriteriaTimeOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectKeysCriteriaTimeOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -377417,7 +376357,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysCriteriaTimeOrderPage_args setTimestamp(long timestamp) { + public selectKeysCriteriaTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -377441,7 +376381,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeysCriteriaTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeysCriteriaTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -377461,37 +376401,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCriteriaTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCriteriaTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -377516,7 +376431,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCriteriaTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -377541,7 +376456,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCriteriaTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -377596,14 +376511,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -377647,9 +376554,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -377679,8 +376583,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -377693,12 +376595,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimeOrderPage_args) - return this.equals((selectKeysCriteriaTimeOrderPage_args)that); + if (that instanceof selectKeysCriteriaTimeOrder_args) + return this.equals((selectKeysCriteriaTimeOrder_args)that); return false; } - public boolean equals(selectKeysCriteriaTimeOrderPage_args that) { + public boolean equals(selectKeysCriteriaTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -377740,15 +376642,6 @@ public boolean equals(selectKeysCriteriaTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -377797,10 +376690,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -377817,7 +376706,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimeOrderPage_args other) { + public int compareTo(selectKeysCriteriaTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -377864,16 +376753,6 @@ public int compareTo(selectKeysCriteriaTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -377925,7 +376804,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimeOrder_args("); boolean first = true; sb.append("keys:"); @@ -377956,14 +376835,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -378000,9 +376871,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -378029,17 +376897,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimeOrderPage_argsStandardScheme getScheme() { - return new selectKeysCriteriaTimeOrderPage_argsStandardScheme(); + public selectKeysCriteriaTimeOrder_argsStandardScheme getScheme() { + return new selectKeysCriteriaTimeOrder_argsStandardScheme(); } } - private static class selectKeysCriteriaTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -378052,13 +376920,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3916 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3916.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3917; - for (int _i3918 = 0; _i3918 < _list3916.size; ++_i3918) + org.apache.thrift.protocol.TList _list3880 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3880.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3881; + for (int _i3882 = 0; _i3882 < _list3880.size; ++_i3882) { - _elem3917 = iprot.readString(); - struct.keys.add(_elem3917); + _elem3881 = iprot.readString(); + struct.keys.add(_elem3881); } iprot.readListEnd(); } @@ -378093,16 +376961,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -378111,7 +376970,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -378120,7 +376979,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -378140,7 +376999,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -378148,9 +377007,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3919 : struct.keys) + for (java.lang.String _iter3883 : struct.keys) { - oprot.writeString(_iter3919); + oprot.writeString(_iter3883); } oprot.writeListEnd(); } @@ -378169,11 +377028,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -378195,17 +377049,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimeOrderPage_argsTupleScheme getScheme() { - return new selectKeysCriteriaTimeOrderPage_argsTupleScheme(); + public selectKeysCriteriaTimeOrder_argsTupleScheme getScheme() { + return new selectKeysCriteriaTimeOrder_argsTupleScheme(); } } - private static class selectKeysCriteriaTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -378220,25 +377074,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3920 : struct.keys) + for (java.lang.String _iter3884 : struct.keys) { - oprot.writeString(_iter3920); + oprot.writeString(_iter3884); } } } @@ -378251,9 +377102,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -378266,18 +377114,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3921 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3921.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3922; - for (int _i3923 = 0; _i3923 < _list3921.size; ++_i3923) + org.apache.thrift.protocol.TList _list3885 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3885.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3886; + for (int _i3887 = 0; _i3887 < _list3885.size; ++_i3887) { - _elem3922 = iprot.readString(); - struct.keys.add(_elem3922); + _elem3886 = iprot.readString(); + struct.keys.add(_elem3886); } } struct.setKeysIsSet(true); @@ -378297,21 +377145,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -378323,16 +377166,16 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimeOrderPage_result"); + public static class selectKeysCriteriaTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -378428,13 +377271,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimeOrder_result.class, metaDataMap); } - public selectKeysCriteriaTimeOrderPage_result() { + public selectKeysCriteriaTimeOrder_result() { } - public selectKeysCriteriaTimeOrderPage_result( + public selectKeysCriteriaTimeOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -378450,7 +377293,7 @@ public selectKeysCriteriaTimeOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimeOrderPage_result(selectKeysCriteriaTimeOrderPage_result other) { + public selectKeysCriteriaTimeOrder_result(selectKeysCriteriaTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -378492,8 +377335,8 @@ public selectKeysCriteriaTimeOrderPage_result(selectKeysCriteriaTimeOrderPage_re } @Override - public selectKeysCriteriaTimeOrderPage_result deepCopy() { - return new selectKeysCriteriaTimeOrderPage_result(this); + public selectKeysCriteriaTimeOrder_result deepCopy() { + return new selectKeysCriteriaTimeOrder_result(this); } @Override @@ -378520,7 +377363,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -378545,7 +377388,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCriteriaTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -378570,7 +377413,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCriteriaTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -378595,7 +377438,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysCriteriaTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysCriteriaTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -378695,12 +377538,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimeOrderPage_result) - return this.equals((selectKeysCriteriaTimeOrderPage_result)that); + if (that instanceof selectKeysCriteriaTimeOrder_result) + return this.equals((selectKeysCriteriaTimeOrder_result)that); return false; } - public boolean equals(selectKeysCriteriaTimeOrderPage_result that) { + public boolean equals(selectKeysCriteriaTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -378769,7 +377612,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimeOrderPage_result other) { + public int compareTo(selectKeysCriteriaTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -378836,7 +377679,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -378895,17 +377738,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimeOrderPage_resultStandardScheme getScheme() { - return new selectKeysCriteriaTimeOrderPage_resultStandardScheme(); + public selectKeysCriteriaTimeOrder_resultStandardScheme getScheme() { + return new selectKeysCriteriaTimeOrder_resultStandardScheme(); } } - private static class selectKeysCriteriaTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -378918,38 +377761,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3924 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3924.size); - long _key3925; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3926; - for (int _i3927 = 0; _i3927 < _map3924.size; ++_i3927) + org.apache.thrift.protocol.TMap _map3888 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3888.size); + long _key3889; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3890; + for (int _i3891 = 0; _i3891 < _map3888.size; ++_i3891) { - _key3925 = iprot.readI64(); + _key3889 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3928 = iprot.readMapBegin(); - _val3926 = new java.util.LinkedHashMap>(2*_map3928.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3929; - @org.apache.thrift.annotation.Nullable java.util.Set _val3930; - for (int _i3931 = 0; _i3931 < _map3928.size; ++_i3931) + org.apache.thrift.protocol.TMap _map3892 = iprot.readMapBegin(); + _val3890 = new java.util.LinkedHashMap>(2*_map3892.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3893; + @org.apache.thrift.annotation.Nullable java.util.Set _val3894; + for (int _i3895 = 0; _i3895 < _map3892.size; ++_i3895) { - _key3929 = iprot.readString(); + _key3893 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3932 = iprot.readSetBegin(); - _val3930 = new java.util.LinkedHashSet(2*_set3932.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3933; - for (int _i3934 = 0; _i3934 < _set3932.size; ++_i3934) + org.apache.thrift.protocol.TSet _set3896 = iprot.readSetBegin(); + _val3894 = new java.util.LinkedHashSet(2*_set3896.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3897; + for (int _i3898 = 0; _i3898 < _set3896.size; ++_i3898) { - _elem3933 = new com.cinchapi.concourse.thrift.TObject(); - _elem3933.read(iprot); - _val3930.add(_elem3933); + _elem3897 = new com.cinchapi.concourse.thrift.TObject(); + _elem3897.read(iprot); + _val3894.add(_elem3897); } iprot.readSetEnd(); } - _val3926.put(_key3929, _val3930); + _val3890.put(_key3893, _val3894); } iprot.readMapEnd(); } - struct.success.put(_key3925, _val3926); + struct.success.put(_key3889, _val3890); } iprot.readMapEnd(); } @@ -378997,7 +377840,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -379005,19 +377848,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3935 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3899 : struct.success.entrySet()) { - oprot.writeI64(_iter3935.getKey()); + oprot.writeI64(_iter3899.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3935.getValue().size())); - for (java.util.Map.Entry> _iter3936 : _iter3935.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3899.getValue().size())); + for (java.util.Map.Entry> _iter3900 : _iter3899.getValue().entrySet()) { - oprot.writeString(_iter3936.getKey()); + oprot.writeString(_iter3900.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3936.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3937 : _iter3936.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3900.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3901 : _iter3900.getValue()) { - _iter3937.write(oprot); + _iter3901.write(oprot); } oprot.writeSetEnd(); } @@ -379050,17 +377893,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimeOrderPage_resultTupleScheme getScheme() { - return new selectKeysCriteriaTimeOrderPage_resultTupleScheme(); + public selectKeysCriteriaTimeOrder_resultTupleScheme getScheme() { + return new selectKeysCriteriaTimeOrder_resultTupleScheme(); } } - private static class selectKeysCriteriaTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -379079,19 +377922,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3938 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3902 : struct.success.entrySet()) { - oprot.writeI64(_iter3938.getKey()); + oprot.writeI64(_iter3902.getKey()); { - oprot.writeI32(_iter3938.getValue().size()); - for (java.util.Map.Entry> _iter3939 : _iter3938.getValue().entrySet()) + oprot.writeI32(_iter3902.getValue().size()); + for (java.util.Map.Entry> _iter3903 : _iter3902.getValue().entrySet()) { - oprot.writeString(_iter3939.getKey()); + oprot.writeString(_iter3903.getKey()); { - oprot.writeI32(_iter3939.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3940 : _iter3939.getValue()) + oprot.writeI32(_iter3903.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3904 : _iter3903.getValue()) { - _iter3940.write(oprot); + _iter3904.write(oprot); } } } @@ -379111,41 +377954,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3941 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3941.size); - long _key3942; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3943; - for (int _i3944 = 0; _i3944 < _map3941.size; ++_i3944) + org.apache.thrift.protocol.TMap _map3905 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3905.size); + long _key3906; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3907; + for (int _i3908 = 0; _i3908 < _map3905.size; ++_i3908) { - _key3942 = iprot.readI64(); + _key3906 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3945 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3943 = new java.util.LinkedHashMap>(2*_map3945.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3946; - @org.apache.thrift.annotation.Nullable java.util.Set _val3947; - for (int _i3948 = 0; _i3948 < _map3945.size; ++_i3948) + org.apache.thrift.protocol.TMap _map3909 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3907 = new java.util.LinkedHashMap>(2*_map3909.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3910; + @org.apache.thrift.annotation.Nullable java.util.Set _val3911; + for (int _i3912 = 0; _i3912 < _map3909.size; ++_i3912) { - _key3946 = iprot.readString(); + _key3910 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3949 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3947 = new java.util.LinkedHashSet(2*_set3949.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3950; - for (int _i3951 = 0; _i3951 < _set3949.size; ++_i3951) + org.apache.thrift.protocol.TSet _set3913 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3911 = new java.util.LinkedHashSet(2*_set3913.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3914; + for (int _i3915 = 0; _i3915 < _set3913.size; ++_i3915) { - _elem3950 = new com.cinchapi.concourse.thrift.TObject(); - _elem3950.read(iprot); - _val3947.add(_elem3950); + _elem3914 = new com.cinchapi.concourse.thrift.TObject(); + _elem3914.read(iprot); + _val3911.add(_elem3914); } } - _val3943.put(_key3946, _val3947); + _val3907.put(_key3910, _val3911); } } - struct.success.put(_key3942, _val3943); + struct.success.put(_key3906, _val3907); } } struct.setSuccessIsSet(true); @@ -379173,22 +378016,26 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestr_args"); + public static class selectKeysCriteriaTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -379198,9 +378045,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -379222,11 +378071,15 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -379271,6 +378124,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -379280,7 +378135,11 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -379288,16 +378147,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimeOrderPage_args.class, metaDataMap); } - public selectKeysCriteriaTimestr_args() { + public selectKeysCriteriaTimeOrderPage_args() { } - public selectKeysCriteriaTimestr_args( + public selectKeysCriteriaTimeOrderPage_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -379306,6 +378167,9 @@ public selectKeysCriteriaTimestr_args( this.keys = keys; this.criteria = criteria; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -379314,7 +378178,8 @@ public selectKeysCriteriaTimestr_args( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimestr_args(selectKeysCriteriaTimestr_args other) { + public selectKeysCriteriaTimeOrderPage_args(selectKeysCriteriaTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -379322,8 +378187,12 @@ public selectKeysCriteriaTimestr_args(selectKeysCriteriaTimestr_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -379337,15 +378206,18 @@ public selectKeysCriteriaTimestr_args(selectKeysCriteriaTimestr_args other) { } @Override - public selectKeysCriteriaTimestr_args deepCopy() { - return new selectKeysCriteriaTimestr_args(this); + public selectKeysCriteriaTimeOrderPage_args deepCopy() { + return new selectKeysCriteriaTimeOrderPage_args(this); } @Override public void clear() { this.keys = null; this.criteria = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -379372,7 +378244,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCriteriaTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -379397,7 +378269,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectKeysCriteriaTimestr_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectKeysCriteriaTimeOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -379417,28 +378289,76 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public selectKeysCriteriaTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysCriteriaTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeysCriteriaTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysCriteriaTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -379447,7 +378367,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCriteriaTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -379472,7 +378392,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCriteriaTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -379497,7 +378417,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCriteriaTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -379540,7 +378460,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -379584,6 +378520,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -379611,6 +378553,10 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -379623,12 +378569,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimestr_args) - return this.equals((selectKeysCriteriaTimestr_args)that); + if (that instanceof selectKeysCriteriaTimeOrderPage_args) + return this.equals((selectKeysCriteriaTimeOrderPage_args)that); return false; } - public boolean equals(selectKeysCriteriaTimestr_args that) { + public boolean equals(selectKeysCriteriaTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -379652,12 +378598,30 @@ public boolean equals(selectKeysCriteriaTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -379703,9 +378667,15 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -379723,7 +378693,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimestr_args other) { + public int compareTo(selectKeysCriteriaTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -379760,6 +378730,26 @@ public int compareTo(selectKeysCriteriaTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -379811,7 +378801,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimeOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -379831,10 +378821,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -379871,6 +378873,12 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -379889,23 +378897,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeysCriteriaTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestr_argsStandardScheme getScheme() { - return new selectKeysCriteriaTimestr_argsStandardScheme(); + public selectKeysCriteriaTimeOrderPage_argsStandardScheme getScheme() { + return new selectKeysCriteriaTimeOrderPage_argsStandardScheme(); } } - private static class selectKeysCriteriaTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -379918,13 +378928,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3952 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3952.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3953; - for (int _i3954 = 0; _i3954 < _list3952.size; ++_i3954) + org.apache.thrift.protocol.TList _list3916 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3916.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3917; + for (int _i3918 = 0; _i3918 < _list3916.size; ++_i3918) { - _elem3953 = iprot.readString(); - struct.keys.add(_elem3953); + _elem3917 = iprot.readString(); + struct.keys.add(_elem3917); } iprot.readListEnd(); } @@ -379943,14 +378953,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -379959,7 +378987,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -379968,7 +378996,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -379988,7 +379016,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -379996,9 +379024,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3955 : struct.keys) + for (java.lang.String _iter3919 : struct.keys) { - oprot.writeString(_iter3955); + oprot.writeString(_iter3919); } oprot.writeListEnd(); } @@ -380009,9 +379037,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -380035,17 +379071,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestr_argsTupleScheme getScheme() { - return new selectKeysCriteriaTimestr_argsTupleScheme(); + public selectKeysCriteriaTimeOrderPage_argsTupleScheme getScheme() { + return new selectKeysCriteriaTimeOrderPage_argsTupleScheme(); } } - private static class selectKeysCriteriaTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -380057,22 +379093,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3956 : struct.keys) + for (java.lang.String _iter3920 : struct.keys) { - oprot.writeString(_iter3956); + oprot.writeString(_iter3920); } } } @@ -380080,7 +379122,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -380094,18 +379142,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3957 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3957.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3958; - for (int _i3959 = 0; _i3959 < _list3957.size; ++_i3959) + org.apache.thrift.protocol.TList _list3921 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3921.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3922; + for (int _i3923 = 0; _i3923 < _list3921.size; ++_i3923) { - _elem3958 = iprot.readString(); - struct.keys.add(_elem3958); + _elem3922 = iprot.readString(); + struct.keys.add(_elem3922); } } struct.setKeysIsSet(true); @@ -380116,20 +379164,30 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -380141,31 +379199,28 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestr_result"); + public static class selectKeysCriteriaTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -380189,8 +379244,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -380249,35 +379302,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimeOrderPage_result.class, metaDataMap); } - public selectKeysCriteriaTimestr_result() { + public selectKeysCriteriaTimeOrderPage_result() { } - public selectKeysCriteriaTimestr_result( + public selectKeysCriteriaTimeOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimestr_result(selectKeysCriteriaTimestr_result other) { + public selectKeysCriteriaTimeOrderPage_result(selectKeysCriteriaTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -380314,16 +379363,13 @@ public selectKeysCriteriaTimestr_result(selectKeysCriteriaTimestr_result other) this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public selectKeysCriteriaTimestr_result deepCopy() { - return new selectKeysCriteriaTimestr_result(this); + public selectKeysCriteriaTimeOrderPage_result deepCopy() { + return new selectKeysCriteriaTimeOrderPage_result(this); } @Override @@ -380332,7 +379378,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -380351,7 +379396,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -380376,7 +379421,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCriteriaTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -380401,7 +379446,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCriteriaTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -380422,11 +379467,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public selectKeysCriteriaTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCriteriaTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -380446,31 +379491,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public selectKeysCriteriaTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -380502,15 +379522,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -380533,9 +379545,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -380556,20 +379565,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimestr_result) - return this.equals((selectKeysCriteriaTimestr_result)that); + if (that instanceof selectKeysCriteriaTimeOrderPage_result) + return this.equals((selectKeysCriteriaTimeOrderPage_result)that); return false; } - public boolean equals(selectKeysCriteriaTimestr_result that) { + public boolean equals(selectKeysCriteriaTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -380611,15 +379618,6 @@ public boolean equals(selectKeysCriteriaTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -380643,15 +379641,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(selectKeysCriteriaTimestr_result other) { + public int compareTo(selectKeysCriteriaTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -380698,16 +379692,6 @@ public int compareTo(selectKeysCriteriaTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -380728,7 +379712,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -380762,14 +379746,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -380795,17 +379771,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestr_resultStandardScheme getScheme() { - return new selectKeysCriteriaTimestr_resultStandardScheme(); + public selectKeysCriteriaTimeOrderPage_resultStandardScheme getScheme() { + return new selectKeysCriteriaTimeOrderPage_resultStandardScheme(); } } - private static class selectKeysCriteriaTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -380818,38 +379794,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3960 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3960.size); - long _key3961; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3962; - for (int _i3963 = 0; _i3963 < _map3960.size; ++_i3963) + org.apache.thrift.protocol.TMap _map3924 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3924.size); + long _key3925; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3926; + for (int _i3927 = 0; _i3927 < _map3924.size; ++_i3927) { - _key3961 = iprot.readI64(); + _key3925 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3964 = iprot.readMapBegin(); - _val3962 = new java.util.LinkedHashMap>(2*_map3964.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3965; - @org.apache.thrift.annotation.Nullable java.util.Set _val3966; - for (int _i3967 = 0; _i3967 < _map3964.size; ++_i3967) + org.apache.thrift.protocol.TMap _map3928 = iprot.readMapBegin(); + _val3926 = new java.util.LinkedHashMap>(2*_map3928.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3929; + @org.apache.thrift.annotation.Nullable java.util.Set _val3930; + for (int _i3931 = 0; _i3931 < _map3928.size; ++_i3931) { - _key3965 = iprot.readString(); + _key3929 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3968 = iprot.readSetBegin(); - _val3966 = new java.util.LinkedHashSet(2*_set3968.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3969; - for (int _i3970 = 0; _i3970 < _set3968.size; ++_i3970) + org.apache.thrift.protocol.TSet _set3932 = iprot.readSetBegin(); + _val3930 = new java.util.LinkedHashSet(2*_set3932.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3933; + for (int _i3934 = 0; _i3934 < _set3932.size; ++_i3934) { - _elem3969 = new com.cinchapi.concourse.thrift.TObject(); - _elem3969.read(iprot); - _val3966.add(_elem3969); + _elem3933 = new com.cinchapi.concourse.thrift.TObject(); + _elem3933.read(iprot); + _val3930.add(_elem3933); } iprot.readSetEnd(); } - _val3962.put(_key3965, _val3966); + _val3926.put(_key3929, _val3930); } iprot.readMapEnd(); } - struct.success.put(_key3961, _val3962); + struct.success.put(_key3925, _val3926); } iprot.readMapEnd(); } @@ -380878,22 +379854,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -380906,7 +379873,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -380914,19 +379881,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter3971 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3935 : struct.success.entrySet()) { - oprot.writeI64(_iter3971.getKey()); + oprot.writeI64(_iter3935.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3971.getValue().size())); - for (java.util.Map.Entry> _iter3972 : _iter3971.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3935.getValue().size())); + for (java.util.Map.Entry> _iter3936 : _iter3935.getValue().entrySet()) { - oprot.writeString(_iter3972.getKey()); + oprot.writeString(_iter3936.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3972.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter3973 : _iter3972.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3936.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3937 : _iter3936.getValue()) { - _iter3973.write(oprot); + _iter3937.write(oprot); } oprot.writeSetEnd(); } @@ -380953,28 +379920,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class selectKeysCriteriaTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestr_resultTupleScheme getScheme() { - return new selectKeysCriteriaTimestr_resultTupleScheme(); + public selectKeysCriteriaTimeOrderPage_resultTupleScheme getScheme() { + return new selectKeysCriteriaTimeOrderPage_resultTupleScheme(); } } - private static class selectKeysCriteriaTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -380989,26 +379951,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter3974 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3938 : struct.success.entrySet()) { - oprot.writeI64(_iter3974.getKey()); + oprot.writeI64(_iter3938.getKey()); { - oprot.writeI32(_iter3974.getValue().size()); - for (java.util.Map.Entry> _iter3975 : _iter3974.getValue().entrySet()) + oprot.writeI32(_iter3938.getValue().size()); + for (java.util.Map.Entry> _iter3939 : _iter3938.getValue().entrySet()) { - oprot.writeString(_iter3975.getKey()); + oprot.writeString(_iter3939.getKey()); { - oprot.writeI32(_iter3975.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter3976 : _iter3975.getValue()) + oprot.writeI32(_iter3939.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3940 : _iter3939.getValue()) { - _iter3976.write(oprot); + _iter3940.write(oprot); } } } @@ -381025,47 +379984,44 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map3977 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map3977.size); - long _key3978; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3979; - for (int _i3980 = 0; _i3980 < _map3977.size; ++_i3980) + org.apache.thrift.protocol.TMap _map3941 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3941.size); + long _key3942; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3943; + for (int _i3944 = 0; _i3944 < _map3941.size; ++_i3944) { - _key3978 = iprot.readI64(); + _key3942 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map3981 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val3979 = new java.util.LinkedHashMap>(2*_map3981.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key3982; - @org.apache.thrift.annotation.Nullable java.util.Set _val3983; - for (int _i3984 = 0; _i3984 < _map3981.size; ++_i3984) + org.apache.thrift.protocol.TMap _map3945 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3943 = new java.util.LinkedHashMap>(2*_map3945.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3946; + @org.apache.thrift.annotation.Nullable java.util.Set _val3947; + for (int _i3948 = 0; _i3948 < _map3945.size; ++_i3948) { - _key3982 = iprot.readString(); + _key3946 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set3985 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val3983 = new java.util.LinkedHashSet(2*_set3985.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3986; - for (int _i3987 = 0; _i3987 < _set3985.size; ++_i3987) + org.apache.thrift.protocol.TSet _set3949 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3947 = new java.util.LinkedHashSet(2*_set3949.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3950; + for (int _i3951 = 0; _i3951 < _set3949.size; ++_i3951) { - _elem3986 = new com.cinchapi.concourse.thrift.TObject(); - _elem3986.read(iprot); - _val3983.add(_elem3986); + _elem3950 = new com.cinchapi.concourse.thrift.TObject(); + _elem3950.read(iprot); + _val3947.add(_elem3950); } } - _val3979.put(_key3982, _val3983); + _val3943.put(_key3946, _val3947); } } - struct.success.put(_key3978, _val3979); + struct.success.put(_key3942, _val3943); } } struct.setSuccessIsSet(true); @@ -381081,15 +380037,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -381098,24 +380049,22 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrPage_args"); + public static class selectKeysCriteriaTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -381125,10 +380074,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -381150,13 +380098,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -381211,8 +380157,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -381220,17 +380164,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestr_args.class, metaDataMap); } - public selectKeysCriteriaTimestrPage_args() { + public selectKeysCriteriaTimestr_args() { } - public selectKeysCriteriaTimestrPage_args( + public selectKeysCriteriaTimestr_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -381239,7 +380182,6 @@ public selectKeysCriteriaTimestrPage_args( this.keys = keys; this.criteria = criteria; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -381248,7 +380190,7 @@ public selectKeysCriteriaTimestrPage_args( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimestrPage_args(selectKeysCriteriaTimestrPage_args other) { + public selectKeysCriteriaTimestr_args(selectKeysCriteriaTimestr_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -381259,9 +380201,6 @@ public selectKeysCriteriaTimestrPage_args(selectKeysCriteriaTimestrPage_args oth if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -381274,8 +380213,8 @@ public selectKeysCriteriaTimestrPage_args(selectKeysCriteriaTimestrPage_args oth } @Override - public selectKeysCriteriaTimestrPage_args deepCopy() { - return new selectKeysCriteriaTimestrPage_args(this); + public selectKeysCriteriaTimestr_args deepCopy() { + return new selectKeysCriteriaTimestr_args(this); } @Override @@ -381283,7 +380222,6 @@ public void clear() { this.keys = null; this.criteria = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -381310,7 +380248,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCriteriaTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -381335,7 +380273,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectKeysCriteriaTimestrPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectKeysCriteriaTimestr_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -381360,7 +380298,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysCriteriaTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysCriteriaTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -381380,37 +380318,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCriteriaTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCriteriaTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -381435,7 +380348,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCriteriaTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -381460,7 +380373,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCriteriaTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -381507,14 +380420,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -381555,9 +380460,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -381585,8 +380487,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -381599,12 +380499,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimestrPage_args) - return this.equals((selectKeysCriteriaTimestrPage_args)that); + if (that instanceof selectKeysCriteriaTimestr_args) + return this.equals((selectKeysCriteriaTimestr_args)that); return false; } - public boolean equals(selectKeysCriteriaTimestrPage_args that) { + public boolean equals(selectKeysCriteriaTimestr_args that) { if (that == null) return false; if (this == that) @@ -381637,15 +380537,6 @@ public boolean equals(selectKeysCriteriaTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -381692,10 +380583,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -381712,7 +380599,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimestrPage_args other) { + public int compareTo(selectKeysCriteriaTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -381749,16 +380636,6 @@ public int compareTo(selectKeysCriteriaTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -381810,7 +380687,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestr_args("); boolean first = true; sb.append("keys:"); @@ -381837,14 +380714,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -381878,9 +380747,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -381905,17 +380771,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrPage_argsStandardScheme getScheme() { - return new selectKeysCriteriaTimestrPage_argsStandardScheme(); + public selectKeysCriteriaTimestr_argsStandardScheme getScheme() { + return new selectKeysCriteriaTimestr_argsStandardScheme(); } } - private static class selectKeysCriteriaTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -381928,13 +380794,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list3988 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list3988.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3989; - for (int _i3990 = 0; _i3990 < _list3988.size; ++_i3990) + org.apache.thrift.protocol.TList _list3952 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3952.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3953; + for (int _i3954 = 0; _i3954 < _list3952.size; ++_i3954) { - _elem3989 = iprot.readString(); - struct.keys.add(_elem3989); + _elem3953 = iprot.readString(); + struct.keys.add(_elem3953); } iprot.readListEnd(); } @@ -381960,16 +380826,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -381978,7 +380835,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -381987,7 +380844,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -382007,7 +380864,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -382015,9 +380872,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter3991 : struct.keys) + for (java.lang.String _iter3955 : struct.keys) { - oprot.writeString(_iter3991); + oprot.writeString(_iter3955); } oprot.writeListEnd(); } @@ -382033,11 +380890,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -382059,17 +380911,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrPage_argsTupleScheme getScheme() { - return new selectKeysCriteriaTimestrPage_argsTupleScheme(); + public selectKeysCriteriaTimestr_argsTupleScheme getScheme() { + return new selectKeysCriteriaTimestr_argsTupleScheme(); } } - private static class selectKeysCriteriaTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -382081,25 +380933,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter3992 : struct.keys) + for (java.lang.String _iter3956 : struct.keys) { - oprot.writeString(_iter3992); + oprot.writeString(_iter3956); } } } @@ -382109,9 +380958,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -382124,18 +380970,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list3993 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list3993.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem3994; - for (int _i3995 = 0; _i3995 < _list3993.size; ++_i3995) + org.apache.thrift.protocol.TList _list3957 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3957.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3958; + for (int _i3959 = 0; _i3959 < _list3957.size; ++_i3959) { - _elem3994 = iprot.readString(); - struct.keys.add(_elem3994); + _elem3958 = iprot.readString(); + struct.keys.add(_elem3958); } } struct.setKeysIsSet(true); @@ -382150,21 +380996,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -382176,8 +381017,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrPage_result"); + public static class selectKeysCriteriaTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -382185,8 +381026,8 @@ public static class selectKeysCriteriaTimestrPage_result implements org.apache.t private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -382288,13 +381129,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestr_result.class, metaDataMap); } - public selectKeysCriteriaTimestrPage_result() { + public selectKeysCriteriaTimestr_result() { } - public selectKeysCriteriaTimestrPage_result( + public selectKeysCriteriaTimestr_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -382312,7 +381153,7 @@ public selectKeysCriteriaTimestrPage_result( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimestrPage_result(selectKeysCriteriaTimestrPage_result other) { + public selectKeysCriteriaTimestr_result(selectKeysCriteriaTimestr_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -382357,8 +381198,8 @@ public selectKeysCriteriaTimestrPage_result(selectKeysCriteriaTimestrPage_result } @Override - public selectKeysCriteriaTimestrPage_result deepCopy() { - return new selectKeysCriteriaTimestrPage_result(this); + public selectKeysCriteriaTimestr_result deepCopy() { + return new selectKeysCriteriaTimestr_result(this); } @Override @@ -382386,7 +381227,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -382411,7 +381252,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCriteriaTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -382436,7 +381277,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCriteriaTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -382461,7 +381302,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCriteriaTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCriteriaTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -382486,7 +381327,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCriteriaTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCriteriaTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -382599,12 +381440,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimestrPage_result) - return this.equals((selectKeysCriteriaTimestrPage_result)that); + if (that instanceof selectKeysCriteriaTimestr_result) + return this.equals((selectKeysCriteriaTimestr_result)that); return false; } - public boolean equals(selectKeysCriteriaTimestrPage_result that) { + public boolean equals(selectKeysCriteriaTimestr_result that) { if (that == null) return false; if (this == that) @@ -382686,7 +381527,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimestrPage_result other) { + public int compareTo(selectKeysCriteriaTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -382763,7 +381604,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestr_result("); boolean first = true; sb.append("success:"); @@ -382830,17 +381671,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrPage_resultStandardScheme getScheme() { - return new selectKeysCriteriaTimestrPage_resultStandardScheme(); + public selectKeysCriteriaTimestr_resultStandardScheme getScheme() { + return new selectKeysCriteriaTimestr_resultStandardScheme(); } } - private static class selectKeysCriteriaTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -382853,38 +381694,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map3996 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map3996.size); - long _key3997; - @org.apache.thrift.annotation.Nullable java.util.Map> _val3998; - for (int _i3999 = 0; _i3999 < _map3996.size; ++_i3999) + org.apache.thrift.protocol.TMap _map3960 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3960.size); + long _key3961; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3962; + for (int _i3963 = 0; _i3963 < _map3960.size; ++_i3963) { - _key3997 = iprot.readI64(); + _key3961 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4000 = iprot.readMapBegin(); - _val3998 = new java.util.LinkedHashMap>(2*_map4000.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4001; - @org.apache.thrift.annotation.Nullable java.util.Set _val4002; - for (int _i4003 = 0; _i4003 < _map4000.size; ++_i4003) + org.apache.thrift.protocol.TMap _map3964 = iprot.readMapBegin(); + _val3962 = new java.util.LinkedHashMap>(2*_map3964.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3965; + @org.apache.thrift.annotation.Nullable java.util.Set _val3966; + for (int _i3967 = 0; _i3967 < _map3964.size; ++_i3967) { - _key4001 = iprot.readString(); + _key3965 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4004 = iprot.readSetBegin(); - _val4002 = new java.util.LinkedHashSet(2*_set4004.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4005; - for (int _i4006 = 0; _i4006 < _set4004.size; ++_i4006) + org.apache.thrift.protocol.TSet _set3968 = iprot.readSetBegin(); + _val3966 = new java.util.LinkedHashSet(2*_set3968.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3969; + for (int _i3970 = 0; _i3970 < _set3968.size; ++_i3970) { - _elem4005 = new com.cinchapi.concourse.thrift.TObject(); - _elem4005.read(iprot); - _val4002.add(_elem4005); + _elem3969 = new com.cinchapi.concourse.thrift.TObject(); + _elem3969.read(iprot); + _val3966.add(_elem3969); } iprot.readSetEnd(); } - _val3998.put(_key4001, _val4002); + _val3962.put(_key3965, _val3966); } iprot.readMapEnd(); } - struct.success.put(_key3997, _val3998); + struct.success.put(_key3961, _val3962); } iprot.readMapEnd(); } @@ -382941,7 +381782,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -382949,19 +381790,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4007 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3971 : struct.success.entrySet()) { - oprot.writeI64(_iter4007.getKey()); + oprot.writeI64(_iter3971.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4007.getValue().size())); - for (java.util.Map.Entry> _iter4008 : _iter4007.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter3971.getValue().size())); + for (java.util.Map.Entry> _iter3972 : _iter3971.getValue().entrySet()) { - oprot.writeString(_iter4008.getKey()); + oprot.writeString(_iter3972.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4008.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4009 : _iter4008.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter3972.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter3973 : _iter3972.getValue()) { - _iter4009.write(oprot); + _iter3973.write(oprot); } oprot.writeSetEnd(); } @@ -382999,17 +381840,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrPage_resultTupleScheme getScheme() { - return new selectKeysCriteriaTimestrPage_resultTupleScheme(); + public selectKeysCriteriaTimestr_resultTupleScheme getScheme() { + return new selectKeysCriteriaTimestr_resultTupleScheme(); } } - private static class selectKeysCriteriaTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -383031,19 +381872,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4010 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter3974 : struct.success.entrySet()) { - oprot.writeI64(_iter4010.getKey()); + oprot.writeI64(_iter3974.getKey()); { - oprot.writeI32(_iter4010.getValue().size()); - for (java.util.Map.Entry> _iter4011 : _iter4010.getValue().entrySet()) + oprot.writeI32(_iter3974.getValue().size()); + for (java.util.Map.Entry> _iter3975 : _iter3974.getValue().entrySet()) { - oprot.writeString(_iter4011.getKey()); + oprot.writeString(_iter3975.getKey()); { - oprot.writeI32(_iter4011.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4012 : _iter4011.getValue()) + oprot.writeI32(_iter3975.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter3976 : _iter3975.getValue()) { - _iter4012.write(oprot); + _iter3976.write(oprot); } } } @@ -383066,41 +381907,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4013 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4013.size); - long _key4014; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4015; - for (int _i4016 = 0; _i4016 < _map4013.size; ++_i4016) + org.apache.thrift.protocol.TMap _map3977 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map3977.size); + long _key3978; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3979; + for (int _i3980 = 0; _i3980 < _map3977.size; ++_i3980) { - _key4014 = iprot.readI64(); + _key3978 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4017 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4015 = new java.util.LinkedHashMap>(2*_map4017.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4018; - @org.apache.thrift.annotation.Nullable java.util.Set _val4019; - for (int _i4020 = 0; _i4020 < _map4017.size; ++_i4020) + org.apache.thrift.protocol.TMap _map3981 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val3979 = new java.util.LinkedHashMap>(2*_map3981.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key3982; + @org.apache.thrift.annotation.Nullable java.util.Set _val3983; + for (int _i3984 = 0; _i3984 < _map3981.size; ++_i3984) { - _key4018 = iprot.readString(); + _key3982 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4021 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4019 = new java.util.LinkedHashSet(2*_set4021.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4022; - for (int _i4023 = 0; _i4023 < _set4021.size; ++_i4023) + org.apache.thrift.protocol.TSet _set3985 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val3983 = new java.util.LinkedHashSet(2*_set3985.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem3986; + for (int _i3987 = 0; _i3987 < _set3985.size; ++_i3987) { - _elem4022 = new com.cinchapi.concourse.thrift.TObject(); - _elem4022.read(iprot); - _val4019.add(_elem4022); + _elem3986 = new com.cinchapi.concourse.thrift.TObject(); + _elem3986.read(iprot); + _val3983.add(_elem3986); } } - _val4015.put(_key4018, _val4019); + _val3979.put(_key3982, _val3983); } } - struct.success.put(_key4014, _val4015); + struct.success.put(_key3978, _val3979); } } struct.setSuccessIsSet(true); @@ -383133,24 +381974,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrOrder_args"); + public static class selectKeysCriteriaTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -383160,7 +382001,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -383185,8 +382026,8 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -383246,8 +382087,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -383255,17 +382096,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrPage_args.class, metaDataMap); } - public selectKeysCriteriaTimestrOrder_args() { + public selectKeysCriteriaTimestrPage_args() { } - public selectKeysCriteriaTimestrOrder_args( + public selectKeysCriteriaTimestrPage_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -383274,7 +382115,7 @@ public selectKeysCriteriaTimestrOrder_args( this.keys = keys; this.criteria = criteria; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -383283,7 +382124,7 @@ public selectKeysCriteriaTimestrOrder_args( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimestrOrder_args(selectKeysCriteriaTimestrOrder_args other) { + public selectKeysCriteriaTimestrPage_args(selectKeysCriteriaTimestrPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -383294,8 +382135,8 @@ public selectKeysCriteriaTimestrOrder_args(selectKeysCriteriaTimestrOrder_args o if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -383309,8 +382150,8 @@ public selectKeysCriteriaTimestrOrder_args(selectKeysCriteriaTimestrOrder_args o } @Override - public selectKeysCriteriaTimestrOrder_args deepCopy() { - return new selectKeysCriteriaTimestrOrder_args(this); + public selectKeysCriteriaTimestrPage_args deepCopy() { + return new selectKeysCriteriaTimestrPage_args(this); } @Override @@ -383318,7 +382159,7 @@ public void clear() { this.keys = null; this.criteria = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -383345,7 +382186,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCriteriaTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -383370,7 +382211,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectKeysCriteriaTimestrOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectKeysCriteriaTimestrPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -383395,7 +382236,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysCriteriaTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysCriteriaTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -383416,27 +382257,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeysCriteriaTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeysCriteriaTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -383445,7 +382286,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCriteriaTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -383470,7 +382311,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCriteriaTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -383495,7 +382336,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCriteriaTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -383542,11 +382383,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -383590,8 +382431,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -383620,8 +382461,8 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -383634,12 +382475,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimestrOrder_args) - return this.equals((selectKeysCriteriaTimestrOrder_args)that); + if (that instanceof selectKeysCriteriaTimestrPage_args) + return this.equals((selectKeysCriteriaTimestrPage_args)that); return false; } - public boolean equals(selectKeysCriteriaTimestrOrder_args that) { + public boolean equals(selectKeysCriteriaTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -383672,12 +382513,12 @@ public boolean equals(selectKeysCriteriaTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -383727,9 +382568,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -383747,7 +382588,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimestrOrder_args other) { + public int compareTo(selectKeysCriteriaTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -383784,12 +382625,12 @@ public int compareTo(selectKeysCriteriaTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -383845,7 +382686,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrPage_args("); boolean first = true; sb.append("keys:"); @@ -383872,11 +382713,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -383913,8 +382754,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -383940,17 +382781,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrOrder_argsStandardScheme getScheme() { - return new selectKeysCriteriaTimestrOrder_argsStandardScheme(); + public selectKeysCriteriaTimestrPage_argsStandardScheme getScheme() { + return new selectKeysCriteriaTimestrPage_argsStandardScheme(); } } - private static class selectKeysCriteriaTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -383963,13 +382804,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4024 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4024.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4025; - for (int _i4026 = 0; _i4026 < _list4024.size; ++_i4026) + org.apache.thrift.protocol.TList _list3988 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list3988.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3989; + for (int _i3990 = 0; _i3990 < _list3988.size; ++_i3990) { - _elem4025 = iprot.readString(); - struct.keys.add(_elem4025); + _elem3989 = iprot.readString(); + struct.keys.add(_elem3989); } iprot.readListEnd(); } @@ -383995,11 +382836,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -384042,7 +382883,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -384050,9 +382891,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4027 : struct.keys) + for (java.lang.String _iter3991 : struct.keys) { - oprot.writeString(_iter4027); + oprot.writeString(_iter3991); } oprot.writeListEnd(); } @@ -384068,9 +382909,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -384094,17 +382935,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrOrder_argsTupleScheme getScheme() { - return new selectKeysCriteriaTimestrOrder_argsTupleScheme(); + public selectKeysCriteriaTimestrPage_argsTupleScheme getScheme() { + return new selectKeysCriteriaTimestrPage_argsTupleScheme(); } } - private static class selectKeysCriteriaTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -384116,7 +382957,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -384132,9 +382973,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4028 : struct.keys) + for (java.lang.String _iter3992 : struct.keys) { - oprot.writeString(_iter4028); + oprot.writeString(_iter3992); } } } @@ -384144,8 +382985,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -384159,18 +383000,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4029 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4029.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4030; - for (int _i4031 = 0; _i4031 < _list4029.size; ++_i4031) + org.apache.thrift.protocol.TList _list3993 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list3993.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem3994; + for (int _i3995 = 0; _i3995 < _list3993.size; ++_i3995) { - _elem4030 = iprot.readString(); - struct.keys.add(_elem4030); + _elem3994 = iprot.readString(); + struct.keys.add(_elem3994); } } struct.setKeysIsSet(true); @@ -384185,9 +383026,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -384211,8 +383052,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrOrder_result"); + public static class selectKeysCriteriaTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -384220,8 +383061,8 @@ public static class selectKeysCriteriaTimestrOrder_result implements org.apache. private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -384323,13 +383164,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrPage_result.class, metaDataMap); } - public selectKeysCriteriaTimestrOrder_result() { + public selectKeysCriteriaTimestrPage_result() { } - public selectKeysCriteriaTimestrOrder_result( + public selectKeysCriteriaTimestrPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -384347,7 +383188,7 @@ public selectKeysCriteriaTimestrOrder_result( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimestrOrder_result(selectKeysCriteriaTimestrOrder_result other) { + public selectKeysCriteriaTimestrPage_result(selectKeysCriteriaTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -384392,8 +383233,8 @@ public selectKeysCriteriaTimestrOrder_result(selectKeysCriteriaTimestrOrder_resu } @Override - public selectKeysCriteriaTimestrOrder_result deepCopy() { - return new selectKeysCriteriaTimestrOrder_result(this); + public selectKeysCriteriaTimestrPage_result deepCopy() { + return new selectKeysCriteriaTimestrPage_result(this); } @Override @@ -384421,7 +383262,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -384446,7 +383287,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCriteriaTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -384471,7 +383312,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCriteriaTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -384496,7 +383337,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCriteriaTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCriteriaTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -384521,7 +383362,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCriteriaTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCriteriaTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -384634,12 +383475,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimestrOrder_result) - return this.equals((selectKeysCriteriaTimestrOrder_result)that); + if (that instanceof selectKeysCriteriaTimestrPage_result) + return this.equals((selectKeysCriteriaTimestrPage_result)that); return false; } - public boolean equals(selectKeysCriteriaTimestrOrder_result that) { + public boolean equals(selectKeysCriteriaTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -384721,7 +383562,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimestrOrder_result other) { + public int compareTo(selectKeysCriteriaTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -384798,7 +383639,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -384865,17 +383706,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrOrder_resultStandardScheme getScheme() { - return new selectKeysCriteriaTimestrOrder_resultStandardScheme(); + public selectKeysCriteriaTimestrPage_resultStandardScheme getScheme() { + return new selectKeysCriteriaTimestrPage_resultStandardScheme(); } } - private static class selectKeysCriteriaTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -384888,38 +383729,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4032 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4032.size); - long _key4033; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4034; - for (int _i4035 = 0; _i4035 < _map4032.size; ++_i4035) + org.apache.thrift.protocol.TMap _map3996 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map3996.size); + long _key3997; + @org.apache.thrift.annotation.Nullable java.util.Map> _val3998; + for (int _i3999 = 0; _i3999 < _map3996.size; ++_i3999) { - _key4033 = iprot.readI64(); + _key3997 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4036 = iprot.readMapBegin(); - _val4034 = new java.util.LinkedHashMap>(2*_map4036.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4037; - @org.apache.thrift.annotation.Nullable java.util.Set _val4038; - for (int _i4039 = 0; _i4039 < _map4036.size; ++_i4039) + org.apache.thrift.protocol.TMap _map4000 = iprot.readMapBegin(); + _val3998 = new java.util.LinkedHashMap>(2*_map4000.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4001; + @org.apache.thrift.annotation.Nullable java.util.Set _val4002; + for (int _i4003 = 0; _i4003 < _map4000.size; ++_i4003) { - _key4037 = iprot.readString(); + _key4001 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4040 = iprot.readSetBegin(); - _val4038 = new java.util.LinkedHashSet(2*_set4040.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4041; - for (int _i4042 = 0; _i4042 < _set4040.size; ++_i4042) + org.apache.thrift.protocol.TSet _set4004 = iprot.readSetBegin(); + _val4002 = new java.util.LinkedHashSet(2*_set4004.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4005; + for (int _i4006 = 0; _i4006 < _set4004.size; ++_i4006) { - _elem4041 = new com.cinchapi.concourse.thrift.TObject(); - _elem4041.read(iprot); - _val4038.add(_elem4041); + _elem4005 = new com.cinchapi.concourse.thrift.TObject(); + _elem4005.read(iprot); + _val4002.add(_elem4005); } iprot.readSetEnd(); } - _val4034.put(_key4037, _val4038); + _val3998.put(_key4001, _val4002); } iprot.readMapEnd(); } - struct.success.put(_key4033, _val4034); + struct.success.put(_key3997, _val3998); } iprot.readMapEnd(); } @@ -384976,7 +383817,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -384984,19 +383825,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4043 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4007 : struct.success.entrySet()) { - oprot.writeI64(_iter4043.getKey()); + oprot.writeI64(_iter4007.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4043.getValue().size())); - for (java.util.Map.Entry> _iter4044 : _iter4043.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4007.getValue().size())); + for (java.util.Map.Entry> _iter4008 : _iter4007.getValue().entrySet()) { - oprot.writeString(_iter4044.getKey()); + oprot.writeString(_iter4008.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4044.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4045 : _iter4044.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4008.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4009 : _iter4008.getValue()) { - _iter4045.write(oprot); + _iter4009.write(oprot); } oprot.writeSetEnd(); } @@ -385034,17 +383875,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrOrder_resultTupleScheme getScheme() { - return new selectKeysCriteriaTimestrOrder_resultTupleScheme(); + public selectKeysCriteriaTimestrPage_resultTupleScheme getScheme() { + return new selectKeysCriteriaTimestrPage_resultTupleScheme(); } } - private static class selectKeysCriteriaTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -385066,19 +383907,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4046 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4010 : struct.success.entrySet()) { - oprot.writeI64(_iter4046.getKey()); + oprot.writeI64(_iter4010.getKey()); { - oprot.writeI32(_iter4046.getValue().size()); - for (java.util.Map.Entry> _iter4047 : _iter4046.getValue().entrySet()) + oprot.writeI32(_iter4010.getValue().size()); + for (java.util.Map.Entry> _iter4011 : _iter4010.getValue().entrySet()) { - oprot.writeString(_iter4047.getKey()); + oprot.writeString(_iter4011.getKey()); { - oprot.writeI32(_iter4047.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4048 : _iter4047.getValue()) + oprot.writeI32(_iter4011.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4012 : _iter4011.getValue()) { - _iter4048.write(oprot); + _iter4012.write(oprot); } } } @@ -385101,41 +383942,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4049 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4049.size); - long _key4050; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4051; - for (int _i4052 = 0; _i4052 < _map4049.size; ++_i4052) + org.apache.thrift.protocol.TMap _map4013 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4013.size); + long _key4014; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4015; + for (int _i4016 = 0; _i4016 < _map4013.size; ++_i4016) { - _key4050 = iprot.readI64(); + _key4014 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4053 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4051 = new java.util.LinkedHashMap>(2*_map4053.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4054; - @org.apache.thrift.annotation.Nullable java.util.Set _val4055; - for (int _i4056 = 0; _i4056 < _map4053.size; ++_i4056) + org.apache.thrift.protocol.TMap _map4017 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4015 = new java.util.LinkedHashMap>(2*_map4017.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4018; + @org.apache.thrift.annotation.Nullable java.util.Set _val4019; + for (int _i4020 = 0; _i4020 < _map4017.size; ++_i4020) { - _key4054 = iprot.readString(); + _key4018 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4057 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4055 = new java.util.LinkedHashSet(2*_set4057.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4058; - for (int _i4059 = 0; _i4059 < _set4057.size; ++_i4059) + org.apache.thrift.protocol.TSet _set4021 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4019 = new java.util.LinkedHashSet(2*_set4021.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4022; + for (int _i4023 = 0; _i4023 < _set4021.size; ++_i4023) { - _elem4058 = new com.cinchapi.concourse.thrift.TObject(); - _elem4058.read(iprot); - _val4055.add(_elem4058); + _elem4022 = new com.cinchapi.concourse.thrift.TObject(); + _elem4022.read(iprot); + _val4019.add(_elem4022); } } - _val4051.put(_key4054, _val4055); + _val4015.put(_key4018, _val4019); } } - struct.success.put(_key4050, _val4051); + struct.success.put(_key4014, _val4015); } } struct.setSuccessIsSet(true); @@ -385168,26 +384009,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrOrderPage_args"); + public static class selectKeysCriteriaTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -385198,10 +384037,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -385225,13 +384063,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -385288,8 +384124,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -385297,18 +384131,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrOrder_args.class, metaDataMap); } - public selectKeysCriteriaTimestrOrderPage_args() { + public selectKeysCriteriaTimestrOrder_args() { } - public selectKeysCriteriaTimestrOrderPage_args( + public selectKeysCriteriaTimestrOrder_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -385318,7 +384151,6 @@ public selectKeysCriteriaTimestrOrderPage_args( this.criteria = criteria; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -385327,7 +384159,7 @@ public selectKeysCriteriaTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimestrOrderPage_args(selectKeysCriteriaTimestrOrderPage_args other) { + public selectKeysCriteriaTimestrOrder_args(selectKeysCriteriaTimestrOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -385341,9 +384173,6 @@ public selectKeysCriteriaTimestrOrderPage_args(selectKeysCriteriaTimestrOrderPag if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -385356,8 +384185,8 @@ public selectKeysCriteriaTimestrOrderPage_args(selectKeysCriteriaTimestrOrderPag } @Override - public selectKeysCriteriaTimestrOrderPage_args deepCopy() { - return new selectKeysCriteriaTimestrOrderPage_args(this); + public selectKeysCriteriaTimestrOrder_args deepCopy() { + return new selectKeysCriteriaTimestrOrder_args(this); } @Override @@ -385366,7 +384195,6 @@ public void clear() { this.criteria = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -385393,7 +384221,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCriteriaTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -385418,7 +384246,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public selectKeysCriteriaTimestrOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public selectKeysCriteriaTimestrOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -385443,7 +384271,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysCriteriaTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysCriteriaTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -385468,7 +384296,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeysCriteriaTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeysCriteriaTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -385488,37 +384316,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCriteriaTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCriteriaTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -385543,7 +384346,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCriteriaTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -385568,7 +384371,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCriteriaTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -385623,14 +384426,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -385674,9 +384469,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -385706,8 +384498,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -385720,12 +384510,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimestrOrderPage_args) - return this.equals((selectKeysCriteriaTimestrOrderPage_args)that); + if (that instanceof selectKeysCriteriaTimestrOrder_args) + return this.equals((selectKeysCriteriaTimestrOrder_args)that); return false; } - public boolean equals(selectKeysCriteriaTimestrOrderPage_args that) { + public boolean equals(selectKeysCriteriaTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -385767,15 +384557,6 @@ public boolean equals(selectKeysCriteriaTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -385826,10 +384607,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -385846,7 +384623,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimestrOrderPage_args other) { + public int compareTo(selectKeysCriteriaTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -385893,16 +384670,6 @@ public int compareTo(selectKeysCriteriaTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -385954,7 +384721,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrOrder_args("); boolean first = true; sb.append("keys:"); @@ -385989,14 +384756,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -386033,9 +384792,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -386060,17 +384816,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrOrderPage_argsStandardScheme getScheme() { - return new selectKeysCriteriaTimestrOrderPage_argsStandardScheme(); + public selectKeysCriteriaTimestrOrder_argsStandardScheme getScheme() { + return new selectKeysCriteriaTimestrOrder_argsStandardScheme(); } } - private static class selectKeysCriteriaTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -386083,13 +384839,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4060 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4060.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4061; - for (int _i4062 = 0; _i4062 < _list4060.size; ++_i4062) + org.apache.thrift.protocol.TList _list4024 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4024.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4025; + for (int _i4026 = 0; _i4026 < _list4024.size; ++_i4026) { - _elem4061 = iprot.readString(); - struct.keys.add(_elem4061); + _elem4025 = iprot.readString(); + struct.keys.add(_elem4025); } iprot.readListEnd(); } @@ -386124,16 +384880,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -386142,7 +384889,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -386151,7 +384898,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -386171,7 +384918,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -386179,9 +384926,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4063 : struct.keys) + for (java.lang.String _iter4027 : struct.keys) { - oprot.writeString(_iter4063); + oprot.writeString(_iter4027); } oprot.writeListEnd(); } @@ -386202,11 +384949,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -386228,17 +384970,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrOrderPage_argsTupleScheme getScheme() { - return new selectKeysCriteriaTimestrOrderPage_argsTupleScheme(); + public selectKeysCriteriaTimestrOrder_argsTupleScheme getScheme() { + return new selectKeysCriteriaTimestrOrder_argsTupleScheme(); } } - private static class selectKeysCriteriaTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -386253,25 +384995,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4064 : struct.keys) + for (java.lang.String _iter4028 : struct.keys) { - oprot.writeString(_iter4064); + oprot.writeString(_iter4028); } } } @@ -386284,9 +385023,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -386299,18 +385035,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4065 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4065.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4066; - for (int _i4067 = 0; _i4067 < _list4065.size; ++_i4067) + org.apache.thrift.protocol.TList _list4029 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4029.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4030; + for (int _i4031 = 0; _i4031 < _list4029.size; ++_i4031) { - _elem4066 = iprot.readString(); - struct.keys.add(_elem4066); + _elem4030 = iprot.readString(); + struct.keys.add(_elem4030); } } struct.setKeysIsSet(true); @@ -386330,21 +385066,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTi struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -386356,8 +385087,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCriteriaTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrOrderPage_result"); + public static class selectKeysCriteriaTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -386365,8 +385096,8 @@ public static class selectKeysCriteriaTimestrOrderPage_result implements org.apa private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -386468,13 +385199,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrOrder_result.class, metaDataMap); } - public selectKeysCriteriaTimestrOrderPage_result() { + public selectKeysCriteriaTimestrOrder_result() { } - public selectKeysCriteriaTimestrOrderPage_result( + public selectKeysCriteriaTimestrOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -386492,7 +385223,7 @@ public selectKeysCriteriaTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeysCriteriaTimestrOrderPage_result(selectKeysCriteriaTimestrOrderPage_result other) { + public selectKeysCriteriaTimestrOrder_result(selectKeysCriteriaTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -386537,8 +385268,8 @@ public selectKeysCriteriaTimestrOrderPage_result(selectKeysCriteriaTimestrOrderP } @Override - public selectKeysCriteriaTimestrOrderPage_result deepCopy() { - return new selectKeysCriteriaTimestrOrderPage_result(this); + public selectKeysCriteriaTimestrOrder_result deepCopy() { + return new selectKeysCriteriaTimestrOrder_result(this); } @Override @@ -386566,7 +385297,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -386591,7 +385322,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCriteriaTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -386616,7 +385347,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCriteriaTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -386641,7 +385372,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCriteriaTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCriteriaTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -386666,7 +385397,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCriteriaTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCriteriaTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -386779,12 +385510,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCriteriaTimestrOrderPage_result) - return this.equals((selectKeysCriteriaTimestrOrderPage_result)that); + if (that instanceof selectKeysCriteriaTimestrOrder_result) + return this.equals((selectKeysCriteriaTimestrOrder_result)that); return false; } - public boolean equals(selectKeysCriteriaTimestrOrderPage_result that) { + public boolean equals(selectKeysCriteriaTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -386866,7 +385597,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCriteriaTimestrOrderPage_result other) { + public int compareTo(selectKeysCriteriaTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -386943,7 +385674,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -387010,17 +385741,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCriteriaTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrOrderPage_resultStandardScheme getScheme() { - return new selectKeysCriteriaTimestrOrderPage_resultStandardScheme(); + public selectKeysCriteriaTimestrOrder_resultStandardScheme getScheme() { + return new selectKeysCriteriaTimestrOrder_resultStandardScheme(); } } - private static class selectKeysCriteriaTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -387033,38 +385764,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4068 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4068.size); - long _key4069; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4070; - for (int _i4071 = 0; _i4071 < _map4068.size; ++_i4071) + org.apache.thrift.protocol.TMap _map4032 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4032.size); + long _key4033; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4034; + for (int _i4035 = 0; _i4035 < _map4032.size; ++_i4035) { - _key4069 = iprot.readI64(); + _key4033 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4072 = iprot.readMapBegin(); - _val4070 = new java.util.LinkedHashMap>(2*_map4072.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4073; - @org.apache.thrift.annotation.Nullable java.util.Set _val4074; - for (int _i4075 = 0; _i4075 < _map4072.size; ++_i4075) + org.apache.thrift.protocol.TMap _map4036 = iprot.readMapBegin(); + _val4034 = new java.util.LinkedHashMap>(2*_map4036.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4037; + @org.apache.thrift.annotation.Nullable java.util.Set _val4038; + for (int _i4039 = 0; _i4039 < _map4036.size; ++_i4039) { - _key4073 = iprot.readString(); + _key4037 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4076 = iprot.readSetBegin(); - _val4074 = new java.util.LinkedHashSet(2*_set4076.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4077; - for (int _i4078 = 0; _i4078 < _set4076.size; ++_i4078) + org.apache.thrift.protocol.TSet _set4040 = iprot.readSetBegin(); + _val4038 = new java.util.LinkedHashSet(2*_set4040.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4041; + for (int _i4042 = 0; _i4042 < _set4040.size; ++_i4042) { - _elem4077 = new com.cinchapi.concourse.thrift.TObject(); - _elem4077.read(iprot); - _val4074.add(_elem4077); + _elem4041 = new com.cinchapi.concourse.thrift.TObject(); + _elem4041.read(iprot); + _val4038.add(_elem4041); } iprot.readSetEnd(); } - _val4070.put(_key4073, _val4074); + _val4034.put(_key4037, _val4038); } iprot.readMapEnd(); } - struct.success.put(_key4069, _val4070); + struct.success.put(_key4033, _val4034); } iprot.readMapEnd(); } @@ -387121,7 +385852,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaT } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -387129,19 +385860,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4079 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4043 : struct.success.entrySet()) { - oprot.writeI64(_iter4079.getKey()); + oprot.writeI64(_iter4043.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4079.getValue().size())); - for (java.util.Map.Entry> _iter4080 : _iter4079.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4043.getValue().size())); + for (java.util.Map.Entry> _iter4044 : _iter4043.getValue().entrySet()) { - oprot.writeString(_iter4080.getKey()); + oprot.writeString(_iter4044.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4080.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4081 : _iter4080.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4044.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4045 : _iter4044.getValue()) { - _iter4081.write(oprot); + _iter4045.write(oprot); } oprot.writeSetEnd(); } @@ -387179,17 +385910,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteria } - private static class selectKeysCriteriaTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCriteriaTimestrOrderPage_resultTupleScheme getScheme() { - return new selectKeysCriteriaTimestrOrderPage_resultTupleScheme(); + public selectKeysCriteriaTimestrOrder_resultTupleScheme getScheme() { + return new selectKeysCriteriaTimestrOrder_resultTupleScheme(); } } - private static class selectKeysCriteriaTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -387211,19 +385942,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4082 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4046 : struct.success.entrySet()) { - oprot.writeI64(_iter4082.getKey()); + oprot.writeI64(_iter4046.getKey()); { - oprot.writeI32(_iter4082.getValue().size()); - for (java.util.Map.Entry> _iter4083 : _iter4082.getValue().entrySet()) + oprot.writeI32(_iter4046.getValue().size()); + for (java.util.Map.Entry> _iter4047 : _iter4046.getValue().entrySet()) { - oprot.writeString(_iter4083.getKey()); + oprot.writeString(_iter4047.getKey()); { - oprot.writeI32(_iter4083.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4084 : _iter4083.getValue()) + oprot.writeI32(_iter4047.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4048 : _iter4047.getValue()) { - _iter4084.write(oprot); + _iter4048.write(oprot); } } } @@ -387246,41 +385977,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaT } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4085 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4085.size); - long _key4086; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4087; - for (int _i4088 = 0; _i4088 < _map4085.size; ++_i4088) + org.apache.thrift.protocol.TMap _map4049 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4049.size); + long _key4050; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4051; + for (int _i4052 = 0; _i4052 < _map4049.size; ++_i4052) { - _key4086 = iprot.readI64(); + _key4050 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4089 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4087 = new java.util.LinkedHashMap>(2*_map4089.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4090; - @org.apache.thrift.annotation.Nullable java.util.Set _val4091; - for (int _i4092 = 0; _i4092 < _map4089.size; ++_i4092) + org.apache.thrift.protocol.TMap _map4053 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4051 = new java.util.LinkedHashMap>(2*_map4053.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4054; + @org.apache.thrift.annotation.Nullable java.util.Set _val4055; + for (int _i4056 = 0; _i4056 < _map4053.size; ++_i4056) { - _key4090 = iprot.readString(); + _key4054 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4093 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4091 = new java.util.LinkedHashSet(2*_set4093.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4094; - for (int _i4095 = 0; _i4095 < _set4093.size; ++_i4095) + org.apache.thrift.protocol.TSet _set4057 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4055 = new java.util.LinkedHashSet(2*_set4057.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4058; + for (int _i4059 = 0; _i4059 < _set4057.size; ++_i4059) { - _elem4094 = new com.cinchapi.concourse.thrift.TObject(); - _elem4094.read(iprot); - _val4091.add(_elem4094); + _elem4058 = new com.cinchapi.concourse.thrift.TObject(); + _elem4058.read(iprot); + _val4055.add(_elem4058); } } - _val4087.put(_key4090, _val4091); + _val4051.put(_key4054, _val4055); } } - struct.success.put(_key4086, _val4087); + struct.success.put(_key4050, _val4051); } } struct.setSuccessIsSet(true); @@ -387313,22 +386044,26 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTime_args"); + public static class selectKeysCriteriaTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -387336,11 +386071,13 @@ public static class selectKeysCclTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -387358,15 +386095,19 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // CCL - return CCL; + case 2: // CRITERIA + return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -387411,18 +386152,20 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -387430,25 +386173,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrOrderPage_args.class, metaDataMap); } - public selectKeysCclTime_args() { + public selectKeysCriteriaTimestrOrderPage_args() { } - public selectKeysCclTime_args( + public selectKeysCriteriaTimestrOrderPage_args( java.util.List keys, - java.lang.String ccl, - long timestamp, + com.cinchapi.concourse.thrift.TCriteria criteria, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.ccl = ccl; + this.criteria = criteria; this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -387457,16 +386203,23 @@ public selectKeysCclTime_args( /** * Performs a deep copy on other. */ - public selectKeysCclTime_args(selectKeysCclTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public selectKeysCriteriaTimestrOrderPage_args(selectKeysCriteriaTimestrOrderPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetCcl()) { - this.ccl = other.ccl; + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -387479,16 +386232,17 @@ public selectKeysCclTime_args(selectKeysCclTime_args other) { } @Override - public selectKeysCclTime_args deepCopy() { - return new selectKeysCclTime_args(this); + public selectKeysCriteriaTimestrOrderPage_args deepCopy() { + return new selectKeysCriteriaTimestrOrderPage_args(this); } @Override public void clear() { this.keys = null; - this.ccl = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.criteria = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -387515,7 +386269,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCriteriaTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -387536,51 +386290,103 @@ public void setKeysIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public selectKeysCclTime_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public selectKeysCriteriaTimestrOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysCclTime_args setTimestamp(long timestamp) { + public selectKeysCriteriaTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeysCriteriaTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysCriteriaTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -387588,7 +386394,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCriteriaTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -387613,7 +386419,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCriteriaTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -387638,7 +386444,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCriteriaTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -387669,11 +386475,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); } break; @@ -387681,7 +386487,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -387719,12 +386541,18 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -387748,10 +386576,14 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -387764,12 +386596,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTime_args) - return this.equals((selectKeysCclTime_args)that); + if (that instanceof selectKeysCriteriaTimestrOrderPage_args) + return this.equals((selectKeysCriteriaTimestrOrderPage_args)that); return false; } - public boolean equals(selectKeysCclTime_args that) { + public boolean equals(selectKeysCriteriaTimestrOrderPage_args that) { if (that == null) return false; if (this == that) @@ -387784,21 +386616,39 @@ public boolean equals(selectKeysCclTime_args that) { return false; } - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -387840,11 +386690,21 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -387862,7 +386722,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTime_args other) { + public int compareTo(selectKeysCriteriaTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -387879,12 +386739,12 @@ public int compareTo(selectKeysCclTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); if (lastComparison != 0) { return lastComparison; } @@ -387899,6 +386759,26 @@ public int compareTo(selectKeysCclTime_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -387950,7 +386830,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -387961,16 +386841,36 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); } first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -388003,6 +386903,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -388021,25 +386930,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeysCclTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTime_argsStandardScheme getScheme() { - return new selectKeysCclTime_argsStandardScheme(); + public selectKeysCriteriaTimestrOrderPage_argsStandardScheme getScheme() { + return new selectKeysCriteriaTimestrOrderPage_argsStandardScheme(); } } - private static class selectKeysCclTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -388052,13 +386959,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_a case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4096 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4096.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4097; - for (int _i4098 = 0; _i4098 < _list4096.size; ++_i4098) + org.apache.thrift.protocol.TList _list4060 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4060.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4061; + for (int _i4062 = 0; _i4062 < _list4060.size; ++_i4062) { - _elem4097 = iprot.readString(); - struct.keys.add(_elem4097); + _elem4061 = iprot.readString(); + struct.keys.add(_elem4061); } iprot.readListEnd(); } @@ -388067,23 +386974,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 2: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -388092,7 +387018,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -388101,7 +387027,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -388121,7 +387047,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -388129,22 +387055,34 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTime_ oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4099 : struct.keys) + for (java.lang.String _iter4063 : struct.keys) { - oprot.writeString(_iter4099); + oprot.writeString(_iter4063); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -388166,52 +387104,64 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTime_ } - private static class selectKeysCclTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTime_argsTupleScheme getScheme() { - return new selectKeysCclTime_argsTupleScheme(); + public selectKeysCriteriaTimestrOrderPage_argsTupleScheme getScheme() { + return new selectKeysCriteriaTimestrOrderPage_argsTupleScheme(); } } - private static class selectKeysCclTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(1); } if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4100 : struct.keys) + for (java.lang.String _iter4064 : struct.keys) { - oprot.writeString(_iter4100); + oprot.writeString(_iter4064); } } } - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -388225,41 +387175,52 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4101 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4101.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4102; - for (int _i4103 = 0; _i4103 < _list4101.size; ++_i4103) + org.apache.thrift.protocol.TList _list4065 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4065.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4066; + for (int _i4067 = 0; _i4067 < _list4065.size; ++_i4067) { - _elem4102 = iprot.readString(); - struct.keys.add(_elem4102); + _elem4066 = iprot.readString(); + struct.keys.add(_elem4066); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -388271,8 +387232,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTime_result"); + public static class selectKeysCriteriaTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCriteriaTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -388280,8 +387241,8 @@ public static class selectKeysCclTime_result implements org.apache.thrift.TBase< private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCriteriaTimestrOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -388383,13 +387344,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCriteriaTimestrOrderPage_result.class, metaDataMap); } - public selectKeysCclTime_result() { + public selectKeysCriteriaTimestrOrderPage_result() { } - public selectKeysCclTime_result( + public selectKeysCriteriaTimestrOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -388407,7 +387368,7 @@ public selectKeysCclTime_result( /** * Performs a deep copy on other. */ - public selectKeysCclTime_result(selectKeysCclTime_result other) { + public selectKeysCriteriaTimestrOrderPage_result(selectKeysCriteriaTimestrOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -388452,8 +387413,8 @@ public selectKeysCclTime_result(selectKeysCclTime_result other) { } @Override - public selectKeysCclTime_result deepCopy() { - return new selectKeysCclTime_result(this); + public selectKeysCriteriaTimestrOrderPage_result deepCopy() { + return new selectKeysCriteriaTimestrOrderPage_result(this); } @Override @@ -388481,7 +387442,7 @@ public java.util.Map>> success) { + public selectKeysCriteriaTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -388506,7 +387467,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCriteriaTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -388531,7 +387492,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCriteriaTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -388556,7 +387517,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCriteriaTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -388581,7 +387542,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCriteriaTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -388694,12 +387655,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTime_result) - return this.equals((selectKeysCclTime_result)that); + if (that instanceof selectKeysCriteriaTimestrOrderPage_result) + return this.equals((selectKeysCriteriaTimestrOrderPage_result)that); return false; } - public boolean equals(selectKeysCclTime_result that) { + public boolean equals(selectKeysCriteriaTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -388781,7 +387742,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTime_result other) { + public int compareTo(selectKeysCriteriaTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -388858,7 +387819,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCriteriaTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -388925,17 +387886,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTime_resultStandardScheme getScheme() { - return new selectKeysCclTime_resultStandardScheme(); + public selectKeysCriteriaTimestrOrderPage_resultStandardScheme getScheme() { + return new selectKeysCriteriaTimestrOrderPage_resultStandardScheme(); } } - private static class selectKeysCclTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCriteriaTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -388948,38 +387909,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4104 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4104.size); - long _key4105; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4106; - for (int _i4107 = 0; _i4107 < _map4104.size; ++_i4107) + org.apache.thrift.protocol.TMap _map4068 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4068.size); + long _key4069; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4070; + for (int _i4071 = 0; _i4071 < _map4068.size; ++_i4071) { - _key4105 = iprot.readI64(); + _key4069 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4108 = iprot.readMapBegin(); - _val4106 = new java.util.LinkedHashMap>(2*_map4108.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4109; - @org.apache.thrift.annotation.Nullable java.util.Set _val4110; - for (int _i4111 = 0; _i4111 < _map4108.size; ++_i4111) + org.apache.thrift.protocol.TMap _map4072 = iprot.readMapBegin(); + _val4070 = new java.util.LinkedHashMap>(2*_map4072.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4073; + @org.apache.thrift.annotation.Nullable java.util.Set _val4074; + for (int _i4075 = 0; _i4075 < _map4072.size; ++_i4075) { - _key4109 = iprot.readString(); + _key4073 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4112 = iprot.readSetBegin(); - _val4110 = new java.util.LinkedHashSet(2*_set4112.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4113; - for (int _i4114 = 0; _i4114 < _set4112.size; ++_i4114) + org.apache.thrift.protocol.TSet _set4076 = iprot.readSetBegin(); + _val4074 = new java.util.LinkedHashSet(2*_set4076.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4077; + for (int _i4078 = 0; _i4078 < _set4076.size; ++_i4078) { - _elem4113 = new com.cinchapi.concourse.thrift.TObject(); - _elem4113.read(iprot); - _val4110.add(_elem4113); + _elem4077 = new com.cinchapi.concourse.thrift.TObject(); + _elem4077.read(iprot); + _val4074.add(_elem4077); } iprot.readSetEnd(); } - _val4106.put(_key4109, _val4110); + _val4070.put(_key4073, _val4074); } iprot.readMapEnd(); } - struct.success.put(_key4105, _val4106); + struct.success.put(_key4069, _val4070); } iprot.readMapEnd(); } @@ -389036,7 +387997,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -389044,19 +388005,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTime_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4115 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4079 : struct.success.entrySet()) { - oprot.writeI64(_iter4115.getKey()); + oprot.writeI64(_iter4079.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4115.getValue().size())); - for (java.util.Map.Entry> _iter4116 : _iter4115.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4079.getValue().size())); + for (java.util.Map.Entry> _iter4080 : _iter4079.getValue().entrySet()) { - oprot.writeString(_iter4116.getKey()); + oprot.writeString(_iter4080.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4116.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4117 : _iter4116.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4080.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4081 : _iter4080.getValue()) { - _iter4117.write(oprot); + _iter4081.write(oprot); } oprot.writeSetEnd(); } @@ -389094,17 +388055,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTime_ } - private static class selectKeysCclTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCriteriaTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTime_resultTupleScheme getScheme() { - return new selectKeysCclTime_resultTupleScheme(); + public selectKeysCriteriaTimestrOrderPage_resultTupleScheme getScheme() { + return new selectKeysCriteriaTimestrOrderPage_resultTupleScheme(); } } - private static class selectKeysCclTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCriteriaTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -389126,19 +388087,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4118 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4082 : struct.success.entrySet()) { - oprot.writeI64(_iter4118.getKey()); + oprot.writeI64(_iter4082.getKey()); { - oprot.writeI32(_iter4118.getValue().size()); - for (java.util.Map.Entry> _iter4119 : _iter4118.getValue().entrySet()) + oprot.writeI32(_iter4082.getValue().size()); + for (java.util.Map.Entry> _iter4083 : _iter4082.getValue().entrySet()) { - oprot.writeString(_iter4119.getKey()); + oprot.writeString(_iter4083.getKey()); { - oprot.writeI32(_iter4119.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4120 : _iter4119.getValue()) + oprot.writeI32(_iter4083.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4084 : _iter4083.getValue()) { - _iter4120.write(oprot); + _iter4084.write(oprot); } } } @@ -389161,41 +388122,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4121 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4121.size); - long _key4122; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4123; - for (int _i4124 = 0; _i4124 < _map4121.size; ++_i4124) + org.apache.thrift.protocol.TMap _map4085 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4085.size); + long _key4086; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4087; + for (int _i4088 = 0; _i4088 < _map4085.size; ++_i4088) { - _key4122 = iprot.readI64(); + _key4086 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4125 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4123 = new java.util.LinkedHashMap>(2*_map4125.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4126; - @org.apache.thrift.annotation.Nullable java.util.Set _val4127; - for (int _i4128 = 0; _i4128 < _map4125.size; ++_i4128) + org.apache.thrift.protocol.TMap _map4089 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4087 = new java.util.LinkedHashMap>(2*_map4089.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4090; + @org.apache.thrift.annotation.Nullable java.util.Set _val4091; + for (int _i4092 = 0; _i4092 < _map4089.size; ++_i4092) { - _key4126 = iprot.readString(); + _key4090 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4129 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4127 = new java.util.LinkedHashSet(2*_set4129.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4130; - for (int _i4131 = 0; _i4131 < _set4129.size; ++_i4131) + org.apache.thrift.protocol.TSet _set4093 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4091 = new java.util.LinkedHashSet(2*_set4093.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4094; + for (int _i4095 = 0; _i4095 < _set4093.size; ++_i4095) { - _elem4130 = new com.cinchapi.concourse.thrift.TObject(); - _elem4130.read(iprot); - _val4127.add(_elem4130); + _elem4094 = new com.cinchapi.concourse.thrift.TObject(); + _elem4094.read(iprot); + _val4091.add(_elem4094); } } - _val4123.put(_key4126, _val4127); + _val4087.put(_key4090, _val4091); } } - struct.success.put(_key4122, _val4123); + struct.success.put(_key4086, _val4087); } } struct.setSuccessIsSet(true); @@ -389228,24 +388189,22 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimePage_args"); + public static class selectKeysCclTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -389255,10 +388214,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -389280,13 +388238,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -389343,8 +388299,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -389352,17 +388306,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTime_args.class, metaDataMap); } - public selectKeysCclTimePage_args() { + public selectKeysCclTime_args() { } - public selectKeysCclTimePage_args( + public selectKeysCclTime_args( java.util.List keys, java.lang.String ccl, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -389372,7 +388325,6 @@ public selectKeysCclTimePage_args( this.ccl = ccl; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -389381,7 +388333,7 @@ public selectKeysCclTimePage_args( /** * Performs a deep copy on other. */ - public selectKeysCclTimePage_args(selectKeysCclTimePage_args other) { + public selectKeysCclTime_args(selectKeysCclTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -389391,9 +388343,6 @@ public selectKeysCclTimePage_args(selectKeysCclTimePage_args other) { this.ccl = other.ccl; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -389406,8 +388355,8 @@ public selectKeysCclTimePage_args(selectKeysCclTimePage_args other) { } @Override - public selectKeysCclTimePage_args deepCopy() { - return new selectKeysCclTimePage_args(this); + public selectKeysCclTime_args deepCopy() { + return new selectKeysCclTime_args(this); } @Override @@ -389416,7 +388365,6 @@ public void clear() { this.ccl = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -389443,7 +388391,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -389468,7 +388416,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclTimePage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclTime_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -389492,7 +388440,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysCclTimePage_args setTimestamp(long timestamp) { + public selectKeysCclTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -389511,37 +388459,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCclTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -389566,7 +388489,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -389591,7 +388514,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -389638,14 +388561,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -389686,9 +388601,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -389716,8 +388628,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -389730,12 +388640,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimePage_args) - return this.equals((selectKeysCclTimePage_args)that); + if (that instanceof selectKeysCclTime_args) + return this.equals((selectKeysCclTime_args)that); return false; } - public boolean equals(selectKeysCclTimePage_args that) { + public boolean equals(selectKeysCclTime_args that) { if (that == null) return false; if (this == that) @@ -389768,15 +388678,6 @@ public boolean equals(selectKeysCclTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -389821,10 +388722,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -389841,7 +388738,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimePage_args other) { + public int compareTo(selectKeysCclTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -389878,16 +388775,6 @@ public int compareTo(selectKeysCclTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -389939,7 +388826,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTime_args("); boolean first = true; sb.append("keys:"); @@ -389962,14 +388849,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -390000,9 +388879,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -390029,17 +388905,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimePage_argsStandardScheme getScheme() { - return new selectKeysCclTimePage_argsStandardScheme(); + public selectKeysCclTime_argsStandardScheme getScheme() { + return new selectKeysCclTime_argsStandardScheme(); } } - private static class selectKeysCclTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -390052,13 +388928,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePa case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4132 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4132.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4133; - for (int _i4134 = 0; _i4134 < _list4132.size; ++_i4134) + org.apache.thrift.protocol.TList _list4096 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4096.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4097; + for (int _i4098 = 0; _i4098 < _list4096.size; ++_i4098) { - _elem4133 = iprot.readString(); - struct.keys.add(_elem4133); + _elem4097 = iprot.readString(); + struct.keys.add(_elem4097); } iprot.readListEnd(); } @@ -390083,16 +388959,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -390101,7 +388968,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -390110,7 +388977,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -390130,7 +388997,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -390138,9 +389005,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeP oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4135 : struct.keys) + for (java.lang.String _iter4099 : struct.keys) { - oprot.writeString(_iter4135); + oprot.writeString(_iter4099); } oprot.writeListEnd(); } @@ -390154,11 +389021,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeP oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -390180,17 +389042,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeP } - private static class selectKeysCclTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimePage_argsTupleScheme getScheme() { - return new selectKeysCclTimePage_argsTupleScheme(); + public selectKeysCclTime_argsTupleScheme getScheme() { + return new selectKeysCclTime_argsTupleScheme(); } } - private static class selectKeysCclTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -390202,25 +389064,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePa if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4136 : struct.keys) + for (java.lang.String _iter4100 : struct.keys) { - oprot.writeString(_iter4136); + oprot.writeString(_iter4100); } } } @@ -390230,9 +389089,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePa if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -390245,18 +389101,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4137 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4137.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4138; - for (int _i4139 = 0; _i4139 < _list4137.size; ++_i4139) + org.apache.thrift.protocol.TList _list4101 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4101.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4102; + for (int _i4103 = 0; _i4103 < _list4101.size; ++_i4103) { - _elem4138 = iprot.readString(); - struct.keys.add(_elem4138); + _elem4102 = iprot.readString(); + struct.keys.add(_elem4102); } } struct.setKeysIsSet(true); @@ -390270,21 +389126,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePag struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -390296,8 +389147,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimePage_result"); + public static class selectKeysCclTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -390305,8 +389156,8 @@ public static class selectKeysCclTimePage_result implements org.apache.thrift.TB private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -390408,13 +389259,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTime_result.class, metaDataMap); } - public selectKeysCclTimePage_result() { + public selectKeysCclTime_result() { } - public selectKeysCclTimePage_result( + public selectKeysCclTime_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -390432,7 +389283,7 @@ public selectKeysCclTimePage_result( /** * Performs a deep copy on other. */ - public selectKeysCclTimePage_result(selectKeysCclTimePage_result other) { + public selectKeysCclTime_result(selectKeysCclTime_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -390477,8 +389328,8 @@ public selectKeysCclTimePage_result(selectKeysCclTimePage_result other) { } @Override - public selectKeysCclTimePage_result deepCopy() { - return new selectKeysCclTimePage_result(this); + public selectKeysCclTime_result deepCopy() { + return new selectKeysCclTime_result(this); } @Override @@ -390506,7 +389357,7 @@ public java.util.Map>> success) { + public selectKeysCclTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -390531,7 +389382,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -390556,7 +389407,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -390581,7 +389432,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -390606,7 +389457,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -390719,12 +389570,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimePage_result) - return this.equals((selectKeysCclTimePage_result)that); + if (that instanceof selectKeysCclTime_result) + return this.equals((selectKeysCclTime_result)that); return false; } - public boolean equals(selectKeysCclTimePage_result that) { + public boolean equals(selectKeysCclTime_result that) { if (that == null) return false; if (this == that) @@ -390806,7 +389657,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimePage_result other) { + public int compareTo(selectKeysCclTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -390883,7 +389734,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTime_result("); boolean first = true; sb.append("success:"); @@ -390950,17 +389801,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimePage_resultStandardScheme getScheme() { - return new selectKeysCclTimePage_resultStandardScheme(); + public selectKeysCclTime_resultStandardScheme getScheme() { + return new selectKeysCclTime_resultStandardScheme(); } } - private static class selectKeysCclTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -390973,38 +389824,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePa case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4140 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4140.size); - long _key4141; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4142; - for (int _i4143 = 0; _i4143 < _map4140.size; ++_i4143) + org.apache.thrift.protocol.TMap _map4104 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4104.size); + long _key4105; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4106; + for (int _i4107 = 0; _i4107 < _map4104.size; ++_i4107) { - _key4141 = iprot.readI64(); + _key4105 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4144 = iprot.readMapBegin(); - _val4142 = new java.util.LinkedHashMap>(2*_map4144.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4145; - @org.apache.thrift.annotation.Nullable java.util.Set _val4146; - for (int _i4147 = 0; _i4147 < _map4144.size; ++_i4147) + org.apache.thrift.protocol.TMap _map4108 = iprot.readMapBegin(); + _val4106 = new java.util.LinkedHashMap>(2*_map4108.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4109; + @org.apache.thrift.annotation.Nullable java.util.Set _val4110; + for (int _i4111 = 0; _i4111 < _map4108.size; ++_i4111) { - _key4145 = iprot.readString(); + _key4109 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4148 = iprot.readSetBegin(); - _val4146 = new java.util.LinkedHashSet(2*_set4148.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4149; - for (int _i4150 = 0; _i4150 < _set4148.size; ++_i4150) + org.apache.thrift.protocol.TSet _set4112 = iprot.readSetBegin(); + _val4110 = new java.util.LinkedHashSet(2*_set4112.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4113; + for (int _i4114 = 0; _i4114 < _set4112.size; ++_i4114) { - _elem4149 = new com.cinchapi.concourse.thrift.TObject(); - _elem4149.read(iprot); - _val4146.add(_elem4149); + _elem4113 = new com.cinchapi.concourse.thrift.TObject(); + _elem4113.read(iprot); + _val4110.add(_elem4113); } iprot.readSetEnd(); } - _val4142.put(_key4145, _val4146); + _val4106.put(_key4109, _val4110); } iprot.readMapEnd(); } - struct.success.put(_key4141, _val4142); + struct.success.put(_key4105, _val4106); } iprot.readMapEnd(); } @@ -391061,7 +389912,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -391069,19 +389920,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeP oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4151 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4115 : struct.success.entrySet()) { - oprot.writeI64(_iter4151.getKey()); + oprot.writeI64(_iter4115.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4151.getValue().size())); - for (java.util.Map.Entry> _iter4152 : _iter4151.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4115.getValue().size())); + for (java.util.Map.Entry> _iter4116 : _iter4115.getValue().entrySet()) { - oprot.writeString(_iter4152.getKey()); + oprot.writeString(_iter4116.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4152.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4153 : _iter4152.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4116.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4117 : _iter4116.getValue()) { - _iter4153.write(oprot); + _iter4117.write(oprot); } oprot.writeSetEnd(); } @@ -391119,17 +389970,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeP } - private static class selectKeysCclTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimePage_resultTupleScheme getScheme() { - return new selectKeysCclTimePage_resultTupleScheme(); + public selectKeysCclTime_resultTupleScheme getScheme() { + return new selectKeysCclTime_resultTupleScheme(); } } - private static class selectKeysCclTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -391151,19 +390002,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePa if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4154 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4118 : struct.success.entrySet()) { - oprot.writeI64(_iter4154.getKey()); + oprot.writeI64(_iter4118.getKey()); { - oprot.writeI32(_iter4154.getValue().size()); - for (java.util.Map.Entry> _iter4155 : _iter4154.getValue().entrySet()) + oprot.writeI32(_iter4118.getValue().size()); + for (java.util.Map.Entry> _iter4119 : _iter4118.getValue().entrySet()) { - oprot.writeString(_iter4155.getKey()); + oprot.writeString(_iter4119.getKey()); { - oprot.writeI32(_iter4155.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4156 : _iter4155.getValue()) + oprot.writeI32(_iter4119.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4120 : _iter4119.getValue()) { - _iter4156.write(oprot); + _iter4120.write(oprot); } } } @@ -391186,41 +390037,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4157 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4157.size); - long _key4158; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4159; - for (int _i4160 = 0; _i4160 < _map4157.size; ++_i4160) + org.apache.thrift.protocol.TMap _map4121 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4121.size); + long _key4122; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4123; + for (int _i4124 = 0; _i4124 < _map4121.size; ++_i4124) { - _key4158 = iprot.readI64(); + _key4122 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4161 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4159 = new java.util.LinkedHashMap>(2*_map4161.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4162; - @org.apache.thrift.annotation.Nullable java.util.Set _val4163; - for (int _i4164 = 0; _i4164 < _map4161.size; ++_i4164) + org.apache.thrift.protocol.TMap _map4125 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4123 = new java.util.LinkedHashMap>(2*_map4125.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4126; + @org.apache.thrift.annotation.Nullable java.util.Set _val4127; + for (int _i4128 = 0; _i4128 < _map4125.size; ++_i4128) { - _key4162 = iprot.readString(); + _key4126 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4165 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4163 = new java.util.LinkedHashSet(2*_set4165.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4166; - for (int _i4167 = 0; _i4167 < _set4165.size; ++_i4167) + org.apache.thrift.protocol.TSet _set4129 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4127 = new java.util.LinkedHashSet(2*_set4129.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4130; + for (int _i4131 = 0; _i4131 < _set4129.size; ++_i4131) { - _elem4166 = new com.cinchapi.concourse.thrift.TObject(); - _elem4166.read(iprot); - _val4163.add(_elem4166); + _elem4130 = new com.cinchapi.concourse.thrift.TObject(); + _elem4130.read(iprot); + _val4127.add(_elem4130); } } - _val4159.put(_key4162, _val4163); + _val4123.put(_key4126, _val4127); } } - struct.success.put(_key4158, _val4159); + struct.success.put(_key4122, _val4123); } } struct.setSuccessIsSet(true); @@ -391253,24 +390104,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimeOrder_args"); + public static class selectKeysCclTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimePage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -391280,7 +390131,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -391305,8 +390156,8 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -391368,8 +390219,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -391377,17 +390228,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimePage_args.class, metaDataMap); } - public selectKeysCclTimeOrder_args() { + public selectKeysCclTimePage_args() { } - public selectKeysCclTimeOrder_args( + public selectKeysCclTimePage_args( java.util.List keys, java.lang.String ccl, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -391397,7 +390248,7 @@ public selectKeysCclTimeOrder_args( this.ccl = ccl; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -391406,7 +390257,7 @@ public selectKeysCclTimeOrder_args( /** * Performs a deep copy on other. */ - public selectKeysCclTimeOrder_args(selectKeysCclTimeOrder_args other) { + public selectKeysCclTimePage_args(selectKeysCclTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -391416,8 +390267,8 @@ public selectKeysCclTimeOrder_args(selectKeysCclTimeOrder_args other) { this.ccl = other.ccl; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -391431,8 +390282,8 @@ public selectKeysCclTimeOrder_args(selectKeysCclTimeOrder_args other) { } @Override - public selectKeysCclTimeOrder_args deepCopy() { - return new selectKeysCclTimeOrder_args(this); + public selectKeysCclTimePage_args deepCopy() { + return new selectKeysCclTimePage_args(this); } @Override @@ -391441,7 +390292,7 @@ public void clear() { this.ccl = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -391468,7 +390319,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -391493,7 +390344,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclTimeOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclTimePage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -391517,7 +390368,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysCclTimeOrder_args setTimestamp(long timestamp) { + public selectKeysCclTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -391537,27 +390388,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeysCclTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeysCclTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -391566,7 +390417,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -391591,7 +390442,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -391616,7 +390467,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -391663,11 +390514,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -391711,8 +390562,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -391741,8 +390592,8 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -391755,12 +390606,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimeOrder_args) - return this.equals((selectKeysCclTimeOrder_args)that); + if (that instanceof selectKeysCclTimePage_args) + return this.equals((selectKeysCclTimePage_args)that); return false; } - public boolean equals(selectKeysCclTimeOrder_args that) { + public boolean equals(selectKeysCclTimePage_args that) { if (that == null) return false; if (this == that) @@ -391793,12 +390644,12 @@ public boolean equals(selectKeysCclTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -391846,9 +390697,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -391866,7 +390717,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimeOrder_args other) { + public int compareTo(selectKeysCclTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -391903,12 +390754,12 @@ public int compareTo(selectKeysCclTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -391964,7 +390815,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimePage_args("); boolean first = true; sb.append("keys:"); @@ -391987,11 +390838,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -392025,8 +390876,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -392054,17 +390905,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimeOrder_argsStandardScheme getScheme() { - return new selectKeysCclTimeOrder_argsStandardScheme(); + public selectKeysCclTimePage_argsStandardScheme getScheme() { + return new selectKeysCclTimePage_argsStandardScheme(); } } - private static class selectKeysCclTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -392077,13 +390928,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4168 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4168.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4169; - for (int _i4170 = 0; _i4170 < _list4168.size; ++_i4170) + org.apache.thrift.protocol.TList _list4132 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4132.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4133; + for (int _i4134 = 0; _i4134 < _list4132.size; ++_i4134) { - _elem4169 = iprot.readString(); - struct.keys.add(_elem4169); + _elem4133 = iprot.readString(); + struct.keys.add(_elem4133); } iprot.readListEnd(); } @@ -392108,11 +390959,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -392155,7 +391006,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -392163,9 +391014,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4171 : struct.keys) + for (java.lang.String _iter4135 : struct.keys) { - oprot.writeString(_iter4171); + oprot.writeString(_iter4135); } oprot.writeListEnd(); } @@ -392179,9 +391030,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -392205,17 +391056,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO } - private static class selectKeysCclTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimeOrder_argsTupleScheme getScheme() { - return new selectKeysCclTimeOrder_argsTupleScheme(); + public selectKeysCclTimePage_argsTupleScheme getScheme() { + return new selectKeysCclTimePage_argsTupleScheme(); } } - private static class selectKeysCclTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -392227,7 +391078,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -392243,9 +391094,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4172 : struct.keys) + for (java.lang.String _iter4136 : struct.keys) { - oprot.writeString(_iter4172); + oprot.writeString(_iter4136); } } } @@ -392255,8 +391106,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -392270,18 +391121,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4173 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4173.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4174; - for (int _i4175 = 0; _i4175 < _list4173.size; ++_i4175) + org.apache.thrift.protocol.TList _list4137 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4137.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4138; + for (int _i4139 = 0; _i4139 < _list4137.size; ++_i4139) { - _elem4174 = iprot.readString(); - struct.keys.add(_elem4174); + _elem4138 = iprot.readString(); + struct.keys.add(_elem4138); } } struct.setKeysIsSet(true); @@ -392295,9 +391146,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrd struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -392321,8 +391172,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimeOrder_result"); + public static class selectKeysCclTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -392330,8 +391181,8 @@ public static class selectKeysCclTimeOrder_result implements org.apache.thrift.T private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -392433,13 +391284,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimePage_result.class, metaDataMap); } - public selectKeysCclTimeOrder_result() { + public selectKeysCclTimePage_result() { } - public selectKeysCclTimeOrder_result( + public selectKeysCclTimePage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -392457,7 +391308,7 @@ public selectKeysCclTimeOrder_result( /** * Performs a deep copy on other. */ - public selectKeysCclTimeOrder_result(selectKeysCclTimeOrder_result other) { + public selectKeysCclTimePage_result(selectKeysCclTimePage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -392502,8 +391353,8 @@ public selectKeysCclTimeOrder_result(selectKeysCclTimeOrder_result other) { } @Override - public selectKeysCclTimeOrder_result deepCopy() { - return new selectKeysCclTimeOrder_result(this); + public selectKeysCclTimePage_result deepCopy() { + return new selectKeysCclTimePage_result(this); } @Override @@ -392531,7 +391382,7 @@ public java.util.Map>> success) { + public selectKeysCclTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -392556,7 +391407,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -392581,7 +391432,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -392606,7 +391457,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -392631,7 +391482,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -392744,12 +391595,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimeOrder_result) - return this.equals((selectKeysCclTimeOrder_result)that); + if (that instanceof selectKeysCclTimePage_result) + return this.equals((selectKeysCclTimePage_result)that); return false; } - public boolean equals(selectKeysCclTimeOrder_result that) { + public boolean equals(selectKeysCclTimePage_result that) { if (that == null) return false; if (this == that) @@ -392831,7 +391682,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimeOrder_result other) { + public int compareTo(selectKeysCclTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -392908,7 +391759,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimePage_result("); boolean first = true; sb.append("success:"); @@ -392975,17 +391826,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimeOrder_resultStandardScheme getScheme() { - return new selectKeysCclTimeOrder_resultStandardScheme(); + public selectKeysCclTimePage_resultStandardScheme getScheme() { + return new selectKeysCclTimePage_resultStandardScheme(); } } - private static class selectKeysCclTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -392998,38 +391849,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4176 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4176.size); - long _key4177; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4178; - for (int _i4179 = 0; _i4179 < _map4176.size; ++_i4179) + org.apache.thrift.protocol.TMap _map4140 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4140.size); + long _key4141; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4142; + for (int _i4143 = 0; _i4143 < _map4140.size; ++_i4143) { - _key4177 = iprot.readI64(); + _key4141 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4180 = iprot.readMapBegin(); - _val4178 = new java.util.LinkedHashMap>(2*_map4180.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4181; - @org.apache.thrift.annotation.Nullable java.util.Set _val4182; - for (int _i4183 = 0; _i4183 < _map4180.size; ++_i4183) + org.apache.thrift.protocol.TMap _map4144 = iprot.readMapBegin(); + _val4142 = new java.util.LinkedHashMap>(2*_map4144.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4145; + @org.apache.thrift.annotation.Nullable java.util.Set _val4146; + for (int _i4147 = 0; _i4147 < _map4144.size; ++_i4147) { - _key4181 = iprot.readString(); + _key4145 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4184 = iprot.readSetBegin(); - _val4182 = new java.util.LinkedHashSet(2*_set4184.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4185; - for (int _i4186 = 0; _i4186 < _set4184.size; ++_i4186) + org.apache.thrift.protocol.TSet _set4148 = iprot.readSetBegin(); + _val4146 = new java.util.LinkedHashSet(2*_set4148.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4149; + for (int _i4150 = 0; _i4150 < _set4148.size; ++_i4150) { - _elem4185 = new com.cinchapi.concourse.thrift.TObject(); - _elem4185.read(iprot); - _val4182.add(_elem4185); + _elem4149 = new com.cinchapi.concourse.thrift.TObject(); + _elem4149.read(iprot); + _val4146.add(_elem4149); } iprot.readSetEnd(); } - _val4178.put(_key4181, _val4182); + _val4142.put(_key4145, _val4146); } iprot.readMapEnd(); } - struct.success.put(_key4177, _val4178); + struct.success.put(_key4141, _val4142); } iprot.readMapEnd(); } @@ -393086,7 +391937,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -393094,19 +391945,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4187 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4151 : struct.success.entrySet()) { - oprot.writeI64(_iter4187.getKey()); + oprot.writeI64(_iter4151.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4187.getValue().size())); - for (java.util.Map.Entry> _iter4188 : _iter4187.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4151.getValue().size())); + for (java.util.Map.Entry> _iter4152 : _iter4151.getValue().entrySet()) { - oprot.writeString(_iter4188.getKey()); + oprot.writeString(_iter4152.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4188.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4189 : _iter4188.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4152.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4153 : _iter4152.getValue()) { - _iter4189.write(oprot); + _iter4153.write(oprot); } oprot.writeSetEnd(); } @@ -393144,17 +391995,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO } - private static class selectKeysCclTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimeOrder_resultTupleScheme getScheme() { - return new selectKeysCclTimeOrder_resultTupleScheme(); + public selectKeysCclTimePage_resultTupleScheme getScheme() { + return new selectKeysCclTimePage_resultTupleScheme(); } } - private static class selectKeysCclTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -393176,19 +392027,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4190 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4154 : struct.success.entrySet()) { - oprot.writeI64(_iter4190.getKey()); + oprot.writeI64(_iter4154.getKey()); { - oprot.writeI32(_iter4190.getValue().size()); - for (java.util.Map.Entry> _iter4191 : _iter4190.getValue().entrySet()) + oprot.writeI32(_iter4154.getValue().size()); + for (java.util.Map.Entry> _iter4155 : _iter4154.getValue().entrySet()) { - oprot.writeString(_iter4191.getKey()); + oprot.writeString(_iter4155.getKey()); { - oprot.writeI32(_iter4191.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4192 : _iter4191.getValue()) + oprot.writeI32(_iter4155.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4156 : _iter4155.getValue()) { - _iter4192.write(oprot); + _iter4156.write(oprot); } } } @@ -393211,41 +392062,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4193 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4193.size); - long _key4194; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4195; - for (int _i4196 = 0; _i4196 < _map4193.size; ++_i4196) + org.apache.thrift.protocol.TMap _map4157 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4157.size); + long _key4158; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4159; + for (int _i4160 = 0; _i4160 < _map4157.size; ++_i4160) { - _key4194 = iprot.readI64(); + _key4158 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4197 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4195 = new java.util.LinkedHashMap>(2*_map4197.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4198; - @org.apache.thrift.annotation.Nullable java.util.Set _val4199; - for (int _i4200 = 0; _i4200 < _map4197.size; ++_i4200) + org.apache.thrift.protocol.TMap _map4161 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4159 = new java.util.LinkedHashMap>(2*_map4161.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4162; + @org.apache.thrift.annotation.Nullable java.util.Set _val4163; + for (int _i4164 = 0; _i4164 < _map4161.size; ++_i4164) { - _key4198 = iprot.readString(); + _key4162 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4201 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4199 = new java.util.LinkedHashSet(2*_set4201.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4202; - for (int _i4203 = 0; _i4203 < _set4201.size; ++_i4203) + org.apache.thrift.protocol.TSet _set4165 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4163 = new java.util.LinkedHashSet(2*_set4165.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4166; + for (int _i4167 = 0; _i4167 < _set4165.size; ++_i4167) { - _elem4202 = new com.cinchapi.concourse.thrift.TObject(); - _elem4202.read(iprot); - _val4199.add(_elem4202); + _elem4166 = new com.cinchapi.concourse.thrift.TObject(); + _elem4166.read(iprot); + _val4163.add(_elem4166); } } - _val4195.put(_key4198, _val4199); + _val4159.put(_key4162, _val4163); } } - struct.success.put(_key4194, _val4195); + struct.success.put(_key4158, _val4159); } } struct.setSuccessIsSet(true); @@ -393278,26 +392129,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimeOrderPage_args"); + public static class selectKeysCclTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -393308,10 +392157,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -393335,13 +392183,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -393400,8 +392246,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -393409,18 +392253,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimeOrder_args.class, metaDataMap); } - public selectKeysCclTimeOrderPage_args() { + public selectKeysCclTimeOrder_args() { } - public selectKeysCclTimeOrderPage_args( + public selectKeysCclTimeOrder_args( java.util.List keys, java.lang.String ccl, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -393431,7 +392274,6 @@ public selectKeysCclTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -393440,7 +392282,7 @@ public selectKeysCclTimeOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeysCclTimeOrderPage_args(selectKeysCclTimeOrderPage_args other) { + public selectKeysCclTimeOrder_args(selectKeysCclTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -393453,9 +392295,6 @@ public selectKeysCclTimeOrderPage_args(selectKeysCclTimeOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -393468,8 +392307,8 @@ public selectKeysCclTimeOrderPage_args(selectKeysCclTimeOrderPage_args other) { } @Override - public selectKeysCclTimeOrderPage_args deepCopy() { - return new selectKeysCclTimeOrderPage_args(this); + public selectKeysCclTimeOrder_args deepCopy() { + return new selectKeysCclTimeOrder_args(this); } @Override @@ -393479,7 +392318,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -393506,7 +392344,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -393531,7 +392369,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclTimeOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclTimeOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -393555,7 +392393,7 @@ public long getTimestamp() { return this.timestamp; } - public selectKeysCclTimeOrderPage_args setTimestamp(long timestamp) { + public selectKeysCclTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -393579,7 +392417,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeysCclTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeysCclTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -393599,37 +392437,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCclTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -393654,7 +392467,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -393679,7 +392492,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -393734,14 +392547,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -393785,9 +392590,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -393817,8 +392619,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -393831,12 +392631,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimeOrderPage_args) - return this.equals((selectKeysCclTimeOrderPage_args)that); + if (that instanceof selectKeysCclTimeOrder_args) + return this.equals((selectKeysCclTimeOrder_args)that); return false; } - public boolean equals(selectKeysCclTimeOrderPage_args that) { + public boolean equals(selectKeysCclTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -393878,15 +392678,6 @@ public boolean equals(selectKeysCclTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -393935,10 +392726,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -393955,7 +392742,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimeOrderPage_args other) { + public int compareTo(selectKeysCclTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -394002,16 +392789,6 @@ public int compareTo(selectKeysCclTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -394063,7 +392840,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimeOrder_args("); boolean first = true; sb.append("keys:"); @@ -394094,14 +392871,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -394135,9 +392904,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -394164,17 +392930,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimeOrderPage_argsStandardScheme getScheme() { - return new selectKeysCclTimeOrderPage_argsStandardScheme(); + public selectKeysCclTimeOrder_argsStandardScheme getScheme() { + return new selectKeysCclTimeOrder_argsStandardScheme(); } } - private static class selectKeysCclTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -394187,13 +392953,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4204 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4204.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4205; - for (int _i4206 = 0; _i4206 < _list4204.size; ++_i4206) + org.apache.thrift.protocol.TList _list4168 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4168.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4169; + for (int _i4170 = 0; _i4170 < _list4168.size; ++_i4170) { - _elem4205 = iprot.readString(); - struct.keys.add(_elem4205); + _elem4169 = iprot.readString(); + struct.keys.add(_elem4169); } iprot.readListEnd(); } @@ -394227,16 +392993,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -394245,7 +393002,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -394254,7 +393011,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -394274,7 +393031,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -394282,9 +393039,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4207 : struct.keys) + for (java.lang.String _iter4171 : struct.keys) { - oprot.writeString(_iter4207); + oprot.writeString(_iter4171); } oprot.writeListEnd(); } @@ -394303,11 +393060,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -394329,17 +393081,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO } - private static class selectKeysCclTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimeOrderPage_argsTupleScheme getScheme() { - return new selectKeysCclTimeOrderPage_argsTupleScheme(); + public selectKeysCclTimeOrder_argsTupleScheme getScheme() { + return new selectKeysCclTimeOrder_argsTupleScheme(); } } - private static class selectKeysCclTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -394354,25 +393106,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4208 : struct.keys) + for (java.lang.String _iter4172 : struct.keys) { - oprot.writeString(_iter4208); + oprot.writeString(_iter4172); } } } @@ -394385,9 +393134,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -394400,18 +393146,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4209 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4209.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4210; - for (int _i4211 = 0; _i4211 < _list4209.size; ++_i4211) + org.apache.thrift.protocol.TList _list4173 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4173.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4174; + for (int _i4175 = 0; _i4175 < _list4173.size; ++_i4175) { - _elem4210 = iprot.readString(); - struct.keys.add(_elem4210); + _elem4174 = iprot.readString(); + struct.keys.add(_elem4174); } } struct.setKeysIsSet(true); @@ -394430,21 +393176,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrd struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -394456,8 +393197,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimeOrderPage_result"); + public static class selectKeysCclTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -394465,8 +393206,8 @@ public static class selectKeysCclTimeOrderPage_result implements org.apache.thri private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -394568,13 +393309,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimeOrder_result.class, metaDataMap); } - public selectKeysCclTimeOrderPage_result() { + public selectKeysCclTimeOrder_result() { } - public selectKeysCclTimeOrderPage_result( + public selectKeysCclTimeOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -394592,7 +393333,7 @@ public selectKeysCclTimeOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeysCclTimeOrderPage_result(selectKeysCclTimeOrderPage_result other) { + public selectKeysCclTimeOrder_result(selectKeysCclTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -394637,8 +393378,8 @@ public selectKeysCclTimeOrderPage_result(selectKeysCclTimeOrderPage_result other } @Override - public selectKeysCclTimeOrderPage_result deepCopy() { - return new selectKeysCclTimeOrderPage_result(this); + public selectKeysCclTimeOrder_result deepCopy() { + return new selectKeysCclTimeOrder_result(this); } @Override @@ -394666,7 +393407,7 @@ public java.util.Map>> success) { + public selectKeysCclTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -394691,7 +393432,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -394716,7 +393457,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -394741,7 +393482,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -394766,7 +393507,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -394879,12 +393620,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimeOrderPage_result) - return this.equals((selectKeysCclTimeOrderPage_result)that); + if (that instanceof selectKeysCclTimeOrder_result) + return this.equals((selectKeysCclTimeOrder_result)that); return false; } - public boolean equals(selectKeysCclTimeOrderPage_result that) { + public boolean equals(selectKeysCclTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -394966,7 +393707,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimeOrderPage_result other) { + public int compareTo(selectKeysCclTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -395043,7 +393784,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -395110,17 +393851,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimeOrderPage_resultStandardScheme getScheme() { - return new selectKeysCclTimeOrderPage_resultStandardScheme(); + public selectKeysCclTimeOrder_resultStandardScheme getScheme() { + return new selectKeysCclTimeOrder_resultStandardScheme(); } } - private static class selectKeysCclTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -395133,38 +393874,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4212 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4212.size); - long _key4213; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4214; - for (int _i4215 = 0; _i4215 < _map4212.size; ++_i4215) + org.apache.thrift.protocol.TMap _map4176 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4176.size); + long _key4177; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4178; + for (int _i4179 = 0; _i4179 < _map4176.size; ++_i4179) { - _key4213 = iprot.readI64(); + _key4177 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4216 = iprot.readMapBegin(); - _val4214 = new java.util.LinkedHashMap>(2*_map4216.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4217; - @org.apache.thrift.annotation.Nullable java.util.Set _val4218; - for (int _i4219 = 0; _i4219 < _map4216.size; ++_i4219) + org.apache.thrift.protocol.TMap _map4180 = iprot.readMapBegin(); + _val4178 = new java.util.LinkedHashMap>(2*_map4180.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4181; + @org.apache.thrift.annotation.Nullable java.util.Set _val4182; + for (int _i4183 = 0; _i4183 < _map4180.size; ++_i4183) { - _key4217 = iprot.readString(); + _key4181 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4220 = iprot.readSetBegin(); - _val4218 = new java.util.LinkedHashSet(2*_set4220.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4221; - for (int _i4222 = 0; _i4222 < _set4220.size; ++_i4222) + org.apache.thrift.protocol.TSet _set4184 = iprot.readSetBegin(); + _val4182 = new java.util.LinkedHashSet(2*_set4184.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4185; + for (int _i4186 = 0; _i4186 < _set4184.size; ++_i4186) { - _elem4221 = new com.cinchapi.concourse.thrift.TObject(); - _elem4221.read(iprot); - _val4218.add(_elem4221); + _elem4185 = new com.cinchapi.concourse.thrift.TObject(); + _elem4185.read(iprot); + _val4182.add(_elem4185); } iprot.readSetEnd(); } - _val4214.put(_key4217, _val4218); + _val4178.put(_key4181, _val4182); } iprot.readMapEnd(); } - struct.success.put(_key4213, _val4214); + struct.success.put(_key4177, _val4178); } iprot.readMapEnd(); } @@ -395221,7 +393962,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -395229,19 +393970,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4223 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4187 : struct.success.entrySet()) { - oprot.writeI64(_iter4223.getKey()); + oprot.writeI64(_iter4187.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4223.getValue().size())); - for (java.util.Map.Entry> _iter4224 : _iter4223.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4187.getValue().size())); + for (java.util.Map.Entry> _iter4188 : _iter4187.getValue().entrySet()) { - oprot.writeString(_iter4224.getKey()); + oprot.writeString(_iter4188.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4224.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4225 : _iter4224.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4188.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4189 : _iter4188.getValue()) { - _iter4225.write(oprot); + _iter4189.write(oprot); } oprot.writeSetEnd(); } @@ -395279,17 +394020,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeO } - private static class selectKeysCclTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimeOrderPage_resultTupleScheme getScheme() { - return new selectKeysCclTimeOrderPage_resultTupleScheme(); + public selectKeysCclTimeOrder_resultTupleScheme getScheme() { + return new selectKeysCclTimeOrder_resultTupleScheme(); } } - private static class selectKeysCclTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -395311,19 +394052,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4226 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4190 : struct.success.entrySet()) { - oprot.writeI64(_iter4226.getKey()); + oprot.writeI64(_iter4190.getKey()); { - oprot.writeI32(_iter4226.getValue().size()); - for (java.util.Map.Entry> _iter4227 : _iter4226.getValue().entrySet()) + oprot.writeI32(_iter4190.getValue().size()); + for (java.util.Map.Entry> _iter4191 : _iter4190.getValue().entrySet()) { - oprot.writeString(_iter4227.getKey()); + oprot.writeString(_iter4191.getKey()); { - oprot.writeI32(_iter4227.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4228 : _iter4227.getValue()) + oprot.writeI32(_iter4191.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4192 : _iter4191.getValue()) { - _iter4228.write(oprot); + _iter4192.write(oprot); } } } @@ -395346,41 +394087,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4229 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4229.size); - long _key4230; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4231; - for (int _i4232 = 0; _i4232 < _map4229.size; ++_i4232) + org.apache.thrift.protocol.TMap _map4193 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4193.size); + long _key4194; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4195; + for (int _i4196 = 0; _i4196 < _map4193.size; ++_i4196) { - _key4230 = iprot.readI64(); + _key4194 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4233 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4231 = new java.util.LinkedHashMap>(2*_map4233.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4234; - @org.apache.thrift.annotation.Nullable java.util.Set _val4235; - for (int _i4236 = 0; _i4236 < _map4233.size; ++_i4236) + org.apache.thrift.protocol.TMap _map4197 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4195 = new java.util.LinkedHashMap>(2*_map4197.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4198; + @org.apache.thrift.annotation.Nullable java.util.Set _val4199; + for (int _i4200 = 0; _i4200 < _map4197.size; ++_i4200) { - _key4234 = iprot.readString(); + _key4198 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4237 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4235 = new java.util.LinkedHashSet(2*_set4237.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4238; - for (int _i4239 = 0; _i4239 < _set4237.size; ++_i4239) + org.apache.thrift.protocol.TSet _set4201 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4199 = new java.util.LinkedHashSet(2*_set4201.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4202; + for (int _i4203 = 0; _i4203 < _set4201.size; ++_i4203) { - _elem4238 = new com.cinchapi.concourse.thrift.TObject(); - _elem4238.read(iprot); - _val4235.add(_elem4238); + _elem4202 = new com.cinchapi.concourse.thrift.TObject(); + _elem4202.read(iprot); + _val4199.add(_elem4202); } } - _val4231.put(_key4234, _val4235); + _val4195.put(_key4198, _val4199); } } - struct.success.put(_key4230, _val4231); + struct.success.put(_key4194, _val4195); } } struct.setSuccessIsSet(true); @@ -395413,22 +394154,26 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestr_args"); + public static class selectKeysCclTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -395438,9 +394183,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -395462,11 +394209,15 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -395511,6 +394262,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -395520,7 +394273,11 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -395528,16 +394285,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimeOrderPage_args.class, metaDataMap); } - public selectKeysCclTimestr_args() { + public selectKeysCclTimeOrderPage_args() { } - public selectKeysCclTimestr_args( + public selectKeysCclTimeOrderPage_args( java.util.List keys, java.lang.String ccl, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -395546,6 +394305,9 @@ public selectKeysCclTimestr_args( this.keys = keys; this.ccl = ccl; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -395554,7 +394316,8 @@ public selectKeysCclTimestr_args( /** * Performs a deep copy on other. */ - public selectKeysCclTimestr_args(selectKeysCclTimestr_args other) { + public selectKeysCclTimeOrderPage_args(selectKeysCclTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -395562,8 +394325,12 @@ public selectKeysCclTimestr_args(selectKeysCclTimestr_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -395577,15 +394344,18 @@ public selectKeysCclTimestr_args(selectKeysCclTimestr_args other) { } @Override - public selectKeysCclTimestr_args deepCopy() { - return new selectKeysCclTimestr_args(this); + public selectKeysCclTimeOrderPage_args deepCopy() { + return new selectKeysCclTimeOrderPage_args(this); } @Override public void clear() { this.keys = null; this.ccl = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -395612,7 +394382,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -395637,7 +394407,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclTimestr_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclTimeOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -395657,28 +394427,76 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public selectKeysCclTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysCclTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeysCclTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysCclTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -395687,7 +394505,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -395712,7 +394530,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -395737,7 +394555,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -395780,7 +394598,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -395824,6 +394658,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -395851,6 +394691,10 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -395863,12 +394707,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimestr_args) - return this.equals((selectKeysCclTimestr_args)that); + if (that instanceof selectKeysCclTimeOrderPage_args) + return this.equals((selectKeysCclTimeOrderPage_args)that); return false; } - public boolean equals(selectKeysCclTimestr_args that) { + public boolean equals(selectKeysCclTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -395892,12 +394736,30 @@ public boolean equals(selectKeysCclTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -395943,9 +394805,15 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -395963,7 +394831,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimestr_args other) { + public int compareTo(selectKeysCclTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -396000,6 +394868,26 @@ public int compareTo(selectKeysCclTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -396051,7 +394939,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimeOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -396071,10 +394959,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -396108,6 +395008,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -396126,23 +395032,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 selectKeysCclTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestr_argsStandardScheme getScheme() { - return new selectKeysCclTimestr_argsStandardScheme(); + public selectKeysCclTimeOrderPage_argsStandardScheme getScheme() { + return new selectKeysCclTimeOrderPage_argsStandardScheme(); } } - private static class selectKeysCclTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -396155,13 +395063,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4240 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4240.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4241; - for (int _i4242 = 0; _i4242 < _list4240.size; ++_i4242) + org.apache.thrift.protocol.TList _list4204 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4204.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4205; + for (int _i4206 = 0; _i4206 < _list4204.size; ++_i4206) { - _elem4241 = iprot.readString(); - struct.keys.add(_elem4241); + _elem4205 = iprot.readString(); + struct.keys.add(_elem4205); } iprot.readListEnd(); } @@ -396179,14 +395087,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -396195,7 +395121,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -396204,7 +395130,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -396224,7 +395150,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -396232,9 +395158,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4243 : struct.keys) + for (java.lang.String _iter4207 : struct.keys) { - oprot.writeString(_iter4243); + oprot.writeString(_iter4207); } oprot.writeListEnd(); } @@ -396245,9 +395171,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -396271,17 +395205,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes } - private static class selectKeysCclTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestr_argsTupleScheme getScheme() { - return new selectKeysCclTimestr_argsTupleScheme(); + public selectKeysCclTimeOrderPage_argsTupleScheme getScheme() { + return new selectKeysCclTimeOrderPage_argsTupleScheme(); } } - private static class selectKeysCclTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -396293,22 +395227,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4244 : struct.keys) + for (java.lang.String _iter4208 : struct.keys) { - oprot.writeString(_iter4244); + oprot.writeString(_iter4208); } } } @@ -396316,7 +395256,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest oprot.writeString(struct.ccl); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -396330,18 +395276,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4245 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4245.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4246; - for (int _i4247 = 0; _i4247 < _list4245.size; ++_i4247) + org.apache.thrift.protocol.TList _list4209 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4209.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4210; + for (int _i4211 = 0; _i4211 < _list4209.size; ++_i4211) { - _elem4246 = iprot.readString(); - struct.keys.add(_elem4246); + _elem4210 = iprot.readString(); + struct.keys.add(_elem4210); } } struct.setKeysIsSet(true); @@ -396351,20 +395297,30 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -396376,8 +395332,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestr_result"); + public static class selectKeysCclTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -396385,8 +395341,8 @@ public static class selectKeysCclTimestr_result implements org.apache.thrift.TBa private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -396488,13 +395444,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimeOrderPage_result.class, metaDataMap); } - public selectKeysCclTimestr_result() { + public selectKeysCclTimeOrderPage_result() { } - public selectKeysCclTimestr_result( + public selectKeysCclTimeOrderPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -396512,7 +395468,7 @@ public selectKeysCclTimestr_result( /** * Performs a deep copy on other. */ - public selectKeysCclTimestr_result(selectKeysCclTimestr_result other) { + public selectKeysCclTimeOrderPage_result(selectKeysCclTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -396557,8 +395513,8 @@ public selectKeysCclTimestr_result(selectKeysCclTimestr_result other) { } @Override - public selectKeysCclTimestr_result deepCopy() { - return new selectKeysCclTimestr_result(this); + public selectKeysCclTimeOrderPage_result deepCopy() { + return new selectKeysCclTimeOrderPage_result(this); } @Override @@ -396586,7 +395542,7 @@ public java.util.Map>> success) { + public selectKeysCclTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -396611,7 +395567,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -396636,7 +395592,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -396661,7 +395617,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -396686,7 +395642,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -396799,12 +395755,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimestr_result) - return this.equals((selectKeysCclTimestr_result)that); + if (that instanceof selectKeysCclTimeOrderPage_result) + return this.equals((selectKeysCclTimeOrderPage_result)that); return false; } - public boolean equals(selectKeysCclTimestr_result that) { + public boolean equals(selectKeysCclTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -396886,7 +395842,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimestr_result other) { + public int compareTo(selectKeysCclTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -396963,7 +395919,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -397030,17 +395986,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestr_resultStandardScheme getScheme() { - return new selectKeysCclTimestr_resultStandardScheme(); + public selectKeysCclTimeOrderPage_resultStandardScheme getScheme() { + return new selectKeysCclTimeOrderPage_resultStandardScheme(); } } - private static class selectKeysCclTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -397053,38 +396009,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4248 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4248.size); - long _key4249; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4250; - for (int _i4251 = 0; _i4251 < _map4248.size; ++_i4251) + org.apache.thrift.protocol.TMap _map4212 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4212.size); + long _key4213; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4214; + for (int _i4215 = 0; _i4215 < _map4212.size; ++_i4215) { - _key4249 = iprot.readI64(); + _key4213 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4252 = iprot.readMapBegin(); - _val4250 = new java.util.LinkedHashMap>(2*_map4252.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4253; - @org.apache.thrift.annotation.Nullable java.util.Set _val4254; - for (int _i4255 = 0; _i4255 < _map4252.size; ++_i4255) + org.apache.thrift.protocol.TMap _map4216 = iprot.readMapBegin(); + _val4214 = new java.util.LinkedHashMap>(2*_map4216.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4217; + @org.apache.thrift.annotation.Nullable java.util.Set _val4218; + for (int _i4219 = 0; _i4219 < _map4216.size; ++_i4219) { - _key4253 = iprot.readString(); + _key4217 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4256 = iprot.readSetBegin(); - _val4254 = new java.util.LinkedHashSet(2*_set4256.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4257; - for (int _i4258 = 0; _i4258 < _set4256.size; ++_i4258) + org.apache.thrift.protocol.TSet _set4220 = iprot.readSetBegin(); + _val4218 = new java.util.LinkedHashSet(2*_set4220.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4221; + for (int _i4222 = 0; _i4222 < _set4220.size; ++_i4222) { - _elem4257 = new com.cinchapi.concourse.thrift.TObject(); - _elem4257.read(iprot); - _val4254.add(_elem4257); + _elem4221 = new com.cinchapi.concourse.thrift.TObject(); + _elem4221.read(iprot); + _val4218.add(_elem4221); } iprot.readSetEnd(); } - _val4250.put(_key4253, _val4254); + _val4214.put(_key4217, _val4218); } iprot.readMapEnd(); } - struct.success.put(_key4249, _val4250); + struct.success.put(_key4213, _val4214); } iprot.readMapEnd(); } @@ -397141,7 +396097,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -397149,19 +396105,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4259 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4223 : struct.success.entrySet()) { - oprot.writeI64(_iter4259.getKey()); + oprot.writeI64(_iter4223.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4259.getValue().size())); - for (java.util.Map.Entry> _iter4260 : _iter4259.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4223.getValue().size())); + for (java.util.Map.Entry> _iter4224 : _iter4223.getValue().entrySet()) { - oprot.writeString(_iter4260.getKey()); + oprot.writeString(_iter4224.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4260.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4261 : _iter4260.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4224.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4225 : _iter4224.getValue()) { - _iter4261.write(oprot); + _iter4225.write(oprot); } oprot.writeSetEnd(); } @@ -397199,17 +396155,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes } - private static class selectKeysCclTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestr_resultTupleScheme getScheme() { - return new selectKeysCclTimestr_resultTupleScheme(); + public selectKeysCclTimeOrderPage_resultTupleScheme getScheme() { + return new selectKeysCclTimeOrderPage_resultTupleScheme(); } } - private static class selectKeysCclTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -397231,19 +396187,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4262 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4226 : struct.success.entrySet()) { - oprot.writeI64(_iter4262.getKey()); + oprot.writeI64(_iter4226.getKey()); { - oprot.writeI32(_iter4262.getValue().size()); - for (java.util.Map.Entry> _iter4263 : _iter4262.getValue().entrySet()) + oprot.writeI32(_iter4226.getValue().size()); + for (java.util.Map.Entry> _iter4227 : _iter4226.getValue().entrySet()) { - oprot.writeString(_iter4263.getKey()); + oprot.writeString(_iter4227.getKey()); { - oprot.writeI32(_iter4263.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4264 : _iter4263.getValue()) + oprot.writeI32(_iter4227.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4228 : _iter4227.getValue()) { - _iter4264.write(oprot); + _iter4228.write(oprot); } } } @@ -397266,41 +396222,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4265 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4265.size); - long _key4266; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4267; - for (int _i4268 = 0; _i4268 < _map4265.size; ++_i4268) + org.apache.thrift.protocol.TMap _map4229 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4229.size); + long _key4230; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4231; + for (int _i4232 = 0; _i4232 < _map4229.size; ++_i4232) { - _key4266 = iprot.readI64(); + _key4230 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4269 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4267 = new java.util.LinkedHashMap>(2*_map4269.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4270; - @org.apache.thrift.annotation.Nullable java.util.Set _val4271; - for (int _i4272 = 0; _i4272 < _map4269.size; ++_i4272) + org.apache.thrift.protocol.TMap _map4233 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4231 = new java.util.LinkedHashMap>(2*_map4233.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4234; + @org.apache.thrift.annotation.Nullable java.util.Set _val4235; + for (int _i4236 = 0; _i4236 < _map4233.size; ++_i4236) { - _key4270 = iprot.readString(); + _key4234 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4273 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4271 = new java.util.LinkedHashSet(2*_set4273.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4274; - for (int _i4275 = 0; _i4275 < _set4273.size; ++_i4275) + org.apache.thrift.protocol.TSet _set4237 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4235 = new java.util.LinkedHashSet(2*_set4237.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4238; + for (int _i4239 = 0; _i4239 < _set4237.size; ++_i4239) { - _elem4274 = new com.cinchapi.concourse.thrift.TObject(); - _elem4274.read(iprot); - _val4271.add(_elem4274); + _elem4238 = new com.cinchapi.concourse.thrift.TObject(); + _elem4238.read(iprot); + _val4235.add(_elem4238); } } - _val4267.put(_key4270, _val4271); + _val4231.put(_key4234, _val4235); } } - struct.success.put(_key4266, _val4267); + struct.success.put(_key4230, _val4231); } } struct.setSuccessIsSet(true); @@ -397333,24 +396289,22 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrPage_args"); + public static class selectKeysCclTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -397360,10 +396314,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -397385,13 +396338,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -397446,8 +396397,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -397455,17 +396404,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestr_args.class, metaDataMap); } - public selectKeysCclTimestrPage_args() { + public selectKeysCclTimestr_args() { } - public selectKeysCclTimestrPage_args( + public selectKeysCclTimestr_args( java.util.List keys, java.lang.String ccl, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -397474,7 +396422,6 @@ public selectKeysCclTimestrPage_args( this.keys = keys; this.ccl = ccl; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -397483,7 +396430,7 @@ public selectKeysCclTimestrPage_args( /** * Performs a deep copy on other. */ - public selectKeysCclTimestrPage_args(selectKeysCclTimestrPage_args other) { + public selectKeysCclTimestr_args(selectKeysCclTimestr_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -397494,9 +396441,6 @@ public selectKeysCclTimestrPage_args(selectKeysCclTimestrPage_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -397509,8 +396453,8 @@ public selectKeysCclTimestrPage_args(selectKeysCclTimestrPage_args other) { } @Override - public selectKeysCclTimestrPage_args deepCopy() { - return new selectKeysCclTimestrPage_args(this); + public selectKeysCclTimestr_args deepCopy() { + return new selectKeysCclTimestr_args(this); } @Override @@ -397518,7 +396462,6 @@ public void clear() { this.keys = null; this.ccl = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -397545,7 +396488,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -397570,7 +396513,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclTimestrPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclTimestr_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -397595,7 +396538,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysCclTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysCclTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -397615,37 +396558,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCclTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -397670,7 +396588,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -397695,7 +396613,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -397742,14 +396660,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -397790,9 +396700,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -397820,8 +396727,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -397834,12 +396739,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimestrPage_args) - return this.equals((selectKeysCclTimestrPage_args)that); + if (that instanceof selectKeysCclTimestr_args) + return this.equals((selectKeysCclTimestr_args)that); return false; } - public boolean equals(selectKeysCclTimestrPage_args that) { + public boolean equals(selectKeysCclTimestr_args that) { if (that == null) return false; if (this == that) @@ -397872,15 +396777,6 @@ public boolean equals(selectKeysCclTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -397927,10 +396823,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -397947,7 +396839,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimestrPage_args other) { + public int compareTo(selectKeysCclTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -397984,16 +396876,6 @@ public int compareTo(selectKeysCclTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -398045,7 +396927,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestr_args("); boolean first = true; sb.append("keys:"); @@ -398072,14 +396954,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -398110,9 +396984,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -398137,17 +397008,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrPage_argsStandardScheme getScheme() { - return new selectKeysCclTimestrPage_argsStandardScheme(); + public selectKeysCclTimestr_argsStandardScheme getScheme() { + return new selectKeysCclTimestr_argsStandardScheme(); } } - private static class selectKeysCclTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -398160,13 +397031,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4276 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4276.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4277; - for (int _i4278 = 0; _i4278 < _list4276.size; ++_i4278) + org.apache.thrift.protocol.TList _list4240 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4240.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4241; + for (int _i4242 = 0; _i4242 < _list4240.size; ++_i4242) { - _elem4277 = iprot.readString(); - struct.keys.add(_elem4277); + _elem4241 = iprot.readString(); + struct.keys.add(_elem4241); } iprot.readListEnd(); } @@ -398191,16 +397062,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -398209,7 +397071,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -398218,7 +397080,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -398238,7 +397100,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -398246,9 +397108,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4279 : struct.keys) + for (java.lang.String _iter4243 : struct.keys) { - oprot.writeString(_iter4279); + oprot.writeString(_iter4243); } oprot.writeListEnd(); } @@ -398264,11 +397126,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -398290,17 +397147,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes } - private static class selectKeysCclTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrPage_argsTupleScheme getScheme() { - return new selectKeysCclTimestrPage_argsTupleScheme(); + public selectKeysCclTimestr_argsTupleScheme getScheme() { + return new selectKeysCclTimestr_argsTupleScheme(); } } - private static class selectKeysCclTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -398312,25 +397169,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4280 : struct.keys) + for (java.lang.String _iter4244 : struct.keys) { - oprot.writeString(_iter4280); + oprot.writeString(_iter4244); } } } @@ -398340,9 +397194,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -398355,18 +397206,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4281 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4281.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4282; - for (int _i4283 = 0; _i4283 < _list4281.size; ++_i4283) + org.apache.thrift.protocol.TList _list4245 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4245.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4246; + for (int _i4247 = 0; _i4247 < _list4245.size; ++_i4247) { - _elem4282 = iprot.readString(); - struct.keys.add(_elem4282); + _elem4246 = iprot.readString(); + struct.keys.add(_elem4246); } } struct.setKeysIsSet(true); @@ -398380,21 +397231,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -398406,8 +397252,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrPage_result"); + public static class selectKeysCclTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -398415,8 +397261,8 @@ public static class selectKeysCclTimestrPage_result implements org.apache.thrift private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -398518,13 +397364,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestr_result.class, metaDataMap); } - public selectKeysCclTimestrPage_result() { + public selectKeysCclTimestr_result() { } - public selectKeysCclTimestrPage_result( + public selectKeysCclTimestr_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -398542,7 +397388,7 @@ public selectKeysCclTimestrPage_result( /** * Performs a deep copy on other. */ - public selectKeysCclTimestrPage_result(selectKeysCclTimestrPage_result other) { + public selectKeysCclTimestr_result(selectKeysCclTimestr_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -398587,8 +397433,8 @@ public selectKeysCclTimestrPage_result(selectKeysCclTimestrPage_result other) { } @Override - public selectKeysCclTimestrPage_result deepCopy() { - return new selectKeysCclTimestrPage_result(this); + public selectKeysCclTimestr_result deepCopy() { + return new selectKeysCclTimestr_result(this); } @Override @@ -398616,7 +397462,7 @@ public java.util.Map>> success) { + public selectKeysCclTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -398641,7 +397487,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -398666,7 +397512,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -398691,7 +397537,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -398716,7 +397562,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -398829,12 +397675,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimestrPage_result) - return this.equals((selectKeysCclTimestrPage_result)that); + if (that instanceof selectKeysCclTimestr_result) + return this.equals((selectKeysCclTimestr_result)that); return false; } - public boolean equals(selectKeysCclTimestrPage_result that) { + public boolean equals(selectKeysCclTimestr_result that) { if (that == null) return false; if (this == that) @@ -398916,7 +397762,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimestrPage_result other) { + public int compareTo(selectKeysCclTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -398993,7 +397839,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestr_result("); boolean first = true; sb.append("success:"); @@ -399060,17 +397906,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrPage_resultStandardScheme getScheme() { - return new selectKeysCclTimestrPage_resultStandardScheme(); + public selectKeysCclTimestr_resultStandardScheme getScheme() { + return new selectKeysCclTimestr_resultStandardScheme(); } } - private static class selectKeysCclTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -399083,38 +397929,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4284 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4284.size); - long _key4285; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4286; - for (int _i4287 = 0; _i4287 < _map4284.size; ++_i4287) + org.apache.thrift.protocol.TMap _map4248 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4248.size); + long _key4249; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4250; + for (int _i4251 = 0; _i4251 < _map4248.size; ++_i4251) { - _key4285 = iprot.readI64(); + _key4249 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4288 = iprot.readMapBegin(); - _val4286 = new java.util.LinkedHashMap>(2*_map4288.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4289; - @org.apache.thrift.annotation.Nullable java.util.Set _val4290; - for (int _i4291 = 0; _i4291 < _map4288.size; ++_i4291) + org.apache.thrift.protocol.TMap _map4252 = iprot.readMapBegin(); + _val4250 = new java.util.LinkedHashMap>(2*_map4252.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4253; + @org.apache.thrift.annotation.Nullable java.util.Set _val4254; + for (int _i4255 = 0; _i4255 < _map4252.size; ++_i4255) { - _key4289 = iprot.readString(); + _key4253 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4292 = iprot.readSetBegin(); - _val4290 = new java.util.LinkedHashSet(2*_set4292.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4293; - for (int _i4294 = 0; _i4294 < _set4292.size; ++_i4294) + org.apache.thrift.protocol.TSet _set4256 = iprot.readSetBegin(); + _val4254 = new java.util.LinkedHashSet(2*_set4256.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4257; + for (int _i4258 = 0; _i4258 < _set4256.size; ++_i4258) { - _elem4293 = new com.cinchapi.concourse.thrift.TObject(); - _elem4293.read(iprot); - _val4290.add(_elem4293); + _elem4257 = new com.cinchapi.concourse.thrift.TObject(); + _elem4257.read(iprot); + _val4254.add(_elem4257); } iprot.readSetEnd(); } - _val4286.put(_key4289, _val4290); + _val4250.put(_key4253, _val4254); } iprot.readMapEnd(); } - struct.success.put(_key4285, _val4286); + struct.success.put(_key4249, _val4250); } iprot.readMapEnd(); } @@ -399171,7 +398017,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -399179,19 +398025,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4295 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4259 : struct.success.entrySet()) { - oprot.writeI64(_iter4295.getKey()); + oprot.writeI64(_iter4259.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4295.getValue().size())); - for (java.util.Map.Entry> _iter4296 : _iter4295.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4259.getValue().size())); + for (java.util.Map.Entry> _iter4260 : _iter4259.getValue().entrySet()) { - oprot.writeString(_iter4296.getKey()); + oprot.writeString(_iter4260.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4296.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4297 : _iter4296.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4260.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4261 : _iter4260.getValue()) { - _iter4297.write(oprot); + _iter4261.write(oprot); } oprot.writeSetEnd(); } @@ -399229,17 +398075,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes } - private static class selectKeysCclTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrPage_resultTupleScheme getScheme() { - return new selectKeysCclTimestrPage_resultTupleScheme(); + public selectKeysCclTimestr_resultTupleScheme getScheme() { + return new selectKeysCclTimestr_resultTupleScheme(); } } - private static class selectKeysCclTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -399261,19 +398107,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4298 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4262 : struct.success.entrySet()) { - oprot.writeI64(_iter4298.getKey()); + oprot.writeI64(_iter4262.getKey()); { - oprot.writeI32(_iter4298.getValue().size()); - for (java.util.Map.Entry> _iter4299 : _iter4298.getValue().entrySet()) + oprot.writeI32(_iter4262.getValue().size()); + for (java.util.Map.Entry> _iter4263 : _iter4262.getValue().entrySet()) { - oprot.writeString(_iter4299.getKey()); + oprot.writeString(_iter4263.getKey()); { - oprot.writeI32(_iter4299.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4300 : _iter4299.getValue()) + oprot.writeI32(_iter4263.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4264 : _iter4263.getValue()) { - _iter4300.write(oprot); + _iter4264.write(oprot); } } } @@ -399296,41 +398142,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4301 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4301.size); - long _key4302; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4303; - for (int _i4304 = 0; _i4304 < _map4301.size; ++_i4304) + org.apache.thrift.protocol.TMap _map4265 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4265.size); + long _key4266; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4267; + for (int _i4268 = 0; _i4268 < _map4265.size; ++_i4268) { - _key4302 = iprot.readI64(); + _key4266 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4305 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4303 = new java.util.LinkedHashMap>(2*_map4305.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4306; - @org.apache.thrift.annotation.Nullable java.util.Set _val4307; - for (int _i4308 = 0; _i4308 < _map4305.size; ++_i4308) + org.apache.thrift.protocol.TMap _map4269 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4267 = new java.util.LinkedHashMap>(2*_map4269.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4270; + @org.apache.thrift.annotation.Nullable java.util.Set _val4271; + for (int _i4272 = 0; _i4272 < _map4269.size; ++_i4272) { - _key4306 = iprot.readString(); + _key4270 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4309 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4307 = new java.util.LinkedHashSet(2*_set4309.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4310; - for (int _i4311 = 0; _i4311 < _set4309.size; ++_i4311) + org.apache.thrift.protocol.TSet _set4273 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4271 = new java.util.LinkedHashSet(2*_set4273.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4274; + for (int _i4275 = 0; _i4275 < _set4273.size; ++_i4275) { - _elem4310 = new com.cinchapi.concourse.thrift.TObject(); - _elem4310.read(iprot); - _val4307.add(_elem4310); + _elem4274 = new com.cinchapi.concourse.thrift.TObject(); + _elem4274.read(iprot); + _val4271.add(_elem4274); } } - _val4303.put(_key4306, _val4307); + _val4267.put(_key4270, _val4271); } } - struct.success.put(_key4302, _val4303); + struct.success.put(_key4266, _val4267); } } struct.setSuccessIsSet(true); @@ -399363,24 +398209,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrOrder_args"); + public static class selectKeysCclTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -399390,7 +398236,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -399415,8 +398261,8 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -399476,8 +398322,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -399485,17 +398331,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrPage_args.class, metaDataMap); } - public selectKeysCclTimestrOrder_args() { + public selectKeysCclTimestrPage_args() { } - public selectKeysCclTimestrOrder_args( + public selectKeysCclTimestrPage_args( java.util.List keys, java.lang.String ccl, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -399504,7 +398350,7 @@ public selectKeysCclTimestrOrder_args( this.keys = keys; this.ccl = ccl; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -399513,7 +398359,7 @@ public selectKeysCclTimestrOrder_args( /** * Performs a deep copy on other. */ - public selectKeysCclTimestrOrder_args(selectKeysCclTimestrOrder_args other) { + public selectKeysCclTimestrPage_args(selectKeysCclTimestrPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -399524,8 +398370,8 @@ public selectKeysCclTimestrOrder_args(selectKeysCclTimestrOrder_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -399539,8 +398385,8 @@ public selectKeysCclTimestrOrder_args(selectKeysCclTimestrOrder_args other) { } @Override - public selectKeysCclTimestrOrder_args deepCopy() { - return new selectKeysCclTimestrOrder_args(this); + public selectKeysCclTimestrPage_args deepCopy() { + return new selectKeysCclTimestrPage_args(this); } @Override @@ -399548,7 +398394,7 @@ public void clear() { this.keys = null; this.ccl = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -399575,7 +398421,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -399600,7 +398446,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclTimestrOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclTimestrPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -399625,7 +398471,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysCclTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysCclTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -399646,27 +398492,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public selectKeysCclTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public selectKeysCclTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -399675,7 +398521,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -399700,7 +398546,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -399725,7 +398571,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -399772,11 +398618,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -399820,8 +398666,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -399850,8 +398696,8 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -399864,12 +398710,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimestrOrder_args) - return this.equals((selectKeysCclTimestrOrder_args)that); + if (that instanceof selectKeysCclTimestrPage_args) + return this.equals((selectKeysCclTimestrPage_args)that); return false; } - public boolean equals(selectKeysCclTimestrOrder_args that) { + public boolean equals(selectKeysCclTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -399902,12 +398748,12 @@ public boolean equals(selectKeysCclTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -399957,9 +398803,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -399977,7 +398823,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimestrOrder_args other) { + public int compareTo(selectKeysCclTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -400014,12 +398860,12 @@ public int compareTo(selectKeysCclTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -400075,7 +398921,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrPage_args("); boolean first = true; sb.append("keys:"); @@ -400102,11 +398948,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -400140,8 +398986,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -400167,17 +399013,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrOrder_argsStandardScheme getScheme() { - return new selectKeysCclTimestrOrder_argsStandardScheme(); + public selectKeysCclTimestrPage_argsStandardScheme getScheme() { + return new selectKeysCclTimestrPage_argsStandardScheme(); } } - private static class selectKeysCclTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -400190,13 +399036,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4312 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4312.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4313; - for (int _i4314 = 0; _i4314 < _list4312.size; ++_i4314) + org.apache.thrift.protocol.TList _list4276 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4276.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4277; + for (int _i4278 = 0; _i4278 < _list4276.size; ++_i4278) { - _elem4313 = iprot.readString(); - struct.keys.add(_elem4313); + _elem4277 = iprot.readString(); + struct.keys.add(_elem4277); } iprot.readListEnd(); } @@ -400221,11 +399067,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -400268,7 +399114,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -400276,9 +399122,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4315 : struct.keys) + for (java.lang.String _iter4279 : struct.keys) { - oprot.writeString(_iter4315); + oprot.writeString(_iter4279); } oprot.writeListEnd(); } @@ -400294,9 +399140,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -400320,17 +399166,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes } - private static class selectKeysCclTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrOrder_argsTupleScheme getScheme() { - return new selectKeysCclTimestrOrder_argsTupleScheme(); + public selectKeysCclTimestrPage_argsTupleScheme getScheme() { + return new selectKeysCclTimestrPage_argsTupleScheme(); } } - private static class selectKeysCclTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -400342,7 +399188,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -400358,9 +399204,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4316 : struct.keys) + for (java.lang.String _iter4280 : struct.keys) { - oprot.writeString(_iter4316); + oprot.writeString(_iter4280); } } } @@ -400370,8 +399216,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -400385,18 +399231,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4317 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4317.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4318; - for (int _i4319 = 0; _i4319 < _list4317.size; ++_i4319) + org.apache.thrift.protocol.TList _list4281 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4281.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4282; + for (int _i4283 = 0; _i4283 < _list4281.size; ++_i4283) { - _elem4318 = iprot.readString(); - struct.keys.add(_elem4318); + _elem4282 = iprot.readString(); + struct.keys.add(_elem4282); } } struct.setKeysIsSet(true); @@ -400410,9 +399256,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -400436,8 +399282,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrOrder_result"); + public static class selectKeysCclTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -400445,8 +399291,8 @@ public static class selectKeysCclTimestrOrder_result implements org.apache.thrif private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -400548,13 +399394,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrPage_result.class, metaDataMap); } - public selectKeysCclTimestrOrder_result() { + public selectKeysCclTimestrPage_result() { } - public selectKeysCclTimestrOrder_result( + public selectKeysCclTimestrPage_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -400572,7 +399418,7 @@ public selectKeysCclTimestrOrder_result( /** * Performs a deep copy on other. */ - public selectKeysCclTimestrOrder_result(selectKeysCclTimestrOrder_result other) { + public selectKeysCclTimestrPage_result(selectKeysCclTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -400617,8 +399463,8 @@ public selectKeysCclTimestrOrder_result(selectKeysCclTimestrOrder_result other) } @Override - public selectKeysCclTimestrOrder_result deepCopy() { - return new selectKeysCclTimestrOrder_result(this); + public selectKeysCclTimestrPage_result deepCopy() { + return new selectKeysCclTimestrPage_result(this); } @Override @@ -400646,7 +399492,7 @@ public java.util.Map>> success) { + public selectKeysCclTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -400671,7 +399517,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -400696,7 +399542,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -400721,7 +399567,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -400746,7 +399592,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -400859,12 +399705,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimestrOrder_result) - return this.equals((selectKeysCclTimestrOrder_result)that); + if (that instanceof selectKeysCclTimestrPage_result) + return this.equals((selectKeysCclTimestrPage_result)that); return false; } - public boolean equals(selectKeysCclTimestrOrder_result that) { + public boolean equals(selectKeysCclTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -400946,7 +399792,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimestrOrder_result other) { + public int compareTo(selectKeysCclTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -401023,7 +399869,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -401090,17 +399936,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrOrder_resultStandardScheme getScheme() { - return new selectKeysCclTimestrOrder_resultStandardScheme(); + public selectKeysCclTimestrPage_resultStandardScheme getScheme() { + return new selectKeysCclTimestrPage_resultStandardScheme(); } } - private static class selectKeysCclTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -401113,38 +399959,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4320 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4320.size); - long _key4321; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4322; - for (int _i4323 = 0; _i4323 < _map4320.size; ++_i4323) + org.apache.thrift.protocol.TMap _map4284 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4284.size); + long _key4285; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4286; + for (int _i4287 = 0; _i4287 < _map4284.size; ++_i4287) { - _key4321 = iprot.readI64(); + _key4285 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4324 = iprot.readMapBegin(); - _val4322 = new java.util.LinkedHashMap>(2*_map4324.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4325; - @org.apache.thrift.annotation.Nullable java.util.Set _val4326; - for (int _i4327 = 0; _i4327 < _map4324.size; ++_i4327) + org.apache.thrift.protocol.TMap _map4288 = iprot.readMapBegin(); + _val4286 = new java.util.LinkedHashMap>(2*_map4288.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4289; + @org.apache.thrift.annotation.Nullable java.util.Set _val4290; + for (int _i4291 = 0; _i4291 < _map4288.size; ++_i4291) { - _key4325 = iprot.readString(); + _key4289 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4328 = iprot.readSetBegin(); - _val4326 = new java.util.LinkedHashSet(2*_set4328.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4329; - for (int _i4330 = 0; _i4330 < _set4328.size; ++_i4330) + org.apache.thrift.protocol.TSet _set4292 = iprot.readSetBegin(); + _val4290 = new java.util.LinkedHashSet(2*_set4292.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4293; + for (int _i4294 = 0; _i4294 < _set4292.size; ++_i4294) { - _elem4329 = new com.cinchapi.concourse.thrift.TObject(); - _elem4329.read(iprot); - _val4326.add(_elem4329); + _elem4293 = new com.cinchapi.concourse.thrift.TObject(); + _elem4293.read(iprot); + _val4290.add(_elem4293); } iprot.readSetEnd(); } - _val4322.put(_key4325, _val4326); + _val4286.put(_key4289, _val4290); } iprot.readMapEnd(); } - struct.success.put(_key4321, _val4322); + struct.success.put(_key4285, _val4286); } iprot.readMapEnd(); } @@ -401201,7 +400047,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -401209,19 +400055,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4331 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4295 : struct.success.entrySet()) { - oprot.writeI64(_iter4331.getKey()); + oprot.writeI64(_iter4295.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4331.getValue().size())); - for (java.util.Map.Entry> _iter4332 : _iter4331.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4295.getValue().size())); + for (java.util.Map.Entry> _iter4296 : _iter4295.getValue().entrySet()) { - oprot.writeString(_iter4332.getKey()); + oprot.writeString(_iter4296.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4332.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4333 : _iter4332.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4296.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4297 : _iter4296.getValue()) { - _iter4333.write(oprot); + _iter4297.write(oprot); } oprot.writeSetEnd(); } @@ -401259,17 +400105,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes } - private static class selectKeysCclTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrOrder_resultTupleScheme getScheme() { - return new selectKeysCclTimestrOrder_resultTupleScheme(); + public selectKeysCclTimestrPage_resultTupleScheme getScheme() { + return new selectKeysCclTimestrPage_resultTupleScheme(); } } - private static class selectKeysCclTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -401291,19 +400137,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4334 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4298 : struct.success.entrySet()) { - oprot.writeI64(_iter4334.getKey()); + oprot.writeI64(_iter4298.getKey()); { - oprot.writeI32(_iter4334.getValue().size()); - for (java.util.Map.Entry> _iter4335 : _iter4334.getValue().entrySet()) + oprot.writeI32(_iter4298.getValue().size()); + for (java.util.Map.Entry> _iter4299 : _iter4298.getValue().entrySet()) { - oprot.writeString(_iter4335.getKey()); + oprot.writeString(_iter4299.getKey()); { - oprot.writeI32(_iter4335.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4336 : _iter4335.getValue()) + oprot.writeI32(_iter4299.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4300 : _iter4299.getValue()) { - _iter4336.write(oprot); + _iter4300.write(oprot); } } } @@ -401326,41 +400172,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4337 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4337.size); - long _key4338; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4339; - for (int _i4340 = 0; _i4340 < _map4337.size; ++_i4340) + org.apache.thrift.protocol.TMap _map4301 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4301.size); + long _key4302; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4303; + for (int _i4304 = 0; _i4304 < _map4301.size; ++_i4304) { - _key4338 = iprot.readI64(); + _key4302 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4341 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4339 = new java.util.LinkedHashMap>(2*_map4341.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4342; - @org.apache.thrift.annotation.Nullable java.util.Set _val4343; - for (int _i4344 = 0; _i4344 < _map4341.size; ++_i4344) + org.apache.thrift.protocol.TMap _map4305 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4303 = new java.util.LinkedHashMap>(2*_map4305.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4306; + @org.apache.thrift.annotation.Nullable java.util.Set _val4307; + for (int _i4308 = 0; _i4308 < _map4305.size; ++_i4308) { - _key4342 = iprot.readString(); + _key4306 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4345 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4343 = new java.util.LinkedHashSet(2*_set4345.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4346; - for (int _i4347 = 0; _i4347 < _set4345.size; ++_i4347) + org.apache.thrift.protocol.TSet _set4309 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4307 = new java.util.LinkedHashSet(2*_set4309.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4310; + for (int _i4311 = 0; _i4311 < _set4309.size; ++_i4311) { - _elem4346 = new com.cinchapi.concourse.thrift.TObject(); - _elem4346.read(iprot); - _val4343.add(_elem4346); + _elem4310 = new com.cinchapi.concourse.thrift.TObject(); + _elem4310.read(iprot); + _val4307.add(_elem4310); } } - _val4339.put(_key4342, _val4343); + _val4303.put(_key4306, _val4307); } } - struct.success.put(_key4338, _val4339); + struct.success.put(_key4302, _val4303); } } struct.setSuccessIsSet(true); @@ -401393,26 +400239,24 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrOrderPage_args"); + public static class selectKeysCclTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -401423,10 +400267,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -401450,13 +400293,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -401513,8 +400354,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -401522,18 +400361,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrOrder_args.class, metaDataMap); } - public selectKeysCclTimestrOrderPage_args() { + public selectKeysCclTimestrOrder_args() { } - public selectKeysCclTimestrOrderPage_args( + public selectKeysCclTimestrOrder_args( java.util.List keys, java.lang.String ccl, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -401543,7 +400381,6 @@ public selectKeysCclTimestrOrderPage_args( this.ccl = ccl; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -401552,7 +400389,7 @@ public selectKeysCclTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public selectKeysCclTimestrOrderPage_args(selectKeysCclTimestrOrderPage_args other) { + public selectKeysCclTimestrOrder_args(selectKeysCclTimestrOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -401566,9 +400403,6 @@ public selectKeysCclTimestrOrderPage_args(selectKeysCclTimestrOrderPage_args oth if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -401581,8 +400415,8 @@ public selectKeysCclTimestrOrderPage_args(selectKeysCclTimestrOrderPage_args oth } @Override - public selectKeysCclTimestrOrderPage_args deepCopy() { - return new selectKeysCclTimestrOrderPage_args(this); + public selectKeysCclTimestrOrder_args deepCopy() { + return new selectKeysCclTimestrOrder_args(this); } @Override @@ -401591,7 +400425,6 @@ public void clear() { this.ccl = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -401618,7 +400451,7 @@ public java.util.List getKeys() { return this.keys; } - public selectKeysCclTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public selectKeysCclTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -401643,7 +400476,7 @@ public java.lang.String getCcl() { return this.ccl; } - public selectKeysCclTimestrOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public selectKeysCclTimestrOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -401668,7 +400501,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public selectKeysCclTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public selectKeysCclTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -401693,7 +400526,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public selectKeysCclTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public selectKeysCclTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -401713,37 +400546,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public selectKeysCclTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public selectKeysCclTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -401768,7 +400576,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public selectKeysCclTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -401793,7 +400601,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public selectKeysCclTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -401848,14 +400656,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -401899,9 +400699,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -401931,8 +400728,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -401945,12 +400740,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimestrOrderPage_args) - return this.equals((selectKeysCclTimestrOrderPage_args)that); + if (that instanceof selectKeysCclTimestrOrder_args) + return this.equals((selectKeysCclTimestrOrder_args)that); return false; } - public boolean equals(selectKeysCclTimestrOrderPage_args that) { + public boolean equals(selectKeysCclTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -401992,15 +400787,6 @@ public boolean equals(selectKeysCclTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -402051,10 +400837,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -402071,7 +400853,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimestrOrderPage_args other) { + public int compareTo(selectKeysCclTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -402118,16 +400900,6 @@ public int compareTo(selectKeysCclTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -402179,7 +400951,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrOrder_args("); boolean first = true; sb.append("keys:"); @@ -402214,14 +400986,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -402255,9 +401019,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -402282,17 +401043,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrOrderPage_argsStandardScheme getScheme() { - return new selectKeysCclTimestrOrderPage_argsStandardScheme(); + public selectKeysCclTimestrOrder_argsStandardScheme getScheme() { + return new selectKeysCclTimestrOrder_argsStandardScheme(); } } - private static class selectKeysCclTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -402305,13 +401066,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4348 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4348.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4349; - for (int _i4350 = 0; _i4350 < _list4348.size; ++_i4350) + org.apache.thrift.protocol.TList _list4312 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4312.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4313; + for (int _i4314 = 0; _i4314 < _list4312.size; ++_i4314) { - _elem4349 = iprot.readString(); - struct.keys.add(_elem4349); + _elem4313 = iprot.readString(); + struct.keys.add(_elem4313); } iprot.readListEnd(); } @@ -402345,16 +401106,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -402363,7 +401115,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -402372,7 +401124,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -402392,7 +401144,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -402400,9 +401152,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4351 : struct.keys) + for (java.lang.String _iter4315 : struct.keys) { - oprot.writeString(_iter4351); + oprot.writeString(_iter4315); } oprot.writeListEnd(); } @@ -402423,11 +401175,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -402449,17 +401196,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes } - private static class selectKeysCclTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrOrderPage_argsTupleScheme getScheme() { - return new selectKeysCclTimestrOrderPage_argsTupleScheme(); + public selectKeysCclTimestrOrder_argsTupleScheme getScheme() { + return new selectKeysCclTimestrOrder_argsTupleScheme(); } } - private static class selectKeysCclTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -402474,25 +401221,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4352 : struct.keys) + for (java.lang.String _iter4316 : struct.keys) { - oprot.writeString(_iter4352); + oprot.writeString(_iter4316); } } } @@ -402505,9 +401249,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -402520,18 +401261,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4353 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4353.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4354; - for (int _i4355 = 0; _i4355 < _list4353.size; ++_i4355) + org.apache.thrift.protocol.TList _list4317 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4317.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4318; + for (int _i4319 = 0; _i4319 < _list4317.size; ++_i4319) { - _elem4354 = iprot.readString(); - struct.keys.add(_elem4354); + _elem4318 = iprot.readString(); + struct.keys.add(_elem4318); } } struct.setKeysIsSet(true); @@ -402550,21 +401291,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestr struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -402576,8 +401312,8 @@ private static S scheme(org.apache. } } - public static class selectKeysCclTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrOrderPage_result"); + public static class selectKeysCclTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -402585,8 +401321,8 @@ public static class selectKeysCclTimestrOrderPage_result implements org.apache.t private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -402688,13 +401424,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrOrder_result.class, metaDataMap); } - public selectKeysCclTimestrOrderPage_result() { + public selectKeysCclTimestrOrder_result() { } - public selectKeysCclTimestrOrderPage_result( + public selectKeysCclTimestrOrder_result( java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -402712,7 +401448,7 @@ public selectKeysCclTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public selectKeysCclTimestrOrderPage_result(selectKeysCclTimestrOrderPage_result other) { + public selectKeysCclTimestrOrder_result(selectKeysCclTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); for (java.util.Map.Entry>> other_element : other.success.entrySet()) { @@ -402757,8 +401493,8 @@ public selectKeysCclTimestrOrderPage_result(selectKeysCclTimestrOrderPage_result } @Override - public selectKeysCclTimestrOrderPage_result deepCopy() { - return new selectKeysCclTimestrOrderPage_result(this); + public selectKeysCclTimestrOrder_result deepCopy() { + return new selectKeysCclTimestrOrder_result(this); } @Override @@ -402786,7 +401522,7 @@ public java.util.Map>> success) { + public selectKeysCclTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -402811,7 +401547,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public selectKeysCclTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -402836,7 +401572,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public selectKeysCclTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -402861,7 +401597,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public selectKeysCclTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public selectKeysCclTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -402886,7 +401622,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public selectKeysCclTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public selectKeysCclTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -402999,12 +401735,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof selectKeysCclTimestrOrderPage_result) - return this.equals((selectKeysCclTimestrOrderPage_result)that); + if (that instanceof selectKeysCclTimestrOrder_result) + return this.equals((selectKeysCclTimestrOrder_result)that); return false; } - public boolean equals(selectKeysCclTimestrOrderPage_result that) { + public boolean equals(selectKeysCclTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -403086,7 +401822,7 @@ public int hashCode() { } @Override - public int compareTo(selectKeysCclTimestrOrderPage_result other) { + public int compareTo(selectKeysCclTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -403163,7 +401899,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -403230,17 +401966,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class selectKeysCclTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrOrderPage_resultStandardScheme getScheme() { - return new selectKeysCclTimestrOrderPage_resultStandardScheme(); + public selectKeysCclTimestrOrder_resultStandardScheme getScheme() { + return new selectKeysCclTimestrOrder_resultStandardScheme(); } } - private static class selectKeysCclTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -403253,38 +401989,38 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4356 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map4356.size); - long _key4357; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4358; - for (int _i4359 = 0; _i4359 < _map4356.size; ++_i4359) + org.apache.thrift.protocol.TMap _map4320 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4320.size); + long _key4321; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4322; + for (int _i4323 = 0; _i4323 < _map4320.size; ++_i4323) { - _key4357 = iprot.readI64(); + _key4321 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4360 = iprot.readMapBegin(); - _val4358 = new java.util.LinkedHashMap>(2*_map4360.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4361; - @org.apache.thrift.annotation.Nullable java.util.Set _val4362; - for (int _i4363 = 0; _i4363 < _map4360.size; ++_i4363) + org.apache.thrift.protocol.TMap _map4324 = iprot.readMapBegin(); + _val4322 = new java.util.LinkedHashMap>(2*_map4324.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4325; + @org.apache.thrift.annotation.Nullable java.util.Set _val4326; + for (int _i4327 = 0; _i4327 < _map4324.size; ++_i4327) { - _key4361 = iprot.readString(); + _key4325 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4364 = iprot.readSetBegin(); - _val4362 = new java.util.LinkedHashSet(2*_set4364.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4365; - for (int _i4366 = 0; _i4366 < _set4364.size; ++_i4366) + org.apache.thrift.protocol.TSet _set4328 = iprot.readSetBegin(); + _val4326 = new java.util.LinkedHashSet(2*_set4328.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4329; + for (int _i4330 = 0; _i4330 < _set4328.size; ++_i4330) { - _elem4365 = new com.cinchapi.concourse.thrift.TObject(); - _elem4365.read(iprot); - _val4362.add(_elem4365); + _elem4329 = new com.cinchapi.concourse.thrift.TObject(); + _elem4329.read(iprot); + _val4326.add(_elem4329); } iprot.readSetEnd(); } - _val4358.put(_key4361, _val4362); + _val4322.put(_key4325, _val4326); } iprot.readMapEnd(); } - struct.success.put(_key4357, _val4358); + struct.success.put(_key4321, _val4322); } iprot.readMapEnd(); } @@ -403341,7 +402077,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -403349,19 +402085,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter4367 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4331 : struct.success.entrySet()) { - oprot.writeI64(_iter4367.getKey()); + oprot.writeI64(_iter4331.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4367.getValue().size())); - for (java.util.Map.Entry> _iter4368 : _iter4367.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4331.getValue().size())); + for (java.util.Map.Entry> _iter4332 : _iter4331.getValue().entrySet()) { - oprot.writeString(_iter4368.getKey()); + oprot.writeString(_iter4332.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4368.getValue().size())); - for (com.cinchapi.concourse.thrift.TObject _iter4369 : _iter4368.getValue()) + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4332.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4333 : _iter4332.getValue()) { - _iter4369.write(oprot); + _iter4333.write(oprot); } oprot.writeSetEnd(); } @@ -403399,17 +402135,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimes } - private static class selectKeysCclTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public selectKeysCclTimestrOrderPage_resultTupleScheme getScheme() { - return new selectKeysCclTimestrOrderPage_resultTupleScheme(); + public selectKeysCclTimestrOrder_resultTupleScheme getScheme() { + return new selectKeysCclTimestrOrder_resultTupleScheme(); } } - private static class selectKeysCclTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -403431,19 +402167,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter4370 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter4334 : struct.success.entrySet()) { - oprot.writeI64(_iter4370.getKey()); + oprot.writeI64(_iter4334.getKey()); { - oprot.writeI32(_iter4370.getValue().size()); - for (java.util.Map.Entry> _iter4371 : _iter4370.getValue().entrySet()) + oprot.writeI32(_iter4334.getValue().size()); + for (java.util.Map.Entry> _iter4335 : _iter4334.getValue().entrySet()) { - oprot.writeString(_iter4371.getKey()); + oprot.writeString(_iter4335.getKey()); { - oprot.writeI32(_iter4371.getValue().size()); - for (com.cinchapi.concourse.thrift.TObject _iter4372 : _iter4371.getValue()) + oprot.writeI32(_iter4335.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4336 : _iter4335.getValue()) { - _iter4372.write(oprot); + _iter4336.write(oprot); } } } @@ -403466,41 +402202,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4373 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map4373.size); - long _key4374; - @org.apache.thrift.annotation.Nullable java.util.Map> _val4375; - for (int _i4376 = 0; _i4376 < _map4373.size; ++_i4376) + org.apache.thrift.protocol.TMap _map4337 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4337.size); + long _key4338; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4339; + for (int _i4340 = 0; _i4340 < _map4337.size; ++_i4340) { - _key4374 = iprot.readI64(); + _key4338 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4377 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val4375 = new java.util.LinkedHashMap>(2*_map4377.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4378; - @org.apache.thrift.annotation.Nullable java.util.Set _val4379; - for (int _i4380 = 0; _i4380 < _map4377.size; ++_i4380) + org.apache.thrift.protocol.TMap _map4341 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4339 = new java.util.LinkedHashMap>(2*_map4341.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4342; + @org.apache.thrift.annotation.Nullable java.util.Set _val4343; + for (int _i4344 = 0; _i4344 < _map4341.size; ++_i4344) { - _key4378 = iprot.readString(); + _key4342 = iprot.readString(); { - org.apache.thrift.protocol.TSet _set4381 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); - _val4379 = new java.util.LinkedHashSet(2*_set4381.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4382; - for (int _i4383 = 0; _i4383 < _set4381.size; ++_i4383) + org.apache.thrift.protocol.TSet _set4345 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4343 = new java.util.LinkedHashSet(2*_set4345.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4346; + for (int _i4347 = 0; _i4347 < _set4345.size; ++_i4347) { - _elem4382 = new com.cinchapi.concourse.thrift.TObject(); - _elem4382.read(iprot); - _val4379.add(_elem4382); + _elem4346 = new com.cinchapi.concourse.thrift.TObject(); + _elem4346.read(iprot); + _val4343.add(_elem4346); } } - _val4375.put(_key4378, _val4379); + _val4339.put(_key4342, _val4343); } } - struct.success.put(_key4374, _val4375); + struct.success.put(_key4338, _val4339); } } struct.setSuccessIsSet(true); @@ -403533,31 +402269,40 @@ private static S scheme(org.apache. } } - public static class getKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecord_args"); + public static class selectKeysCclTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - RECORD((short)2, "record"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + KEYS((short)1, "keys"), + CCL((short)2, "ccl"), + TIMESTAMP((short)3, "timestamp"), + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -403573,15 +402318,21 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // RECORD - return RECORD; - case 3: // CREDS + case 1: // KEYS + return KEYS; + case 2: // CCL + return CCL; + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 4: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -403626,15 +402377,20 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -403642,23 +402398,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrOrderPage_args.class, metaDataMap); } - public getKeyRecord_args() { + public selectKeysCclTimestrOrderPage_args() { } - public getKeyRecord_args( - java.lang.String key, - long record, + public selectKeysCclTimestrOrderPage_args( + java.util.List keys, + java.lang.String ccl, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.record = record; - setRecordIsSet(true); + this.keys = keys; + this.ccl = ccl; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -403667,12 +402428,23 @@ public getKeyRecord_args( /** * Performs a deep copy on other. */ - public getKeyRecord_args(getKeyRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; + public selectKeysCclTimestrOrderPage_args(selectKeysCclTimestrOrderPage_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; + } + if (other.isSetCcl()) { + this.ccl = other.ccl; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -403685,66 +402457,161 @@ public getKeyRecord_args(getKeyRecord_args other) { } @Override - public getKeyRecord_args deepCopy() { - return new getKeyRecord_args(this); + public selectKeysCclTimestrOrderPage_args deepCopy() { + return new selectKeysCclTimestrOrderPage_args(this); } @Override public void clear() { - this.key = null; - setRecordIsSet(false); - this.record = 0; + this.keys = null; + this.ccl = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public getKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public selectKeysCclTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; return this; } - public void unsetKey() { - this.key = null; + public void unsetKeys() { + this.keys = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void setKeyIsSet(boolean value) { + public void setKeysIsSet(boolean value) { if (!value) { - this.key = null; + this.keys = null; } } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.lang.String getCcl() { + return this.ccl; } - public getKeyRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public selectKeysCclTimestrOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setCclIsSet(boolean value) { + if (!value) { + this.ccl = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public selectKeysCclTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public selectKeysCclTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public selectKeysCclTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -403752,7 +402619,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public selectKeysCclTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -403777,7 +402644,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public selectKeysCclTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -403802,7 +402669,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public selectKeysCclTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -403825,19 +402692,43 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case KEYS: if (value == null) { - unsetKey(); + unsetKeys(); } else { - setKey((java.lang.String)value); + setKeys((java.util.List)value); } break; - case RECORD: + case CCL: if (value == null) { - unsetRecord(); + unsetCcl(); } else { - setRecord((java.lang.Long)value); + setCcl((java.lang.String)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -403872,11 +402763,20 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case KEYS: + return getKeys(); - case RECORD: - return getRecord(); + case CCL: + return getCcl(); + + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -403899,10 +402799,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case RECORD: - return isSetRecord(); + case KEYS: + return isSetKeys(); + case CCL: + return isSetCcl(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -403915,32 +402821,59 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecord_args) - return this.equals((getKeyRecord_args)that); + if (that instanceof selectKeysCclTimestrOrderPage_args) + return this.equals((selectKeysCclTimestrOrderPage_args)that); return false; } - public boolean equals(getKeyRecord_args that) { + public boolean equals(selectKeysCclTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.key.equals(that.key)) + if (!this.keys.equals(that.keys)) return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (this.record != that.record) + if (!this.ccl.equals(that.ccl)) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -403978,11 +402911,25 @@ public boolean equals(getKeyRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -404000,29 +402947,59 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecord_args other) { + public int compareTo(selectKeysCclTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -404078,19 +403055,47 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrOrderPage_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("ccl:"); + if (this.ccl == null) { + sb.append("null"); + } else { + sb.append(this.ccl); + } + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -404123,6 +403128,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -404141,25 +403152,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecord_argsStandardScheme getScheme() { - return new getKeyRecord_argsStandardScheme(); + public selectKeysCclTimestrOrderPage_argsStandardScheme getScheme() { + return new selectKeysCclTimestrOrderPage_argsStandardScheme(); } } - private static class getKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -404169,23 +403178,59 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_args s break; } switch (schemeField.id) { - case 1: // KEY + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list4348 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4348.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4349; + for (int _i4350 = 0; _i4350 < _list4348.size; ++_i4350) + { + _elem4349 = iprot.readString(); + struct.keys.add(_elem4349); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // CCL if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -404194,7 +403239,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -404203,7 +403248,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -404223,18 +403268,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter4351 : struct.keys) + { + oprot.writeString(_iter4351); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -404256,40 +403325,64 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecord_args } - private static class getKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecord_argsTupleScheme getScheme() { - return new getKeyRecord_argsTupleScheme(); + public selectKeysCclTimestrOrderPage_argsTupleScheme getScheme() { + return new selectKeysCclTimestrOrderPage_argsTupleScheme(); } } - private static class getKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetRecord()) { + if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetPage()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetCreds()) { + optionals.set(5); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter4352 : struct.keys) + { + oprot.writeString(_iter4352); + } + } + } + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -404303,28 +403396,51 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list4353 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4353.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4354; + for (int _i4355 = 0; _i4355 < _list4353.size; ++_i4355) + { + _elem4354 = iprot.readString(); + struct.keys.add(_elem4354); + } + } + struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -404336,28 +403452,31 @@ private static S scheme(org.apache. } } - public static class getKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecord_result"); + public static class selectKeysCclTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("selectKeysCclTimestrOrderPage_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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new selectKeysCclTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new selectKeysCclTimestrOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -404381,6 +403500,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -404428,39 +403549,74 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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, com.cinchapi.concourse.thrift.TObject.class))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(selectKeysCclTimestrOrderPage_result.class, metaDataMap); } - public getKeyRecord_result() { + public selectKeysCclTimestrOrderPage_result() { } - public getKeyRecord_result( - com.cinchapi.concourse.thrift.TObject success, + public selectKeysCclTimestrOrderPage_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeyRecord_result(getKeyRecord_result other) { + public selectKeysCclTimestrOrderPage_result(selectKeysCclTimestrOrderPage_result other) { if (other.isSetSuccess()) { - this.success = new com.cinchapi.concourse.thrift.TObject(other.success); + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { + + java.lang.Long other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); + + java.lang.Long __this__success_copy_key = other_element_key; + + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value.size()); + for (com.cinchapi.concourse.thrift.TObject other_element_value_element_value_element : other_element_value_element_value) { + __this__success_copy_value_copy_value.add(new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value_element)); + } + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } + + __this__success.put(__this__success_copy_key, __this__success_copy_value); + } + this.success = __this__success; } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); @@ -404469,13 +403625,16 @@ public getKeyRecord_result(getKeyRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getKeyRecord_result deepCopy() { - return new getKeyRecord_result(this); + public selectKeysCclTimestrOrderPage_result deepCopy() { + return new selectKeysCclTimestrOrderPage_result(this); } @Override @@ -404484,14 +403643,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; + } + + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(long key, java.util.Map> val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap>>(); + } + this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TObject getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public getKeyRecord_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success) { + public selectKeysCclTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -404516,7 +403687,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public selectKeysCclTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -404541,7 +403712,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public selectKeysCclTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -404562,11 +403733,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public selectKeysCclTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -404586,6 +403757,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public selectKeysCclTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -404593,7 +403789,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((com.cinchapi.concourse.thrift.TObject)value); + setSuccess((java.util.Map>>)value); } break; @@ -404617,7 +403813,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -404640,6 +403844,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -404660,18 +403867,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecord_result) - return this.equals((getKeyRecord_result)that); + if (that instanceof selectKeysCclTimestrOrderPage_result) + return this.equals((selectKeysCclTimestrOrderPage_result)that); return false; } - public boolean equals(getKeyRecord_result that) { + public boolean equals(selectKeysCclTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -404713,6 +403922,15 @@ public boolean equals(getKeyRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -404736,11 +403954,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getKeyRecord_result other) { + public int compareTo(selectKeysCclTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -404787,6 +404009,16 @@ public int compareTo(getKeyRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -404807,7 +404039,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("selectKeysCclTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -404841,6 +404073,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -404848,9 +404088,6 @@ public java.lang.String 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 { @@ -404869,17 +404106,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecord_resultStandardScheme getScheme() { - return new getKeyRecord_resultStandardScheme(); + public selectKeysCclTimestrOrderPage_resultStandardScheme getScheme() { + return new selectKeysCclTimestrOrderPage_resultStandardScheme(); } } - private static class getKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class selectKeysCclTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, selectKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -404890,9 +404127,43 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_result } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.success = new com.cinchapi.concourse.thrift.TObject(); - struct.success.read(iprot); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map4356 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map4356.size); + long _key4357; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4358; + for (int _i4359 = 0; _i4359 < _map4356.size; ++_i4359) + { + _key4357 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map4360 = iprot.readMapBegin(); + _val4358 = new java.util.LinkedHashMap>(2*_map4360.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4361; + @org.apache.thrift.annotation.Nullable java.util.Set _val4362; + for (int _i4363 = 0; _i4363 < _map4360.size; ++_i4363) + { + _key4361 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set4364 = iprot.readSetBegin(); + _val4362 = new java.util.LinkedHashSet(2*_set4364.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4365; + for (int _i4366 = 0; _i4366 < _set4364.size; ++_i4366) + { + _elem4365 = new com.cinchapi.concourse.thrift.TObject(); + _elem4365.read(iprot); + _val4362.add(_elem4365); + } + iprot.readSetEnd(); + } + _val4358.put(_key4361, _val4362); + } + iprot.readMapEnd(); + } + struct.success.put(_key4357, _val4358); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -404918,13 +404189,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -404937,13 +404217,36 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, selectKeysCclTimestrOrderPage_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.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter4367 : struct.success.entrySet()) + { + oprot.writeI64(_iter4367.getKey()); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter4367.getValue().size())); + for (java.util.Map.Entry> _iter4368 : _iter4367.getValue().entrySet()) + { + oprot.writeString(_iter4368.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter4368.getValue().size())); + for (com.cinchapi.concourse.thrift.TObject _iter4369 : _iter4368.getValue()) + { + _iter4369.write(oprot); + } + oprot.writeSetEnd(); + } + } + oprot.writeMapEnd(); + } + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -404961,23 +404264,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecord_resul struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class selectKeysCclTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecord_resultTupleScheme getScheme() { - return new getKeyRecord_resultTupleScheme(); + public selectKeysCclTimestrOrderPage_resultTupleScheme getScheme() { + return new selectKeysCclTimestrOrderPage_resultTupleScheme(); } } - private static class getKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class selectKeysCclTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -404992,9 +404300,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_result if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - struct.success.write(oprot); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry>> _iter4370 : struct.success.entrySet()) + { + oprot.writeI64(_iter4370.getKey()); + { + oprot.writeI32(_iter4370.getValue().size()); + for (java.util.Map.Entry> _iter4371 : _iter4370.getValue().entrySet()) + { + oprot.writeString(_iter4371.getKey()); + { + oprot.writeI32(_iter4371.getValue().size()); + for (com.cinchapi.concourse.thrift.TObject _iter4372 : _iter4371.getValue()) + { + _iter4372.write(oprot); + } + } + } + } + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -405005,15 +404336,49 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_result if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, selectKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.success = new com.cinchapi.concourse.thrift.TObject(); - struct.success.read(iprot); + { + org.apache.thrift.protocol.TMap _map4373 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map4373.size); + long _key4374; + @org.apache.thrift.annotation.Nullable java.util.Map> _val4375; + for (int _i4376 = 0; _i4376 < _map4373.size; ++_i4376) + { + _key4374 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map4377 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val4375 = new java.util.LinkedHashMap>(2*_map4377.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4378; + @org.apache.thrift.annotation.Nullable java.util.Set _val4379; + for (int _i4380 = 0; _i4380 < _map4377.size; ++_i4380) + { + _key4378 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set4381 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); + _val4379 = new java.util.LinkedHashSet(2*_set4381.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem4382; + for (int _i4383 = 0; _i4383 < _set4381.size; ++_i4383) + { + _elem4382 = new com.cinchapi.concourse.thrift.TObject(); + _elem4382.read(iprot); + _val4379.add(_elem4382); + } + } + _val4375.put(_key4378, _val4379); + } + } + struct.success.put(_key4374, _val4375); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -405027,10 +404392,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_result struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -405039,22 +404409,20 @@ private static S scheme(org.apache. } } - public static class getKeyRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordTime_args"); + public static class getKeyRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecord_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -405063,10 +404431,9 @@ public static class getKeyRecordTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -405086,13 +404453,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORD return RECORD; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -405138,7 +404503,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -405147,8 +404511,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -405156,16 +404518,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecord_args.class, metaDataMap); } - public getKeyRecordTime_args() { + public getKeyRecord_args() { } - public getKeyRecordTime_args( + public getKeyRecord_args( java.lang.String key, long record, - long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -405174,8 +404535,6 @@ public getKeyRecordTime_args( this.key = key; this.record = record; setRecordIsSet(true); - this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -405184,13 +404543,12 @@ public getKeyRecordTime_args( /** * Performs a deep copy on other. */ - public getKeyRecordTime_args(getKeyRecordTime_args other) { + public getKeyRecord_args(getKeyRecord_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -405203,8 +404561,8 @@ public getKeyRecordTime_args(getKeyRecordTime_args other) { } @Override - public getKeyRecordTime_args deepCopy() { - return new getKeyRecordTime_args(this); + public getKeyRecord_args deepCopy() { + return new getKeyRecord_args(this); } @Override @@ -405212,8 +404570,6 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -405224,7 +404580,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -405248,7 +404604,7 @@ public long getRecord() { return this.record; } - public getKeyRecordTime_args setRecord(long record) { + public getKeyRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -405267,35 +404623,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getTimestamp() { - return this.timestamp; - } - - public getKeyRecordTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -405320,7 +404653,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -405345,7 +404678,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -405384,14 +404717,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -405429,9 +404754,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case TIMESTAMP: - return getTimestamp(); - case CREDS: return getCreds(); @@ -405457,8 +404779,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORD: return isSetRecord(); - case TIMESTAMP: - return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -405471,12 +404791,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordTime_args) - return this.equals((getKeyRecordTime_args)that); + if (that instanceof getKeyRecord_args) + return this.equals((getKeyRecord_args)that); return false; } - public boolean equals(getKeyRecordTime_args that) { + public boolean equals(getKeyRecord_args that) { if (that == null) return false; if (this == that) @@ -405500,15 +404820,6 @@ public boolean equals(getKeyRecordTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -405549,8 +404860,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -405567,7 +404876,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordTime_args other) { + public int compareTo(getKeyRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -405594,16 +404903,6 @@ public int compareTo(getKeyRecordTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -405655,7 +404954,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecord_args("); boolean first = true; sb.append("key:"); @@ -405670,10 +404969,6 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -405730,17 +405025,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordTime_argsStandardScheme getScheme() { - return new getKeyRecordTime_argsStandardScheme(); + public getKeyRecord_argsStandardScheme getScheme() { + return new getKeyRecord_argsStandardScheme(); } } - private static class getKeyRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -405766,15 +405061,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -405783,7 +405070,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -405792,7 +405079,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -405812,7 +405099,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -405824,9 +405111,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTime_a oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -405848,17 +405132,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTime_a } - private static class getKeyRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordTime_argsTupleScheme getScheme() { - return new getKeyRecordTime_argsTupleScheme(); + public getKeyRecord_argsTupleScheme getScheme() { + return new getKeyRecord_argsTupleScheme(); } } - private static class getKeyRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -405867,28 +405151,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_ar if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetTimestamp()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -405901,9 +405179,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -405913,20 +405191,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_arg struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -405938,16 +405212,16 @@ private static S scheme(org.apache. } } - public static class getKeyRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordTime_result"); + public static class getKeyRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecord_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -406038,13 +405312,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecord_result.class, metaDataMap); } - public getKeyRecordTime_result() { + public getKeyRecord_result() { } - public getKeyRecordTime_result( + public getKeyRecord_result( com.cinchapi.concourse.thrift.TObject success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -406060,7 +405334,7 @@ public getKeyRecordTime_result( /** * Performs a deep copy on other. */ - public getKeyRecordTime_result(getKeyRecordTime_result other) { + public getKeyRecord_result(getKeyRecord_result other) { if (other.isSetSuccess()) { this.success = new com.cinchapi.concourse.thrift.TObject(other.success); } @@ -406076,8 +405350,8 @@ public getKeyRecordTime_result(getKeyRecordTime_result other) { } @Override - public getKeyRecordTime_result deepCopy() { - return new getKeyRecordTime_result(this); + public getKeyRecord_result deepCopy() { + return new getKeyRecord_result(this); } @Override @@ -406093,7 +405367,7 @@ public com.cinchapi.concourse.thrift.TObject getSuccess() { return this.success; } - public getKeyRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success) { + public getKeyRecord_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success) { this.success = success; return this; } @@ -406118,7 +405392,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -406143,7 +405417,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -406168,7 +405442,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -406268,12 +405542,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordTime_result) - return this.equals((getKeyRecordTime_result)that); + if (that instanceof getKeyRecord_result) + return this.equals((getKeyRecord_result)that); return false; } - public boolean equals(getKeyRecordTime_result that) { + public boolean equals(getKeyRecord_result that) { if (that == null) return false; if (this == that) @@ -406342,7 +405616,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordTime_result other) { + public int compareTo(getKeyRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -406409,7 +405683,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecord_result("); boolean first = true; sb.append("success:"); @@ -406471,17 +405745,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordTime_resultStandardScheme getScheme() { - return new getKeyRecordTime_resultStandardScheme(); + public getKeyRecord_resultStandardScheme getScheme() { + return new getKeyRecord_resultStandardScheme(); } } - private static class getKeyRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -406539,7 +405813,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -406569,17 +405843,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTime_r } - private static class getKeyRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordTime_resultTupleScheme getScheme() { - return new getKeyRecordTime_resultTupleScheme(); + public getKeyRecord_resultTupleScheme getScheme() { + return new getKeyRecord_resultTupleScheme(); } } - private static class getKeyRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -406610,7 +405884,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { @@ -406641,22 +405915,22 @@ private static S scheme(org.apache. } } - public static class getKeyRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordTimestr_args"); + public static class getKeyRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -406740,6 +406014,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -406749,7 +406024,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -406757,16 +406032,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordTime_args.class, metaDataMap); } - public getKeyRecordTimestr_args() { + public getKeyRecordTime_args() { } - public getKeyRecordTimestr_args( + public getKeyRecordTime_args( java.lang.String key, long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -406776,6 +406051,7 @@ public getKeyRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -406784,15 +406060,13 @@ public getKeyRecordTimestr_args( /** * Performs a deep copy on other. */ - public getKeyRecordTimestr_args(getKeyRecordTimestr_args other) { + public getKeyRecordTime_args(getKeyRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -406805,8 +406079,8 @@ public getKeyRecordTimestr_args(getKeyRecordTimestr_args other) { } @Override - public getKeyRecordTimestr_args deepCopy() { - return new getKeyRecordTimestr_args(this); + public getKeyRecordTime_args deepCopy() { + return new getKeyRecordTime_args(this); } @Override @@ -406814,7 +406088,8 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -406825,7 +406100,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -406849,7 +406124,7 @@ public long getRecord() { return this.record; } - public getKeyRecordTimestr_args setRecord(long record) { + public getKeyRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -406868,29 +406143,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getKeyRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -406898,7 +406171,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -406923,7 +406196,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -406948,7 +406221,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -406991,7 +406264,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -407074,12 +406347,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordTimestr_args) - return this.equals((getKeyRecordTimestr_args)that); + if (that instanceof getKeyRecordTime_args) + return this.equals((getKeyRecordTime_args)that); return false; } - public boolean equals(getKeyRecordTimestr_args that) { + public boolean equals(getKeyRecordTime_args that) { if (that == null) return false; if (this == that) @@ -407103,12 +406376,12 @@ public boolean equals(getKeyRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -407152,9 +406425,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -407172,7 +406443,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordTimestr_args other) { + public int compareTo(getKeyRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -407260,7 +406531,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordTime_args("); boolean first = true; sb.append("key:"); @@ -407276,11 +406547,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -407339,17 +406606,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordTimestr_argsStandardScheme getScheme() { - return new getKeyRecordTimestr_argsStandardScheme(); + public getKeyRecordTime_argsStandardScheme getScheme() { + return new getKeyRecordTime_argsStandardScheme(); } } - private static class getKeyRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -407376,8 +406643,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTimestr } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -407421,7 +406688,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTimestr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -407433,11 +406700,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTimest oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -407459,17 +406724,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTimest } - private static class getKeyRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordTimestr_argsTupleScheme getScheme() { - return new getKeyRecordTimestr_argsTupleScheme(); + public getKeyRecordTime_argsTupleScheme getScheme() { + return new getKeyRecordTime_argsTupleScheme(); } } - private static class getKeyRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -407498,7 +406763,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -407512,7 +406777,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -407524,7 +406789,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_ struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -407549,31 +406814,28 @@ private static S scheme(org.apache. } } - public static class getKeyRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordTimestr_result"); + public static class getKeyRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordTime_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -407597,8 +406859,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -407652,35 +406912,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordTime_result.class, metaDataMap); } - public getKeyRecordTimestr_result() { + public getKeyRecordTime_result() { } - public getKeyRecordTimestr_result( + public getKeyRecordTime_result( com.cinchapi.concourse.thrift.TObject success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeyRecordTimestr_result(getKeyRecordTimestr_result other) { + public getKeyRecordTime_result(getKeyRecordTime_result other) { if (other.isSetSuccess()) { this.success = new com.cinchapi.concourse.thrift.TObject(other.success); } @@ -407691,16 +406947,13 @@ public getKeyRecordTimestr_result(getKeyRecordTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getKeyRecordTimestr_result deepCopy() { - return new getKeyRecordTimestr_result(this); + public getKeyRecordTime_result deepCopy() { + return new getKeyRecordTime_result(this); } @Override @@ -407709,7 +406962,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -407717,7 +406969,7 @@ public com.cinchapi.concourse.thrift.TObject getSuccess() { return this.success; } - public getKeyRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success) { + public getKeyRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success) { this.success = success; return this; } @@ -407742,7 +406994,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -407767,7 +407019,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -407788,11 +407040,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -407812,31 +407064,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getKeyRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -407868,15 +407095,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -407899,9 +407118,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -407922,20 +407138,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordTimestr_result) - return this.equals((getKeyRecordTimestr_result)that); + if (that instanceof getKeyRecordTime_result) + return this.equals((getKeyRecordTime_result)that); return false; } - public boolean equals(getKeyRecordTimestr_result that) { + public boolean equals(getKeyRecordTime_result that) { if (that == null) return false; if (this == that) @@ -407977,15 +407191,6 @@ public boolean equals(getKeyRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -408009,15 +407214,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getKeyRecordTimestr_result other) { + public int compareTo(getKeyRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -408064,16 +407265,6 @@ public int compareTo(getKeyRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -408094,7 +407285,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordTime_result("); boolean first = true; sb.append("success:"); @@ -408128,14 +407319,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -408164,17 +407347,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordTimestr_resultStandardScheme getScheme() { - return new getKeyRecordTimestr_resultStandardScheme(); + public getKeyRecordTime_resultStandardScheme getScheme() { + return new getKeyRecordTime_resultStandardScheme(); } } - private static class getKeyRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -408213,22 +407396,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTimestr break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -408241,7 +407415,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTimestr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -408265,28 +407439,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTimest struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeyRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordTimestr_resultTupleScheme getScheme() { - return new getKeyRecordTimestr_resultTupleScheme(); + public getKeyRecordTime_resultTupleScheme getScheme() { + return new getKeyRecordTime_resultTupleScheme(); } } - private static class getKeyRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -408301,10 +407470,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { struct.success.write(oprot); } @@ -408317,15 +407483,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.success = new com.cinchapi.concourse.thrift.TObject(); struct.success.read(iprot); @@ -408342,15 +407505,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_ struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -408359,31 +407517,34 @@ private static S scheme(org.apache. } } - public static class getKeysRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecord_args"); + public static class getKeyRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordTimestr_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEYS((short)1, "keys"), + KEY((short)1, "key"), RECORD((short)2, "record"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + TIMESTAMP((short)3, "timestamp"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -408399,15 +407560,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEYS - return KEYS; + case 1: // KEY + return KEY; case 2: // RECORD return RECORD; - case 3: // CREDS + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -408457,11 +407620,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -408469,23 +407633,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordTimestr_args.class, metaDataMap); } - public getKeysRecord_args() { + public getKeyRecordTimestr_args() { } - public getKeysRecord_args( - java.util.List keys, + public getKeyRecordTimestr_args( + java.lang.String key, long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; + this.key = key; this.record = record; setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -408494,13 +407660,15 @@ public getKeysRecord_args( /** * Performs a deep copy on other. */ - public getKeysRecord_args(getKeysRecord_args other) { + public getKeyRecordTimestr_args(getKeyRecordTimestr_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + if (other.isSetKey()) { + this.key = other.key; } this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -408513,58 +407681,43 @@ public getKeysRecord_args(getKeysRecord_args other) { } @Override - public getKeysRecord_args deepCopy() { - return new getKeysRecord_args(this); + public getKeyRecordTimestr_args deepCopy() { + return new getKeyRecordTimestr_args(this); } @Override public void clear() { - this.keys = null; + this.key = null; setRecordIsSet(false); this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public getKeysRecord_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public getKeyRecordTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; + this.key = null; } } @@ -408572,7 +407725,7 @@ public long getRecord() { return this.record; } - public getKeysRecord_args setRecord(long record) { + public getKeyRecordTimestr_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -408591,12 +407744,37 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public getKeyRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -408621,7 +407799,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -408646,7 +407824,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -408669,11 +407847,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; @@ -408685,6 +407863,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -408716,12 +407902,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); case RECORD: return getRecord(); + case TIMESTAMP: + return getTimestamp(); + case CREDS: return getCreds(); @@ -408743,10 +407932,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); + case KEY: + return isSetKey(); case RECORD: return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -408759,23 +407950,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecord_args) - return this.equals((getKeysRecord_args)that); + if (that instanceof getKeyRecordTimestr_args) + return this.equals((getKeyRecordTimestr_args)that); return false; } - public boolean equals(getKeysRecord_args that) { + public boolean equals(getKeyRecordTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } @@ -408788,6 +407979,15 @@ public boolean equals(getKeysRecord_args that) { return false; } + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -408822,12 +408022,16 @@ public boolean equals(getKeysRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -408844,19 +408048,19 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecord_args other) { + public int compareTo(getKeyRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } @@ -408871,6 +408075,16 @@ public int compareTo(getKeysRecord_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -408922,14 +408136,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordTimestr_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); @@ -408937,6 +408151,14 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -408993,17 +408215,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecord_argsStandardScheme getScheme() { - return new getKeysRecord_argsStandardScheme(); + public getKeyRecordTimestr_argsStandardScheme getScheme() { + return new getKeyRecordTimestr_argsStandardScheme(); } } - private static class getKeysRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -409013,20 +408235,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_args break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list4384 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4384.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4385; - for (int _i4386 = 0; _i4386 < _list4384.size; ++_i4386) - { - _elem4385 = iprot.readString(); - struct.keys.add(_elem4385); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -409039,7 +408251,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -409048,7 +408268,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -409057,7 +408277,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -409077,25 +408297,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4387 : struct.keys) - { - oprot.writeString(_iter4387); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -409117,47 +408335,47 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecord_args } - private static class getKeysRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecord_argsTupleScheme getScheme() { - return new getKeysRecord_argsTupleScheme(); + public getKeyRecordTimestr_argsTupleScheme getScheme() { + return new getKeyRecordTimestr_argsTupleScheme(); } } - private static class getKeysRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4388 : struct.keys) - { - oprot.writeString(_iter4388); - } - } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetKey()) { + oprot.writeString(struct.key); } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -409170,37 +408388,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list4389 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4389.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4390; - for (int _i4391 = 0; _i4391 < _list4389.size; ++_i4391) - { - _elem4390 = iprot.readString(); - struct.keys.add(_elem4390); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -409212,28 +408425,31 @@ private static S scheme(org.apache. } } - public static class getKeysRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecord_result"); + public static class getKeyRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordTimestr_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -409257,6 +408473,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -409304,53 +408522,43 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordTimestr_result.class, metaDataMap); } - public getKeysRecord_result() { + public getKeyRecordTimestr_result() { } - public getKeysRecord_result( - java.util.Map success, + public getKeyRecordTimestr_result( + com.cinchapi.concourse.thrift.TObject success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysRecord_result(getKeysRecord_result other) { + public getKeyRecordTimestr_result(getKeyRecordTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); - for (java.util.Map.Entry other_element : other.success.entrySet()) { - - java.lang.String other_element_key = other_element.getKey(); - com.cinchapi.concourse.thrift.TObject other_element_value = other_element.getValue(); - - java.lang.String __this__success_copy_key = other_element_key; - - com.cinchapi.concourse.thrift.TObject __this__success_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value); - - __this__success.put(__this__success_copy_key, __this__success_copy_value); - } - this.success = __this__success; + this.success = new com.cinchapi.concourse.thrift.TObject(other.success); } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); @@ -409359,13 +408567,16 @@ public getKeysRecord_result(getKeysRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getKeysRecord_result deepCopy() { - return new getKeysRecord_result(this); + public getKeyRecordTimestr_result deepCopy() { + return new getKeyRecordTimestr_result(this); } @Override @@ -409374,25 +408585,15 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - } - - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - public void putToSuccess(java.lang.String key, com.cinchapi.concourse.thrift.TObject val) { - if (this.success == null) { - this.success = new java.util.LinkedHashMap(); - } - this.success.put(key, val); + this.ex4 = null; } @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { + public com.cinchapi.concourse.thrift.TObject getSuccess() { return this.success; } - public getKeysRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject success) { this.success = success; return this; } @@ -409417,7 +408618,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -409442,7 +408643,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -409463,11 +408664,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -409487,6 +408688,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getKeyRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -409494,7 +408720,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map)value); + setSuccess((com.cinchapi.concourse.thrift.TObject)value); } break; @@ -409518,7 +408744,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -409541,6 +408775,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -409561,18 +408798,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecord_result) - return this.equals((getKeysRecord_result)that); + if (that instanceof getKeyRecordTimestr_result) + return this.equals((getKeyRecordTimestr_result)that); return false; } - public boolean equals(getKeysRecord_result that) { + public boolean equals(getKeyRecordTimestr_result that) { if (that == null) return false; if (this == that) @@ -409614,6 +408853,15 @@ public boolean equals(getKeysRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -409637,11 +408885,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getKeysRecord_result other) { + public int compareTo(getKeyRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -409688,6 +408940,16 @@ public int compareTo(getKeysRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -409708,7 +408970,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordTimestr_result("); boolean first = true; sb.append("success:"); @@ -409742,6 +409004,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -409749,6 +409019,9 @@ public java.lang.String 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 { @@ -409767,17 +409040,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecord_resultStandardScheme getScheme() { - return new getKeysRecord_resultStandardScheme(); + public getKeyRecordTimestr_resultStandardScheme getScheme() { + return new getKeyRecordTimestr_resultStandardScheme(); } } - private static class getKeysRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -409788,21 +409061,9 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_resul } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { - { - org.apache.thrift.protocol.TMap _map4392 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4392.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4393; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4394; - for (int _i4395 = 0; _i4395 < _map4392.size; ++_i4395) - { - _key4393 = iprot.readString(); - _val4394 = new com.cinchapi.concourse.thrift.TObject(); - _val4394.read(iprot); - struct.success.put(_key4393, _val4394); - } - iprot.readMapEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.success = new com.cinchapi.concourse.thrift.TObject(); + struct.success.read(iprot); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -409828,13 +409089,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_resul break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -409847,21 +409117,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4396 : struct.success.entrySet()) - { - oprot.writeString(_iter4396.getKey()); - _iter4396.getValue().write(oprot); - } - oprot.writeMapEnd(); - } + struct.success.write(oprot); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -409879,23 +409141,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecord_resu struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecord_resultTupleScheme getScheme() { - return new getKeysRecord_resultTupleScheme(); + public getKeyRecordTimestr_resultTupleScheme getScheme() { + return new getKeyRecordTimestr_resultTupleScheme(); } } - private static class getKeysRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -409910,16 +409177,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_resul if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4397 : struct.success.entrySet()) - { - oprot.writeString(_iter4397.getKey()); - _iter4397.getValue().write(oprot); - } - } + struct.success.write(oprot); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -409930,26 +409193,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_resul if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TMap _map4398 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4398.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4399; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4400; - for (int _i4401 = 0; _i4401 < _map4398.size; ++_i4401) - { - _key4399 = iprot.readString(); - _val4400 = new com.cinchapi.concourse.thrift.TObject(); - _val4400.read(iprot); - struct.success.put(_key4399, _val4400); - } - } + struct.success = new com.cinchapi.concourse.thrift.TObject(); + struct.success.read(iprot); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -409963,10 +409218,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_result struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -409975,22 +409235,20 @@ private static S scheme(org.apache. } } - public static class getKeysRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordTime_args"); + public static class getKeysRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecord_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public long record; // required - public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -409999,10 +409257,9 @@ public static class getKeysRecordTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -410022,13 +409279,11 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // RECORD return RECORD; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -410074,7 +409329,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -410084,8 +409338,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -410093,16 +409345,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecord_args.class, metaDataMap); } - public getKeysRecordTime_args() { + public getKeysRecord_args() { } - public getKeysRecordTime_args( + public getKeysRecord_args( java.util.List keys, long record, - long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -410111,8 +409362,6 @@ public getKeysRecordTime_args( this.keys = keys; this.record = record; setRecordIsSet(true); - this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -410121,14 +409370,13 @@ public getKeysRecordTime_args( /** * Performs a deep copy on other. */ - public getKeysRecordTime_args(getKeysRecordTime_args other) { + public getKeysRecord_args(getKeysRecord_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } this.record = other.record; - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -410141,8 +409389,8 @@ public getKeysRecordTime_args(getKeysRecordTime_args other) { } @Override - public getKeysRecordTime_args deepCopy() { - return new getKeysRecordTime_args(this); + public getKeysRecord_args deepCopy() { + return new getKeysRecord_args(this); } @Override @@ -410150,8 +409398,6 @@ public void clear() { this.keys = null; setRecordIsSet(false); this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -410178,7 +409424,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecord_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -410202,7 +409448,7 @@ public long getRecord() { return this.record; } - public getKeysRecordTime_args setRecord(long record) { + public getKeysRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -410221,35 +409467,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getTimestamp() { - return this.timestamp; - } - - public getKeysRecordTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -410274,7 +409497,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -410299,7 +409522,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -410338,14 +409561,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -410383,9 +409598,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case TIMESTAMP: - return getTimestamp(); - case CREDS: return getCreds(); @@ -410411,8 +409623,6 @@ public boolean isSet(_Fields field) { return isSetKeys(); case RECORD: return isSetRecord(); - case TIMESTAMP: - return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -410425,12 +409635,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordTime_args) - return this.equals((getKeysRecordTime_args)that); + if (that instanceof getKeysRecord_args) + return this.equals((getKeysRecord_args)that); return false; } - public boolean equals(getKeysRecordTime_args that) { + public boolean equals(getKeysRecord_args that) { if (that == null) return false; if (this == that) @@ -410454,15 +409664,6 @@ public boolean equals(getKeysRecordTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -410503,8 +409704,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -410521,7 +409720,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordTime_args other) { + public int compareTo(getKeysRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -410548,16 +409747,6 @@ public int compareTo(getKeysRecordTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -410609,7 +409798,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecord_args("); boolean first = true; sb.append("keys:"); @@ -410624,10 +409813,6 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -410684,17 +409869,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordTime_argsStandardScheme getScheme() { - return new getKeysRecordTime_argsStandardScheme(); + public getKeysRecord_argsStandardScheme getScheme() { + return new getKeysRecord_argsStandardScheme(); } } - private static class getKeysRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -410707,13 +409892,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_a case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4402 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4402.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4403; - for (int _i4404 = 0; _i4404 < _list4402.size; ++_i4404) + org.apache.thrift.protocol.TList _list4384 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4384.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4385; + for (int _i4386 = 0; _i4386 < _list4384.size; ++_i4386) { - _elem4403 = iprot.readString(); - struct.keys.add(_elem4403); + _elem4385 = iprot.readString(); + struct.keys.add(_elem4385); } iprot.readListEnd(); } @@ -410730,15 +409915,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -410747,7 +409924,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -410756,7 +409933,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -410776,7 +409953,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -410784,9 +409961,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_ oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4405 : struct.keys) + for (java.lang.String _iter4387 : struct.keys) { - oprot.writeString(_iter4405); + oprot.writeString(_iter4387); } oprot.writeListEnd(); } @@ -410795,9 +409972,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_ oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -410819,17 +409993,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_ } - private static class getKeysRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordTime_argsTupleScheme getScheme() { - return new getKeysRecordTime_argsTupleScheme(); + public getKeysRecord_argsTupleScheme getScheme() { + return new getKeysRecord_argsTupleScheme(); } } - private static class getKeysRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -410838,34 +410012,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_a if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetTimestamp()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4406 : struct.keys) + for (java.lang.String _iter4388 : struct.keys) { - oprot.writeString(_iter4406); + oprot.writeString(_iter4388); } } } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -410878,18 +410046,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4407 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4407.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4408; - for (int _i4409 = 0; _i4409 < _list4407.size; ++_i4409) + org.apache.thrift.protocol.TList _list4389 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4389.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4390; + for (int _i4391 = 0; _i4391 < _list4389.size; ++_i4391) { - _elem4408 = iprot.readString(); - struct.keys.add(_elem4408); + _elem4390 = iprot.readString(); + struct.keys.add(_elem4390); } } struct.setKeysIsSet(true); @@ -410899,20 +410067,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_ar struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -410924,16 +410088,16 @@ private static S scheme(org.apache. } } - public static class getKeysRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordTime_result"); + public static class getKeysRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecord_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecord_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -411026,13 +410190,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecord_result.class, metaDataMap); } - public getKeysRecordTime_result() { + public getKeysRecord_result() { } - public getKeysRecordTime_result( + public getKeysRecord_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -411048,7 +410212,7 @@ public getKeysRecordTime_result( /** * Performs a deep copy on other. */ - public getKeysRecordTime_result(getKeysRecordTime_result other) { + public getKeysRecord_result(getKeysRecord_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -411076,8 +410240,8 @@ public getKeysRecordTime_result(getKeysRecordTime_result other) { } @Override - public getKeysRecordTime_result deepCopy() { - return new getKeysRecordTime_result(this); + public getKeysRecord_result deepCopy() { + return new getKeysRecord_result(this); } @Override @@ -411104,7 +410268,7 @@ public java.util.Map get return this.success; } - public getKeysRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeysRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -411129,7 +410293,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -411154,7 +410318,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -411179,7 +410343,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -411279,12 +410443,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordTime_result) - return this.equals((getKeysRecordTime_result)that); + if (that instanceof getKeysRecord_result) + return this.equals((getKeysRecord_result)that); return false; } - public boolean equals(getKeysRecordTime_result that) { + public boolean equals(getKeysRecord_result that) { if (that == null) return false; if (this == that) @@ -411353,7 +410517,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordTime_result other) { + public int compareTo(getKeysRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -411420,7 +410584,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecord_result("); boolean first = true; sb.append("success:"); @@ -411479,17 +410643,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordTime_resultStandardScheme getScheme() { - return new getKeysRecordTime_resultStandardScheme(); + public getKeysRecord_resultStandardScheme getScheme() { + return new getKeysRecord_resultStandardScheme(); } } - private static class getKeysRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -411502,16 +410666,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4410 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4410.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4411; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4412; - for (int _i4413 = 0; _i4413 < _map4410.size; ++_i4413) + org.apache.thrift.protocol.TMap _map4392 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4392.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4393; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4394; + for (int _i4395 = 0; _i4395 < _map4392.size; ++_i4395) { - _key4411 = iprot.readString(); - _val4412 = new com.cinchapi.concourse.thrift.TObject(); - _val4412.read(iprot); - struct.success.put(_key4411, _val4412); + _key4393 = iprot.readString(); + _val4394 = new com.cinchapi.concourse.thrift.TObject(); + _val4394.read(iprot); + struct.success.put(_key4393, _val4394); } iprot.readMapEnd(); } @@ -411559,7 +410723,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -411567,10 +410731,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4414 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4396 : struct.success.entrySet()) { - oprot.writeString(_iter4414.getKey()); - _iter4414.getValue().write(oprot); + oprot.writeString(_iter4396.getKey()); + _iter4396.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -411597,17 +410761,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_ } - private static class getKeysRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordTime_resultTupleScheme getScheme() { - return new getKeysRecordTime_resultTupleScheme(); + public getKeysRecord_resultTupleScheme getScheme() { + return new getKeysRecord_resultTupleScheme(); } } - private static class getKeysRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -411626,10 +410790,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4415 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4397 : struct.success.entrySet()) { - oprot.writeString(_iter4415.getKey()); - _iter4415.getValue().write(oprot); + oprot.writeString(_iter4397.getKey()); + _iter4397.getValue().write(oprot); } } } @@ -411645,21 +410809,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4416 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4416.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4417; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4418; - for (int _i4419 = 0; _i4419 < _map4416.size; ++_i4419) + org.apache.thrift.protocol.TMap _map4398 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4398.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4399; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4400; + for (int _i4401 = 0; _i4401 < _map4398.size; ++_i4401) { - _key4417 = iprot.readString(); - _val4418 = new com.cinchapi.concourse.thrift.TObject(); - _val4418.read(iprot); - struct.success.put(_key4417, _val4418); + _key4399 = iprot.readString(); + _val4400 = new com.cinchapi.concourse.thrift.TObject(); + _val4400.read(iprot); + struct.success.put(_key4399, _val4400); } } struct.setSuccessIsSet(true); @@ -411687,22 +410851,22 @@ private static S scheme(org.apache. } } - public static class getKeysRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordTimestr_args"); + public static class getKeysRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -411786,6 +410950,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -411796,7 +410961,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -411804,16 +410969,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordTime_args.class, metaDataMap); } - public getKeysRecordTimestr_args() { + public getKeysRecordTime_args() { } - public getKeysRecordTimestr_args( + public getKeysRecordTime_args( java.util.List keys, long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -411823,6 +410988,7 @@ public getKeysRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -411831,16 +410997,14 @@ public getKeysRecordTimestr_args( /** * Performs a deep copy on other. */ - public getKeysRecordTimestr_args(getKeysRecordTimestr_args other) { + public getKeysRecordTime_args(getKeysRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -411853,8 +411017,8 @@ public getKeysRecordTimestr_args(getKeysRecordTimestr_args other) { } @Override - public getKeysRecordTimestr_args deepCopy() { - return new getKeysRecordTimestr_args(this); + public getKeysRecordTime_args deepCopy() { + return new getKeysRecordTime_args(this); } @Override @@ -411862,7 +411026,8 @@ public void clear() { this.keys = null; setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -411889,7 +411054,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -411913,7 +411078,7 @@ public long getRecord() { return this.record; } - public getKeysRecordTimestr_args setRecord(long record) { + public getKeysRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -411932,29 +411097,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getKeysRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -411962,7 +411125,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -411987,7 +411150,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -412012,7 +411175,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -412055,7 +411218,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -412138,12 +411301,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordTimestr_args) - return this.equals((getKeysRecordTimestr_args)that); + if (that instanceof getKeysRecordTime_args) + return this.equals((getKeysRecordTime_args)that); return false; } - public boolean equals(getKeysRecordTimestr_args that) { + public boolean equals(getKeysRecordTime_args that) { if (that == null) return false; if (this == that) @@ -412167,12 +411330,12 @@ public boolean equals(getKeysRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -412216,9 +411379,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -412236,7 +411397,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordTimestr_args other) { + public int compareTo(getKeysRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -412324,7 +411485,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordTime_args("); boolean first = true; sb.append("keys:"); @@ -412340,11 +411501,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -412403,17 +411560,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordTimestr_argsStandardScheme getScheme() { - return new getKeysRecordTimestr_argsStandardScheme(); + public getKeysRecordTime_argsStandardScheme getScheme() { + return new getKeysRecordTime_argsStandardScheme(); } } - private static class getKeysRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -412426,13 +411583,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimest case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4420 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4420.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4421; - for (int _i4422 = 0; _i4422 < _list4420.size; ++_i4422) + org.apache.thrift.protocol.TList _list4402 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4402.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4403; + for (int _i4404 = 0; _i4404 < _list4402.size; ++_i4404) { - _elem4421 = iprot.readString(); - struct.keys.add(_elem4421); + _elem4403 = iprot.readString(); + struct.keys.add(_elem4403); } iprot.readListEnd(); } @@ -412450,8 +411607,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimest } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -412495,7 +411652,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -412503,9 +411660,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimes oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4423 : struct.keys) + for (java.lang.String _iter4405 : struct.keys) { - oprot.writeString(_iter4423); + oprot.writeString(_iter4405); } oprot.writeListEnd(); } @@ -412514,11 +411671,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimes oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -412540,17 +411695,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimes } - private static class getKeysRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordTimestr_argsTupleScheme getScheme() { - return new getKeysRecordTimestr_argsTupleScheme(); + public getKeysRecordTime_argsTupleScheme getScheme() { + return new getKeysRecordTime_argsTupleScheme(); } } - private static class getKeysRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -412575,9 +411730,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimest if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4424 : struct.keys) + for (java.lang.String _iter4406 : struct.keys) { - oprot.writeString(_iter4424); + oprot.writeString(_iter4406); } } } @@ -412585,7 +411740,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimest oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -412599,18 +411754,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4425 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4425.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4426; - for (int _i4427 = 0; _i4427 < _list4425.size; ++_i4427) + org.apache.thrift.protocol.TList _list4407 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4407.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4408; + for (int _i4409 = 0; _i4409 < _list4407.size; ++_i4409) { - _elem4426 = iprot.readString(); - struct.keys.add(_elem4426); + _elem4408 = iprot.readString(); + struct.keys.add(_elem4408); } } struct.setKeysIsSet(true); @@ -412620,7 +411775,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -412645,31 +411800,28 @@ private static S scheme(org.apache. } } - public static class getKeysRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordTimestr_result"); + public static class getKeysRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -412693,8 +411845,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -412750,35 +411900,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordTime_result.class, metaDataMap); } - public getKeysRecordTimestr_result() { + public getKeysRecordTime_result() { } - public getKeysRecordTimestr_result( + public getKeysRecordTime_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysRecordTimestr_result(getKeysRecordTimestr_result other) { + public getKeysRecordTime_result(getKeysRecordTime_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -412801,16 +411947,13 @@ public getKeysRecordTimestr_result(getKeysRecordTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getKeysRecordTimestr_result deepCopy() { - return new getKeysRecordTimestr_result(this); + public getKeysRecordTime_result deepCopy() { + return new getKeysRecordTime_result(this); } @Override @@ -412819,7 +411962,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -412838,7 +411980,7 @@ public java.util.Map get return this.success; } - public getKeysRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeysRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -412863,7 +412005,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -412888,7 +412030,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -412909,11 +412051,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -412933,31 +412075,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getKeysRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -412989,15 +412106,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -413020,9 +412129,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -413043,20 +412149,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordTimestr_result) - return this.equals((getKeysRecordTimestr_result)that); + if (that instanceof getKeysRecordTime_result) + return this.equals((getKeysRecordTime_result)that); return false; } - public boolean equals(getKeysRecordTimestr_result that) { + public boolean equals(getKeysRecordTime_result that) { if (that == null) return false; if (this == that) @@ -413098,15 +412202,6 @@ public boolean equals(getKeysRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -413130,15 +412225,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getKeysRecordTimestr_result other) { + public int compareTo(getKeysRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -413185,16 +412276,6 @@ public int compareTo(getKeysRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -413215,7 +412296,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordTime_result("); boolean first = true; sb.append("success:"); @@ -413249,14 +412330,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -413282,17 +412355,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordTimestr_resultStandardScheme getScheme() { - return new getKeysRecordTimestr_resultStandardScheme(); + public getKeysRecordTime_resultStandardScheme getScheme() { + return new getKeysRecordTime_resultStandardScheme(); } } - private static class getKeysRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -413305,16 +412378,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4428 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4428.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4429; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4430; - for (int _i4431 = 0; _i4431 < _map4428.size; ++_i4431) + org.apache.thrift.protocol.TMap _map4410 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4410.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4411; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4412; + for (int _i4413 = 0; _i4413 < _map4410.size; ++_i4413) { - _key4429 = iprot.readString(); - _val4430 = new com.cinchapi.concourse.thrift.TObject(); - _val4430.read(iprot); - struct.success.put(_key4429, _val4430); + _key4411 = iprot.readString(); + _val4412 = new com.cinchapi.concourse.thrift.TObject(); + _val4412.read(iprot); + struct.success.put(_key4411, _val4412); } iprot.readMapEnd(); } @@ -413343,22 +412416,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimest break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -413371,7 +412435,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -413379,10 +412443,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4432 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4414 : struct.success.entrySet()) { - oprot.writeString(_iter4432.getKey()); - _iter4432.getValue().write(oprot); + oprot.writeString(_iter4414.getKey()); + _iter4414.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -413403,28 +412467,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimes struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordTimestr_resultTupleScheme getScheme() { - return new getKeysRecordTimestr_resultTupleScheme(); + public getKeysRecordTime_resultTupleScheme getScheme() { + return new getKeysRecordTime_resultTupleScheme(); } } - private static class getKeysRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -413439,17 +412498,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimest if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4433 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4415 : struct.success.entrySet()) { - oprot.writeString(_iter4433.getKey()); - _iter4433.getValue().write(oprot); + oprot.writeString(_iter4415.getKey()); + _iter4415.getValue().write(oprot); } } } @@ -413462,27 +412518,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimest if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4434 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4434.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4435; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4436; - for (int _i4437 = 0; _i4437 < _map4434.size; ++_i4437) + org.apache.thrift.protocol.TMap _map4416 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4416.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4417; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4418; + for (int _i4419 = 0; _i4419 < _map4416.size; ++_i4419) { - _key4435 = iprot.readString(); - _val4436 = new com.cinchapi.concourse.thrift.TObject(); - _val4436.read(iprot); - struct.success.put(_key4435, _val4436); + _key4417 = iprot.readString(); + _val4418 = new com.cinchapi.concourse.thrift.TObject(); + _val4418.read(iprot); + struct.success.put(_key4417, _val4418); } } struct.setSuccessIsSet(true); @@ -413498,15 +412551,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -413515,20 +412563,22 @@ private static S scheme(org.apache. } } - public static class getKeysRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecords_args"); + public static class getKeysRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -413536,10 +412586,11 @@ public static class getKeysRecords_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -413557,13 +412608,15 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // RECORDS - return RECORDS; - case 3: // CREDS + case 2: // RECORD + return RECORD; + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -413608,15 +412661,18 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -413624,22 +412680,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordTimestr_args.class, metaDataMap); } - public getKeysRecords_args() { + public getKeysRecordTimestr_args() { } - public getKeysRecords_args( + public getKeysRecordTimestr_args( java.util.List keys, - java.util.List records, + long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.records = records; + this.record = record; + setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -413648,14 +412707,15 @@ public getKeysRecords_args( /** * Performs a deep copy on other. */ - public getKeysRecords_args(getKeysRecords_args other) { + public getKeysRecordTimestr_args(getKeysRecordTimestr_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -413669,14 +412729,16 @@ public getKeysRecords_args(getKeysRecords_args other) { } @Override - public getKeysRecords_args deepCopy() { - return new getKeysRecords_args(this); + public getKeysRecordTimestr_args deepCopy() { + return new getKeysRecordTimestr_args(this); } @Override public void clear() { this.keys = null; - this.records = null; + setRecordIsSet(false); + this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; @@ -413703,7 +412765,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecords_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -413723,44 +412785,51 @@ public void setKeysIsSet(boolean value) { } } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + public long getRecord() { + return this.record; } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + public getKeysRecordTimestr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public java.lang.String getTimestamp() { + return this.timestamp; } - public getKeysRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public getKeysRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetRecords() { - this.records = null; + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setRecordsIsSet(boolean value) { + public void setTimestampIsSet(boolean value) { if (!value) { - this.records = null; + this.timestamp = null; } } @@ -413769,7 +412838,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -413794,7 +412863,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -413819,7 +412888,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -413850,11 +412919,19 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); } break; @@ -413892,8 +412969,11 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); + + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -413918,8 +412998,10 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case RECORDS: - return isSetRecords(); + case RECORD: + return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -413932,12 +413014,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecords_args) - return this.equals((getKeysRecords_args)that); + if (that instanceof getKeysRecordTimestr_args) + return this.equals((getKeysRecordTimestr_args)that); return false; } - public boolean equals(getKeysRecords_args that) { + public boolean equals(getKeysRecordTimestr_args that) { if (that == null) return false; if (this == that) @@ -413952,12 +413034,21 @@ public boolean equals(getKeysRecords_args that) { return false; } - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -413999,9 +413090,11 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -414019,7 +413112,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecords_args other) { + public int compareTo(getKeysRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -414036,12 +413129,22 @@ public int compareTo(getKeysRecords_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -414097,7 +413200,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordTimestr_args("); boolean first = true; sb.append("keys:"); @@ -414108,11 +413211,15 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.timestamp); } first = false; if (!first) sb.append(", "); @@ -414164,23 +413271,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeysRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecords_argsStandardScheme getScheme() { - return new getKeysRecords_argsStandardScheme(); + public getKeysRecordTimestr_argsStandardScheme getScheme() { + return new getKeysRecordTimestr_argsStandardScheme(); } } - private static class getKeysRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -414193,13 +413302,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_args case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4438 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4438.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4439; - for (int _i4440 = 0; _i4440 < _list4438.size; ++_i4440) + org.apache.thrift.protocol.TList _list4420 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4420.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4421; + for (int _i4422 = 0; _i4422 < _list4420.size; ++_i4422) { - _elem4439 = iprot.readString(); - struct.keys.add(_elem4439); + _elem4421 = iprot.readString(); + struct.keys.add(_elem4421); } iprot.readListEnd(); } @@ -414208,25 +413317,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list4441 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4441.size); - long _elem4442; - for (int _i4443 = 0; _i4443 < _list4441.size; ++_i4443) - { - _elem4442 = iprot.readI64(); - struct.records.add(_elem4442); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 2: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -414235,7 +413342,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -414244,7 +413351,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -414264,7 +413371,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -414272,24 +413379,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecords_arg oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4444 : struct.keys) + for (java.lang.String _iter4423 : struct.keys) { - oprot.writeString(_iter4444); + oprot.writeString(_iter4423); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4445 : struct.records) - { - oprot.writeI64(_iter4445); - } - oprot.writeListEnd(); - } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -414313,52 +413416,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecords_arg } - private static class getKeysRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecords_argsTupleScheme getScheme() { - return new getKeysRecords_argsTupleScheme(); + public getKeysRecordTimestr_argsTupleScheme getScheme() { + return new getKeysRecordTimestr_argsTupleScheme(); } } - private static class getKeysRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4446 : struct.keys) + for (java.lang.String _iter4424 : struct.keys) { - oprot.writeString(_iter4446); + oprot.writeString(_iter4424); } } } - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter4447 : struct.records) - { - oprot.writeI64(_iter4447); - } - } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -414372,46 +413475,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4448 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4448.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4449; - for (int _i4450 = 0; _i4450 < _list4448.size; ++_i4450) + org.apache.thrift.protocol.TList _list4425 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4425.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4426; + for (int _i4427 = 0; _i4427 < _list4425.size; ++_i4427) { - _elem4449 = iprot.readString(); - struct.keys.add(_elem4449); + _elem4426 = iprot.readString(); + struct.keys.add(_elem4426); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - { - org.apache.thrift.protocol.TList _list4451 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4451.size); - long _elem4452; - for (int _i4453 = 0; _i4453 < _list4451.size; ++_i4453) - { - _elem4452 = iprot.readI64(); - struct.records.add(_elem4452); - } - } - struct.setRecordsIsSet(true); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -414423,28 +413521,31 @@ private static S scheme(org.apache. } } - public static class getKeysRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecords_result"); + public static class getKeysRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -414468,6 +413569,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -414516,61 +413619,52 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordTimestr_result.class, metaDataMap); } - public getKeysRecords_result() { + public getKeysRecordTimestr_result() { } - public getKeysRecords_result( - java.util.Map> success, + public getKeysRecordTimestr_result( + java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysRecords_result(getKeysRecords_result other) { + public getKeysRecordTimestr_result(getKeysRecordTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.Map other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.Map __this__success_copy_value = new java.util.LinkedHashMap(other_element_value.size()); - for (java.util.Map.Entry other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - com.cinchapi.concourse.thrift.TObject other_element_value_element_value = other_element_value_element.getValue(); + java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); + for (java.util.Map.Entry other_element : other.success.entrySet()) { - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + java.lang.String other_element_key = other_element.getKey(); + com.cinchapi.concourse.thrift.TObject other_element_value = other_element.getValue(); - com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value); + java.lang.String __this__success_copy_key = other_element_key; - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } + com.cinchapi.concourse.thrift.TObject __this__success_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value); __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -414583,13 +413677,16 @@ public getKeysRecords_result(getKeysRecords_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getKeysRecords_result deepCopy() { - return new getKeysRecords_result(this); + public getKeysRecordTimestr_result deepCopy() { + return new getKeysRecordTimestr_result(this); } @Override @@ -414598,25 +413695,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map val) { + public void putToSuccess(java.lang.String key, com.cinchapi.concourse.thrift.TObject val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map getSuccess() { return this.success; } - public getKeysRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public getKeysRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -414641,7 +413739,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -414666,7 +413764,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -414687,11 +413785,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -414711,6 +413809,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getKeysRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -414718,7 +413841,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map)value); } break; @@ -414742,7 +413865,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -414765,6 +413896,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -414785,18 +413919,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecords_result) - return this.equals((getKeysRecords_result)that); + if (that instanceof getKeysRecordTimestr_result) + return this.equals((getKeysRecordTimestr_result)that); return false; } - public boolean equals(getKeysRecords_result that) { + public boolean equals(getKeysRecordTimestr_result that) { if (that == null) return false; if (this == that) @@ -414838,6 +413974,15 @@ public boolean equals(getKeysRecords_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -414861,11 +414006,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getKeysRecords_result other) { + public int compareTo(getKeysRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -414912,6 +414061,16 @@ public int compareTo(getKeysRecords_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -414932,7 +414091,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordTimestr_result("); boolean first = true; sb.append("success:"); @@ -414966,6 +414125,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -414991,17 +414158,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecords_resultStandardScheme getScheme() { - return new getKeysRecords_resultStandardScheme(); + public getKeysRecordTimestr_resultStandardScheme getScheme() { + return new getKeysRecordTimestr_resultStandardScheme(); } } - private static class getKeysRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -415014,28 +414181,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4454 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4454.size); - long _key4455; - @org.apache.thrift.annotation.Nullable java.util.Map _val4456; - for (int _i4457 = 0; _i4457 < _map4454.size; ++_i4457) + org.apache.thrift.protocol.TMap _map4428 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4428.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4429; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4430; + for (int _i4431 = 0; _i4431 < _map4428.size; ++_i4431) { - _key4455 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map4458 = iprot.readMapBegin(); - _val4456 = new java.util.LinkedHashMap(2*_map4458.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4459; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4460; - for (int _i4461 = 0; _i4461 < _map4458.size; ++_i4461) - { - _key4459 = iprot.readString(); - _val4460 = new com.cinchapi.concourse.thrift.TObject(); - _val4460.read(iprot); - _val4456.put(_key4459, _val4460); - } - iprot.readMapEnd(); - } - struct.success.put(_key4455, _val4456); + _key4429 = iprot.readString(); + _val4430 = new com.cinchapi.concourse.thrift.TObject(); + _val4430.read(iprot); + struct.success.put(_key4429, _val4430); } iprot.readMapEnd(); } @@ -415064,13 +414219,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_resu break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -415083,26 +414247,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4462 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); + for (java.util.Map.Entry _iter4432 : struct.success.entrySet()) { - oprot.writeI64(_iter4462.getKey()); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4462.getValue().size())); - for (java.util.Map.Entry _iter4463 : _iter4462.getValue().entrySet()) - { - oprot.writeString(_iter4463.getKey()); - _iter4463.getValue().write(oprot); - } - oprot.writeMapEnd(); - } + oprot.writeString(_iter4432.getKey()); + _iter4432.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -415123,23 +414279,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecords_res struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecords_resultTupleScheme getScheme() { - return new getKeysRecords_resultTupleScheme(); + public getKeysRecordTimestr_resultTupleScheme getScheme() { + return new getKeysRecordTimestr_resultTupleScheme(); } } - private static class getKeysRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -415154,21 +414315,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_resu if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4464 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4433 : struct.success.entrySet()) { - oprot.writeI64(_iter4464.getKey()); - { - oprot.writeI32(_iter4464.getValue().size()); - for (java.util.Map.Entry _iter4465 : _iter4464.getValue().entrySet()) - { - oprot.writeString(_iter4465.getKey()); - _iter4465.getValue().write(oprot); - } - } + oprot.writeString(_iter4433.getKey()); + _iter4433.getValue().write(oprot); } } } @@ -415181,35 +414338,27 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_resu if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4466 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4466.size); - long _key4467; - @org.apache.thrift.annotation.Nullable java.util.Map _val4468; - for (int _i4469 = 0; _i4469 < _map4466.size; ++_i4469) + org.apache.thrift.protocol.TMap _map4434 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4434.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4435; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4436; + for (int _i4437 = 0; _i4437 < _map4434.size; ++_i4437) { - _key4467 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map4470 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4468 = new java.util.LinkedHashMap(2*_map4470.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4471; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4472; - for (int _i4473 = 0; _i4473 < _map4470.size; ++_i4473) - { - _key4471 = iprot.readString(); - _val4472 = new com.cinchapi.concourse.thrift.TObject(); - _val4472.read(iprot); - _val4468.put(_key4471, _val4472); - } - } - struct.success.put(_key4467, _val4468); + _key4435 = iprot.readString(); + _val4436 = new com.cinchapi.concourse.thrift.TObject(); + _val4436.read(iprot); + struct.success.put(_key4435, _val4436); } } struct.setSuccessIsSet(true); @@ -415225,10 +414374,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_resul struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -415237,22 +414391,20 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsPage_args"); + public static class getKeysRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecords_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -415261,10 +414413,9 @@ public static class getKeysRecordsPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -415284,13 +414435,11 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // RECORDS return RECORDS; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -415344,8 +414493,6 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -415353,16 +414500,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecords_args.class, metaDataMap); } - public getKeysRecordsPage_args() { + public getKeysRecords_args() { } - public getKeysRecordsPage_args( + public getKeysRecords_args( java.util.List keys, java.util.List records, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -415370,7 +414516,6 @@ public getKeysRecordsPage_args( this(); this.keys = keys; this.records = records; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -415379,7 +414524,7 @@ public getKeysRecordsPage_args( /** * Performs a deep copy on other. */ - public getKeysRecordsPage_args(getKeysRecordsPage_args other) { + public getKeysRecords_args(getKeysRecords_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -415388,9 +414533,6 @@ public getKeysRecordsPage_args(getKeysRecordsPage_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -415403,15 +414545,14 @@ public getKeysRecordsPage_args(getKeysRecordsPage_args other) { } @Override - public getKeysRecordsPage_args deepCopy() { - return new getKeysRecordsPage_args(this); + public getKeysRecords_args deepCopy() { + return new getKeysRecords_args(this); } @Override public void clear() { this.keys = null; this.records = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -415438,7 +414579,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecords_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -415479,7 +414620,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -415499,37 +414640,12 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -415554,7 +414670,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -415579,7 +414695,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -415618,14 +414734,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -415663,9 +414771,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -415691,8 +414796,6 @@ public boolean isSet(_Fields field) { return isSetKeys(); case RECORDS: return isSetRecords(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -415705,12 +414808,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsPage_args) - return this.equals((getKeysRecordsPage_args)that); + if (that instanceof getKeysRecords_args) + return this.equals((getKeysRecords_args)that); return false; } - public boolean equals(getKeysRecordsPage_args that) { + public boolean equals(getKeysRecords_args that) { if (that == null) return false; if (this == that) @@ -415734,15 +414837,6 @@ public boolean equals(getKeysRecordsPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -415785,10 +414879,6 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -415805,7 +414895,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsPage_args other) { + public int compareTo(getKeysRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -415832,16 +414922,6 @@ public int compareTo(getKeysRecordsPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -415893,7 +414973,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecords_args("); boolean first = true; sb.append("keys:"); @@ -415912,14 +414992,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -415950,9 +415022,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -415977,17 +415046,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsPage_argsStandardScheme getScheme() { - return new getKeysRecordsPage_argsStandardScheme(); + public getKeysRecords_argsStandardScheme getScheme() { + return new getKeysRecords_argsStandardScheme(); } } - private static class getKeysRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -416000,13 +415069,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_ case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4474 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4474.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4475; - for (int _i4476 = 0; _i4476 < _list4474.size; ++_i4476) + org.apache.thrift.protocol.TList _list4438 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4438.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4439; + for (int _i4440 = 0; _i4440 < _list4438.size; ++_i4440) { - _elem4475 = iprot.readString(); - struct.keys.add(_elem4475); + _elem4439 = iprot.readString(); + struct.keys.add(_elem4439); } iprot.readListEnd(); } @@ -416018,13 +415087,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_ case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4477 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4477.size); - long _elem4478; - for (int _i4479 = 0; _i4479 < _list4477.size; ++_i4479) + org.apache.thrift.protocol.TList _list4441 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4441.size); + long _elem4442; + for (int _i4443 = 0; _i4443 < _list4441.size; ++_i4443) { - _elem4478 = iprot.readI64(); - struct.records.add(_elem4478); + _elem4442 = iprot.readI64(); + struct.records.add(_elem4442); } iprot.readListEnd(); } @@ -416033,16 +415102,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -416051,7 +415111,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -416060,7 +415120,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -416080,7 +415140,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -416088,9 +415148,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4480 : struct.keys) + for (java.lang.String _iter4444 : struct.keys) { - oprot.writeString(_iter4480); + oprot.writeString(_iter4444); } oprot.writeListEnd(); } @@ -416100,19 +415160,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4481 : struct.records) + for (long _iter4445 : struct.records) { - oprot.writeI64(_iter4481); + oprot.writeI64(_iter4445); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -416134,17 +415189,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage } - private static class getKeysRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsPage_argsTupleScheme getScheme() { - return new getKeysRecordsPage_argsTupleScheme(); + public getKeysRecords_argsTupleScheme getScheme() { + return new getKeysRecords_argsTupleScheme(); } } - private static class getKeysRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -416153,40 +415208,34 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_ if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4482 : struct.keys) + for (java.lang.String _iter4446 : struct.keys) { - oprot.writeString(_iter4482); + oprot.writeString(_iter4446); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4483 : struct.records) + for (long _iter4447 : struct.records) { - oprot.writeI64(_iter4483); + oprot.writeI64(_iter4447); } } } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -416199,51 +415248,46 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4484 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4484.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4485; - for (int _i4486 = 0; _i4486 < _list4484.size; ++_i4486) + org.apache.thrift.protocol.TList _list4448 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4448.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4449; + for (int _i4450 = 0; _i4450 < _list4448.size; ++_i4450) { - _elem4485 = iprot.readString(); - struct.keys.add(_elem4485); + _elem4449 = iprot.readString(); + struct.keys.add(_elem4449); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4487 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4487.size); - long _elem4488; - for (int _i4489 = 0; _i4489 < _list4487.size; ++_i4489) + org.apache.thrift.protocol.TList _list4451 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4451.size); + long _elem4452; + for (int _i4453 = 0; _i4453 < _list4451.size; ++_i4453) { - _elem4488 = iprot.readI64(); - struct.records.add(_elem4488); + _elem4452 = iprot.readI64(); + struct.records.add(_elem4452); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -416255,16 +415299,16 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsPage_result"); + public static class getKeysRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecords_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -416359,13 +415403,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecords_result.class, metaDataMap); } - public getKeysRecordsPage_result() { + public getKeysRecords_result() { } - public getKeysRecordsPage_result( + public getKeysRecords_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -416381,7 +415425,7 @@ public getKeysRecordsPage_result( /** * Performs a deep copy on other. */ - public getKeysRecordsPage_result(getKeysRecordsPage_result other) { + public getKeysRecords_result(getKeysRecords_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -416420,8 +415464,8 @@ public getKeysRecordsPage_result(getKeysRecordsPage_result other) { } @Override - public getKeysRecordsPage_result deepCopy() { - return new getKeysRecordsPage_result(this); + public getKeysRecords_result deepCopy() { + return new getKeysRecords_result(this); } @Override @@ -416448,7 +415492,7 @@ public java.util.Map> success) { + public getKeysRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -416473,7 +415517,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -416498,7 +415542,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -416523,7 +415567,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -416623,12 +415667,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsPage_result) - return this.equals((getKeysRecordsPage_result)that); + if (that instanceof getKeysRecords_result) + return this.equals((getKeysRecords_result)that); return false; } - public boolean equals(getKeysRecordsPage_result that) { + public boolean equals(getKeysRecords_result that) { if (that == null) return false; if (this == that) @@ -416697,7 +415741,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsPage_result other) { + public int compareTo(getKeysRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -416764,7 +415808,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecords_result("); boolean first = true; sb.append("success:"); @@ -416823,17 +415867,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsPage_resultStandardScheme getScheme() { - return new getKeysRecordsPage_resultStandardScheme(); + public getKeysRecords_resultStandardScheme getScheme() { + return new getKeysRecords_resultStandardScheme(); } } - private static class getKeysRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -416846,28 +415890,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4490 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4490.size); - long _key4491; - @org.apache.thrift.annotation.Nullable java.util.Map _val4492; - for (int _i4493 = 0; _i4493 < _map4490.size; ++_i4493) + org.apache.thrift.protocol.TMap _map4454 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4454.size); + long _key4455; + @org.apache.thrift.annotation.Nullable java.util.Map _val4456; + for (int _i4457 = 0; _i4457 < _map4454.size; ++_i4457) { - _key4491 = iprot.readI64(); + _key4455 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4494 = iprot.readMapBegin(); - _val4492 = new java.util.LinkedHashMap(2*_map4494.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4495; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4496; - for (int _i4497 = 0; _i4497 < _map4494.size; ++_i4497) + org.apache.thrift.protocol.TMap _map4458 = iprot.readMapBegin(); + _val4456 = new java.util.LinkedHashMap(2*_map4458.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4459; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4460; + for (int _i4461 = 0; _i4461 < _map4458.size; ++_i4461) { - _key4495 = iprot.readString(); - _val4496 = new com.cinchapi.concourse.thrift.TObject(); - _val4496.read(iprot); - _val4492.put(_key4495, _val4496); + _key4459 = iprot.readString(); + _val4460 = new com.cinchapi.concourse.thrift.TObject(); + _val4460.read(iprot); + _val4456.put(_key4459, _val4460); } iprot.readMapEnd(); } - struct.success.put(_key4491, _val4492); + struct.success.put(_key4455, _val4456); } iprot.readMapEnd(); } @@ -416915,7 +415959,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -416923,15 +415967,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4498 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4462 : struct.success.entrySet()) { - oprot.writeI64(_iter4498.getKey()); + oprot.writeI64(_iter4462.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4498.getValue().size())); - for (java.util.Map.Entry _iter4499 : _iter4498.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4462.getValue().size())); + for (java.util.Map.Entry _iter4463 : _iter4462.getValue().entrySet()) { - oprot.writeString(_iter4499.getKey()); - _iter4499.getValue().write(oprot); + oprot.writeString(_iter4463.getKey()); + _iter4463.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -416961,17 +416005,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage } - private static class getKeysRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsPage_resultTupleScheme getScheme() { - return new getKeysRecordsPage_resultTupleScheme(); + public getKeysRecords_resultTupleScheme getScheme() { + return new getKeysRecords_resultTupleScheme(); } } - private static class getKeysRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -416990,15 +416034,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4500 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4464 : struct.success.entrySet()) { - oprot.writeI64(_iter4500.getKey()); + oprot.writeI64(_iter4464.getKey()); { - oprot.writeI32(_iter4500.getValue().size()); - for (java.util.Map.Entry _iter4501 : _iter4500.getValue().entrySet()) + oprot.writeI32(_iter4464.getValue().size()); + for (java.util.Map.Entry _iter4465 : _iter4464.getValue().entrySet()) { - oprot.writeString(_iter4501.getKey()); - _iter4501.getValue().write(oprot); + oprot.writeString(_iter4465.getKey()); + _iter4465.getValue().write(oprot); } } } @@ -417016,32 +416060,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4502 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4502.size); - long _key4503; - @org.apache.thrift.annotation.Nullable java.util.Map _val4504; - for (int _i4505 = 0; _i4505 < _map4502.size; ++_i4505) + org.apache.thrift.protocol.TMap _map4466 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4466.size); + long _key4467; + @org.apache.thrift.annotation.Nullable java.util.Map _val4468; + for (int _i4469 = 0; _i4469 < _map4466.size; ++_i4469) { - _key4503 = iprot.readI64(); + _key4467 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4506 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4504 = new java.util.LinkedHashMap(2*_map4506.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4507; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4508; - for (int _i4509 = 0; _i4509 < _map4506.size; ++_i4509) + org.apache.thrift.protocol.TMap _map4470 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4468 = new java.util.LinkedHashMap(2*_map4470.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4471; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4472; + for (int _i4473 = 0; _i4473 < _map4470.size; ++_i4473) { - _key4507 = iprot.readString(); - _val4508 = new com.cinchapi.concourse.thrift.TObject(); - _val4508.read(iprot); - _val4504.put(_key4507, _val4508); + _key4471 = iprot.readString(); + _val4472 = new com.cinchapi.concourse.thrift.TObject(); + _val4472.read(iprot); + _val4468.put(_key4471, _val4472); } } - struct.success.put(_key4503, _val4504); + struct.success.put(_key4467, _val4468); } } struct.setSuccessIsSet(true); @@ -417069,22 +416113,22 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsOrder_args"); + public static class getKeysRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -417093,7 +416137,7 @@ public static class getKeysRecordsOrder_args implements org.apache.thrift.TBase< public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -417116,8 +416160,8 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // RECORDS return RECORDS; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -417176,8 +416220,8 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -417185,16 +416229,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsPage_args.class, metaDataMap); } - public getKeysRecordsOrder_args() { + public getKeysRecordsPage_args() { } - public getKeysRecordsOrder_args( + public getKeysRecordsPage_args( java.util.List keys, java.util.List records, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -417202,7 +416246,7 @@ public getKeysRecordsOrder_args( this(); this.keys = keys; this.records = records; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -417211,7 +416255,7 @@ public getKeysRecordsOrder_args( /** * Performs a deep copy on other. */ - public getKeysRecordsOrder_args(getKeysRecordsOrder_args other) { + public getKeysRecordsPage_args(getKeysRecordsPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -417220,8 +416264,8 @@ public getKeysRecordsOrder_args(getKeysRecordsOrder_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -417235,15 +416279,15 @@ public getKeysRecordsOrder_args(getKeysRecordsOrder_args other) { } @Override - public getKeysRecordsOrder_args deepCopy() { - return new getKeysRecordsOrder_args(this); + public getKeysRecordsPage_args deepCopy() { + return new getKeysRecordsPage_args(this); } @Override public void clear() { this.keys = null; this.records = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -417270,7 +416314,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -417311,7 +416355,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -417332,27 +416376,27 @@ public void setRecordsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -417361,7 +416405,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -417386,7 +416430,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -417411,7 +416455,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -417450,11 +416494,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -417495,8 +416539,8 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -417523,8 +416567,8 @@ public boolean isSet(_Fields field) { return isSetKeys(); case RECORDS: return isSetRecords(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -417537,12 +416581,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsOrder_args) - return this.equals((getKeysRecordsOrder_args)that); + if (that instanceof getKeysRecordsPage_args) + return this.equals((getKeysRecordsPage_args)that); return false; } - public boolean equals(getKeysRecordsOrder_args that) { + public boolean equals(getKeysRecordsPage_args that) { if (that == null) return false; if (this == that) @@ -417566,12 +416610,12 @@ public boolean equals(getKeysRecordsOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -417617,9 +416661,9 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -417637,7 +416681,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsOrder_args other) { + public int compareTo(getKeysRecordsPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -417664,12 +416708,12 @@ public int compareTo(getKeysRecordsOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -417725,7 +416769,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsPage_args("); boolean first = true; sb.append("keys:"); @@ -417744,11 +416788,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -417782,8 +416826,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -417809,17 +416853,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsOrder_argsStandardScheme getScheme() { - return new getKeysRecordsOrder_argsStandardScheme(); + public getKeysRecordsPage_argsStandardScheme getScheme() { + return new getKeysRecordsPage_argsStandardScheme(); } } - private static class getKeysRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -417832,13 +416876,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4510 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4510.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4511; - for (int _i4512 = 0; _i4512 < _list4510.size; ++_i4512) + org.apache.thrift.protocol.TList _list4474 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4474.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4475; + for (int _i4476 = 0; _i4476 < _list4474.size; ++_i4476) { - _elem4511 = iprot.readString(); - struct.keys.add(_elem4511); + _elem4475 = iprot.readString(); + struct.keys.add(_elem4475); } iprot.readListEnd(); } @@ -417850,13 +416894,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4513 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4513.size); - long _elem4514; - for (int _i4515 = 0; _i4515 < _list4513.size; ++_i4515) + org.apache.thrift.protocol.TList _list4477 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4477.size); + long _elem4478; + for (int _i4479 = 0; _i4479 < _list4477.size; ++_i4479) { - _elem4514 = iprot.readI64(); - struct.records.add(_elem4514); + _elem4478 = iprot.readI64(); + struct.records.add(_elem4478); } iprot.readListEnd(); } @@ -417865,11 +416909,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -417912,7 +416956,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -417920,9 +416964,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4516 : struct.keys) + for (java.lang.String _iter4480 : struct.keys) { - oprot.writeString(_iter4516); + oprot.writeString(_iter4480); } oprot.writeListEnd(); } @@ -417932,17 +416976,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4517 : struct.records) + for (long _iter4481 : struct.records) { - oprot.writeI64(_iter4517); + oprot.writeI64(_iter4481); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -417966,17 +417010,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde } - private static class getKeysRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsOrder_argsTupleScheme getScheme() { - return new getKeysRecordsOrder_argsTupleScheme(); + public getKeysRecordsPage_argsTupleScheme getScheme() { + return new getKeysRecordsPage_argsTupleScheme(); } } - private static class getKeysRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -417985,7 +417029,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -418001,23 +417045,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4518 : struct.keys) + for (java.lang.String _iter4482 : struct.keys) { - oprot.writeString(_iter4518); + oprot.writeString(_iter4482); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4519 : struct.records) + for (long _iter4483 : struct.records) { - oprot.writeI64(_iter4519); + oprot.writeI64(_iter4483); } } } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -418031,39 +417075,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4520 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4520.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4521; - for (int _i4522 = 0; _i4522 < _list4520.size; ++_i4522) + org.apache.thrift.protocol.TList _list4484 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4484.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4485; + for (int _i4486 = 0; _i4486 < _list4484.size; ++_i4486) { - _elem4521 = iprot.readString(); - struct.keys.add(_elem4521); + _elem4485 = iprot.readString(); + struct.keys.add(_elem4485); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4523 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4523.size); - long _elem4524; - for (int _i4525 = 0; _i4525 < _list4523.size; ++_i4525) + org.apache.thrift.protocol.TList _list4487 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4487.size); + long _elem4488; + for (int _i4489 = 0; _i4489 < _list4487.size; ++_i4489) { - _elem4524 = iprot.readI64(); - struct.records.add(_elem4524); + _elem4488 = iprot.readI64(); + struct.records.add(_elem4488); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -418087,16 +417131,16 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsOrder_result"); + public static class getKeysRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -418191,13 +417235,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsPage_result.class, metaDataMap); } - public getKeysRecordsOrder_result() { + public getKeysRecordsPage_result() { } - public getKeysRecordsOrder_result( + public getKeysRecordsPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -418213,7 +417257,7 @@ public getKeysRecordsOrder_result( /** * Performs a deep copy on other. */ - public getKeysRecordsOrder_result(getKeysRecordsOrder_result other) { + public getKeysRecordsPage_result(getKeysRecordsPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -418252,8 +417296,8 @@ public getKeysRecordsOrder_result(getKeysRecordsOrder_result other) { } @Override - public getKeysRecordsOrder_result deepCopy() { - return new getKeysRecordsOrder_result(this); + public getKeysRecordsPage_result deepCopy() { + return new getKeysRecordsPage_result(this); } @Override @@ -418280,7 +417324,7 @@ public java.util.Map> success) { + public getKeysRecordsPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -418305,7 +417349,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -418330,7 +417374,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -418355,7 +417399,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -418455,12 +417499,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsOrder_result) - return this.equals((getKeysRecordsOrder_result)that); + if (that instanceof getKeysRecordsPage_result) + return this.equals((getKeysRecordsPage_result)that); return false; } - public boolean equals(getKeysRecordsOrder_result that) { + public boolean equals(getKeysRecordsPage_result that) { if (that == null) return false; if (this == that) @@ -418529,7 +417573,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsOrder_result other) { + public int compareTo(getKeysRecordsPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -418596,7 +417640,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsPage_result("); boolean first = true; sb.append("success:"); @@ -418655,17 +417699,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsOrder_resultStandardScheme getScheme() { - return new getKeysRecordsOrder_resultStandardScheme(); + public getKeysRecordsPage_resultStandardScheme getScheme() { + return new getKeysRecordsPage_resultStandardScheme(); } } - private static class getKeysRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -418678,28 +417722,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4526 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4526.size); - long _key4527; - @org.apache.thrift.annotation.Nullable java.util.Map _val4528; - for (int _i4529 = 0; _i4529 < _map4526.size; ++_i4529) + org.apache.thrift.protocol.TMap _map4490 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4490.size); + long _key4491; + @org.apache.thrift.annotation.Nullable java.util.Map _val4492; + for (int _i4493 = 0; _i4493 < _map4490.size; ++_i4493) { - _key4527 = iprot.readI64(); + _key4491 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4530 = iprot.readMapBegin(); - _val4528 = new java.util.LinkedHashMap(2*_map4530.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4531; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4532; - for (int _i4533 = 0; _i4533 < _map4530.size; ++_i4533) + org.apache.thrift.protocol.TMap _map4494 = iprot.readMapBegin(); + _val4492 = new java.util.LinkedHashMap(2*_map4494.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4495; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4496; + for (int _i4497 = 0; _i4497 < _map4494.size; ++_i4497) { - _key4531 = iprot.readString(); - _val4532 = new com.cinchapi.concourse.thrift.TObject(); - _val4532.read(iprot); - _val4528.put(_key4531, _val4532); + _key4495 = iprot.readString(); + _val4496 = new com.cinchapi.concourse.thrift.TObject(); + _val4496.read(iprot); + _val4492.put(_key4495, _val4496); } iprot.readMapEnd(); } - struct.success.put(_key4527, _val4528); + struct.success.put(_key4491, _val4492); } iprot.readMapEnd(); } @@ -418747,7 +417791,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -418755,15 +417799,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4534 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4498 : struct.success.entrySet()) { - oprot.writeI64(_iter4534.getKey()); + oprot.writeI64(_iter4498.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4534.getValue().size())); - for (java.util.Map.Entry _iter4535 : _iter4534.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4498.getValue().size())); + for (java.util.Map.Entry _iter4499 : _iter4498.getValue().entrySet()) { - oprot.writeString(_iter4535.getKey()); - _iter4535.getValue().write(oprot); + oprot.writeString(_iter4499.getKey()); + _iter4499.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -418793,17 +417837,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde } - private static class getKeysRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsOrder_resultTupleScheme getScheme() { - return new getKeysRecordsOrder_resultTupleScheme(); + public getKeysRecordsPage_resultTupleScheme getScheme() { + return new getKeysRecordsPage_resultTupleScheme(); } } - private static class getKeysRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -418822,15 +417866,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4536 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4500 : struct.success.entrySet()) { - oprot.writeI64(_iter4536.getKey()); + oprot.writeI64(_iter4500.getKey()); { - oprot.writeI32(_iter4536.getValue().size()); - for (java.util.Map.Entry _iter4537 : _iter4536.getValue().entrySet()) + oprot.writeI32(_iter4500.getValue().size()); + for (java.util.Map.Entry _iter4501 : _iter4500.getValue().entrySet()) { - oprot.writeString(_iter4537.getKey()); - _iter4537.getValue().write(oprot); + oprot.writeString(_iter4501.getKey()); + _iter4501.getValue().write(oprot); } } } @@ -418848,32 +417892,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4538 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4538.size); - long _key4539; - @org.apache.thrift.annotation.Nullable java.util.Map _val4540; - for (int _i4541 = 0; _i4541 < _map4538.size; ++_i4541) + org.apache.thrift.protocol.TMap _map4502 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4502.size); + long _key4503; + @org.apache.thrift.annotation.Nullable java.util.Map _val4504; + for (int _i4505 = 0; _i4505 < _map4502.size; ++_i4505) { - _key4539 = iprot.readI64(); + _key4503 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4542 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4540 = new java.util.LinkedHashMap(2*_map4542.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4543; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4544; - for (int _i4545 = 0; _i4545 < _map4542.size; ++_i4545) + org.apache.thrift.protocol.TMap _map4506 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4504 = new java.util.LinkedHashMap(2*_map4506.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4507; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4508; + for (int _i4509 = 0; _i4509 < _map4506.size; ++_i4509) { - _key4543 = iprot.readString(); - _val4544 = new com.cinchapi.concourse.thrift.TObject(); - _val4544.read(iprot); - _val4540.put(_key4543, _val4544); + _key4507 = iprot.readString(); + _val4508 = new com.cinchapi.concourse.thrift.TObject(); + _val4508.read(iprot); + _val4504.put(_key4507, _val4508); } } - struct.success.put(_key4539, _val4540); + struct.success.put(_key4503, _val4504); } } struct.setSuccessIsSet(true); @@ -418901,24 +417945,22 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsOrderPage_args"); + public static class getKeysRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -418928,10 +417970,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -418953,13 +417994,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -419015,8 +418054,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -419024,17 +418061,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsOrder_args.class, metaDataMap); } - public getKeysRecordsOrderPage_args() { + public getKeysRecordsOrder_args() { } - public getKeysRecordsOrderPage_args( + public getKeysRecordsOrder_args( java.util.List keys, java.util.List records, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -419043,7 +418079,6 @@ public getKeysRecordsOrderPage_args( this.keys = keys; this.records = records; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -419052,7 +418087,7 @@ public getKeysRecordsOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysRecordsOrderPage_args(getKeysRecordsOrderPage_args other) { + public getKeysRecordsOrder_args(getKeysRecordsOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -419064,9 +418099,6 @@ public getKeysRecordsOrderPage_args(getKeysRecordsOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -419079,8 +418111,8 @@ public getKeysRecordsOrderPage_args(getKeysRecordsOrderPage_args other) { } @Override - public getKeysRecordsOrderPage_args deepCopy() { - return new getKeysRecordsOrderPage_args(this); + public getKeysRecordsOrder_args deepCopy() { + return new getKeysRecordsOrder_args(this); } @Override @@ -419088,7 +418120,6 @@ public void clear() { this.keys = null; this.records = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -419115,7 +418146,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -419156,7 +418187,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -419181,7 +418212,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -419201,37 +418232,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -419256,7 +418262,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -419281,7 +418287,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -419328,14 +418334,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -419376,9 +418374,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -419406,8 +418401,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -419420,12 +418413,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsOrderPage_args) - return this.equals((getKeysRecordsOrderPage_args)that); + if (that instanceof getKeysRecordsOrder_args) + return this.equals((getKeysRecordsOrder_args)that); return false; } - public boolean equals(getKeysRecordsOrderPage_args that) { + public boolean equals(getKeysRecordsOrder_args that) { if (that == null) return false; if (this == that) @@ -419458,15 +418451,6 @@ public boolean equals(getKeysRecordsOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -419513,10 +418497,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -419533,7 +418513,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsOrderPage_args other) { + public int compareTo(getKeysRecordsOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -419570,16 +418550,6 @@ public int compareTo(getKeysRecordsOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -419631,7 +418601,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsOrder_args("); boolean first = true; sb.append("keys:"); @@ -419658,14 +418628,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -419699,9 +418661,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -419726,17 +418685,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsOrderPage_argsStandardScheme getScheme() { - return new getKeysRecordsOrderPage_argsStandardScheme(); + public getKeysRecordsOrder_argsStandardScheme getScheme() { + return new getKeysRecordsOrder_argsStandardScheme(); } } - private static class getKeysRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -419749,13 +418708,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4546 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4546.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4547; - for (int _i4548 = 0; _i4548 < _list4546.size; ++_i4548) + org.apache.thrift.protocol.TList _list4510 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4510.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4511; + for (int _i4512 = 0; _i4512 < _list4510.size; ++_i4512) { - _elem4547 = iprot.readString(); - struct.keys.add(_elem4547); + _elem4511 = iprot.readString(); + struct.keys.add(_elem4511); } iprot.readListEnd(); } @@ -419767,13 +418726,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4549 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4549.size); - long _elem4550; - for (int _i4551 = 0; _i4551 < _list4549.size; ++_i4551) + org.apache.thrift.protocol.TList _list4513 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4513.size); + long _elem4514; + for (int _i4515 = 0; _i4515 < _list4513.size; ++_i4515) { - _elem4550 = iprot.readI64(); - struct.records.add(_elem4550); + _elem4514 = iprot.readI64(); + struct.records.add(_elem4514); } iprot.readListEnd(); } @@ -419791,16 +418750,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -419809,7 +418759,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -419818,7 +418768,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -419838,7 +418788,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -419846,9 +418796,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4552 : struct.keys) + for (java.lang.String _iter4516 : struct.keys) { - oprot.writeString(_iter4552); + oprot.writeString(_iter4516); } oprot.writeListEnd(); } @@ -419858,9 +418808,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4553 : struct.records) + for (long _iter4517 : struct.records) { - oprot.writeI64(_iter4553); + oprot.writeI64(_iter4517); } oprot.writeListEnd(); } @@ -419871,11 +418821,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -419897,17 +418842,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde } - private static class getKeysRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsOrderPage_argsTupleScheme getScheme() { - return new getKeysRecordsOrderPage_argsTupleScheme(); + public getKeysRecordsOrder_argsTupleScheme getScheme() { + return new getKeysRecordsOrder_argsTupleScheme(); } } - private static class getKeysRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -419919,43 +418864,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4554 : struct.keys) + for (java.lang.String _iter4518 : struct.keys) { - oprot.writeString(_iter4554); + oprot.writeString(_iter4518); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4555 : struct.records) + for (long _iter4519 : struct.records) { - oprot.writeI64(_iter4555); + oprot.writeI64(_iter4519); } } } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -419968,31 +418907,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4556 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4556.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4557; - for (int _i4558 = 0; _i4558 < _list4556.size; ++_i4558) + org.apache.thrift.protocol.TList _list4520 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4520.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4521; + for (int _i4522 = 0; _i4522 < _list4520.size; ++_i4522) { - _elem4557 = iprot.readString(); - struct.keys.add(_elem4557); + _elem4521 = iprot.readString(); + struct.keys.add(_elem4521); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4559 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4559.size); - long _elem4560; - for (int _i4561 = 0; _i4561 < _list4559.size; ++_i4561) + org.apache.thrift.protocol.TList _list4523 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4523.size); + long _elem4524; + for (int _i4525 = 0; _i4525 < _list4523.size; ++_i4525) { - _elem4560 = iprot.readI64(); - struct.records.add(_elem4560); + _elem4524 = iprot.readI64(); + struct.records.add(_elem4524); } } struct.setRecordsIsSet(true); @@ -420003,21 +418942,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderP struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -420029,16 +418963,16 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsOrderPage_result"); + public static class getKeysRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -420133,13 +419067,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsOrder_result.class, metaDataMap); } - public getKeysRecordsOrderPage_result() { + public getKeysRecordsOrder_result() { } - public getKeysRecordsOrderPage_result( + public getKeysRecordsOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -420155,7 +419089,7 @@ public getKeysRecordsOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysRecordsOrderPage_result(getKeysRecordsOrderPage_result other) { + public getKeysRecordsOrder_result(getKeysRecordsOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -420194,8 +419128,8 @@ public getKeysRecordsOrderPage_result(getKeysRecordsOrderPage_result other) { } @Override - public getKeysRecordsOrderPage_result deepCopy() { - return new getKeysRecordsOrderPage_result(this); + public getKeysRecordsOrder_result deepCopy() { + return new getKeysRecordsOrder_result(this); } @Override @@ -420222,7 +419156,7 @@ public java.util.Map> success) { + public getKeysRecordsOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -420247,7 +419181,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -420272,7 +419206,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -420297,7 +419231,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -420397,12 +419331,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsOrderPage_result) - return this.equals((getKeysRecordsOrderPage_result)that); + if (that instanceof getKeysRecordsOrder_result) + return this.equals((getKeysRecordsOrder_result)that); return false; } - public boolean equals(getKeysRecordsOrderPage_result that) { + public boolean equals(getKeysRecordsOrder_result that) { if (that == null) return false; if (this == that) @@ -420471,7 +419405,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsOrderPage_result other) { + public int compareTo(getKeysRecordsOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -420538,7 +419472,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsOrder_result("); boolean first = true; sb.append("success:"); @@ -420597,17 +419531,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsOrderPage_resultStandardScheme getScheme() { - return new getKeysRecordsOrderPage_resultStandardScheme(); + public getKeysRecordsOrder_resultStandardScheme getScheme() { + return new getKeysRecordsOrder_resultStandardScheme(); } } - private static class getKeysRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -420620,28 +419554,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4562 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4562.size); - long _key4563; - @org.apache.thrift.annotation.Nullable java.util.Map _val4564; - for (int _i4565 = 0; _i4565 < _map4562.size; ++_i4565) + org.apache.thrift.protocol.TMap _map4526 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4526.size); + long _key4527; + @org.apache.thrift.annotation.Nullable java.util.Map _val4528; + for (int _i4529 = 0; _i4529 < _map4526.size; ++_i4529) { - _key4563 = iprot.readI64(); + _key4527 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4566 = iprot.readMapBegin(); - _val4564 = new java.util.LinkedHashMap(2*_map4566.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4567; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4568; - for (int _i4569 = 0; _i4569 < _map4566.size; ++_i4569) + org.apache.thrift.protocol.TMap _map4530 = iprot.readMapBegin(); + _val4528 = new java.util.LinkedHashMap(2*_map4530.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4531; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4532; + for (int _i4533 = 0; _i4533 < _map4530.size; ++_i4533) { - _key4567 = iprot.readString(); - _val4568 = new com.cinchapi.concourse.thrift.TObject(); - _val4568.read(iprot); - _val4564.put(_key4567, _val4568); + _key4531 = iprot.readString(); + _val4532 = new com.cinchapi.concourse.thrift.TObject(); + _val4532.read(iprot); + _val4528.put(_key4531, _val4532); } iprot.readMapEnd(); } - struct.success.put(_key4563, _val4564); + struct.success.put(_key4527, _val4528); } iprot.readMapEnd(); } @@ -420689,7 +419623,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -420697,15 +419631,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4570 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4534 : struct.success.entrySet()) { - oprot.writeI64(_iter4570.getKey()); + oprot.writeI64(_iter4534.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4570.getValue().size())); - for (java.util.Map.Entry _iter4571 : _iter4570.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4534.getValue().size())); + for (java.util.Map.Entry _iter4535 : _iter4534.getValue().entrySet()) { - oprot.writeString(_iter4571.getKey()); - _iter4571.getValue().write(oprot); + oprot.writeString(_iter4535.getKey()); + _iter4535.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -420735,17 +419669,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrde } - private static class getKeysRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsOrderPage_resultTupleScheme getScheme() { - return new getKeysRecordsOrderPage_resultTupleScheme(); + public getKeysRecordsOrder_resultTupleScheme getScheme() { + return new getKeysRecordsOrder_resultTupleScheme(); } } - private static class getKeysRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -420764,15 +419698,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4572 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4536 : struct.success.entrySet()) { - oprot.writeI64(_iter4572.getKey()); + oprot.writeI64(_iter4536.getKey()); { - oprot.writeI32(_iter4572.getValue().size()); - for (java.util.Map.Entry _iter4573 : _iter4572.getValue().entrySet()) + oprot.writeI32(_iter4536.getValue().size()); + for (java.util.Map.Entry _iter4537 : _iter4536.getValue().entrySet()) { - oprot.writeString(_iter4573.getKey()); - _iter4573.getValue().write(oprot); + oprot.writeString(_iter4537.getKey()); + _iter4537.getValue().write(oprot); } } } @@ -420790,32 +419724,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4574 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4574.size); - long _key4575; - @org.apache.thrift.annotation.Nullable java.util.Map _val4576; - for (int _i4577 = 0; _i4577 < _map4574.size; ++_i4577) + org.apache.thrift.protocol.TMap _map4538 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4538.size); + long _key4539; + @org.apache.thrift.annotation.Nullable java.util.Map _val4540; + for (int _i4541 = 0; _i4541 < _map4538.size; ++_i4541) { - _key4575 = iprot.readI64(); + _key4539 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4578 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4576 = new java.util.LinkedHashMap(2*_map4578.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4579; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4580; - for (int _i4581 = 0; _i4581 < _map4578.size; ++_i4581) + org.apache.thrift.protocol.TMap _map4542 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4540 = new java.util.LinkedHashMap(2*_map4542.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4543; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4544; + for (int _i4545 = 0; _i4545 < _map4542.size; ++_i4545) { - _key4579 = iprot.readString(); - _val4580 = new com.cinchapi.concourse.thrift.TObject(); - _val4580.read(iprot); - _val4576.put(_key4579, _val4580); + _key4543 = iprot.readString(); + _val4544 = new com.cinchapi.concourse.thrift.TObject(); + _val4544.read(iprot); + _val4540.put(_key4543, _val4544); } } - struct.success.put(_key4575, _val4576); + struct.success.put(_key4539, _val4540); } } struct.setSuccessIsSet(true); @@ -420843,31 +419777,37 @@ private static S scheme(org.apache. } } - public static class getKeyRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecords_args"); + public static class getKeysRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), + KEYS((short)1, "keys"), RECORDS((short)2, "records"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -420883,15 +419823,19 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; + case 1: // KEYS + return KEYS; case 2: // RECORDS return RECORDS; - case 3: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -420939,11 +419883,16 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -420951,22 +419900,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsOrderPage_args.class, metaDataMap); } - public getKeyRecords_args() { + public getKeysRecordsOrderPage_args() { } - public getKeyRecords_args( - java.lang.String key, + public getKeysRecordsOrderPage_args( + java.util.List keys, java.util.List records, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; + this.keys = keys; this.records = records; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -420975,14 +419928,21 @@ public getKeyRecords_args( /** * Performs a deep copy on other. */ - public getKeyRecords_args(getKeyRecords_args other) { - if (other.isSetKey()) { - this.key = other.key; + public getKeysRecordsOrderPage_args(getKeysRecordsOrderPage_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; } if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -420995,41 +419955,59 @@ public getKeyRecords_args(getKeyRecords_args other) { } @Override - public getKeyRecords_args deepCopy() { - return new getKeyRecords_args(this); + public getKeysRecordsOrderPage_args deepCopy() { + return new getKeysRecordsOrderPage_args(this); } @Override public void clear() { - this.key = null; + this.keys = null; this.records = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public getKeyRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public getKeysRecordsOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; return this; } - public void unsetKey() { - this.key = null; + public void unsetKeys() { + this.keys = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void setKeyIsSet(boolean value) { + public void setKeysIsSet(boolean value) { if (!value) { - this.key = null; + this.keys = null; } } @@ -421054,7 +420032,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -421074,12 +420052,62 @@ public void setRecordsIsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeysRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -421104,7 +420132,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -421129,7 +420157,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -421152,11 +420180,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case KEYS: if (value == null) { - unsetKey(); + unsetKeys(); } else { - setKey((java.lang.String)value); + setKeys((java.util.List)value); } break; @@ -421168,6 +420196,22 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -421199,12 +420243,18 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case KEYS: + return getKeys(); case RECORDS: return getRecords(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -421226,10 +420276,14 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); + case KEYS: + return isSetKeys(); case RECORDS: return isSetRecords(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -421242,23 +420296,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecords_args) - return this.equals((getKeyRecords_args)that); + if (that instanceof getKeysRecordsOrderPage_args) + return this.equals((getKeysRecordsOrderPage_args)that); return false; } - public boolean equals(getKeyRecords_args that) { + public boolean equals(getKeysRecordsOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.key.equals(that.key)) + if (!this.keys.equals(that.keys)) return false; } @@ -421271,6 +420325,24 @@ public boolean equals(getKeyRecords_args that) { return false; } + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -421305,14 +420377,22 @@ public boolean equals(getKeyRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -421329,19 +420409,19 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecords_args other) { + public int compareTo(getKeysRecordsOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } @@ -421356,6 +420436,26 @@ public int compareTo(getKeyRecords_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -421407,14 +420507,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsOrderPage_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); @@ -421426,6 +420526,22 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -421456,6 +420572,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -421480,17 +420602,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecords_argsStandardScheme getScheme() { - return new getKeyRecords_argsStandardScheme(); + public getKeysRecordsOrderPage_argsStandardScheme getScheme() { + return new getKeysRecordsOrderPage_argsStandardScheme(); } } - private static class getKeyRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -421500,10 +420622,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_args break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list4546 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4546.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4547; + for (int _i4548 = 0; _i4548 < _list4546.size; ++_i4548) + { + _elem4547 = iprot.readString(); + struct.keys.add(_elem4547); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -421511,13 +420643,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_args case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4582 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4582.size); - long _elem4583; - for (int _i4584 = 0; _i4584 < _list4582.size; ++_i4584) + org.apache.thrift.protocol.TList _list4549 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4549.size); + long _elem4550; + for (int _i4551 = 0; _i4551 < _list4549.size; ++_i4551) { - _elem4583 = iprot.readI64(); - struct.records.add(_elem4583); + _elem4550 = iprot.readI64(); + struct.records.add(_elem4550); } iprot.readListEnd(); } @@ -421526,7 +420658,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -421535,7 +420685,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -421544,7 +420694,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -421564,27 +420714,44 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter4552 : struct.keys) + { + oprot.writeString(_iter4552); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } if (struct.records != null) { oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4585 : struct.records) + for (long _iter4553 : struct.records) { - oprot.writeI64(_iter4585); + oprot.writeI64(_iter4553); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -421606,47 +420773,65 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecords_args } - private static class getKeyRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecords_argsTupleScheme getScheme() { - return new getKeyRecords_argsTupleScheme(); + public getKeysRecordsOrderPage_argsTupleScheme getScheme() { + return new getKeysRecordsOrderPage_argsTupleScheme(); } } - private static class getKeyRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter4554 : struct.keys) + { + oprot.writeString(_iter4554); + } + } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4586 : struct.records) + for (long _iter4555 : struct.records) { - oprot.writeI64(_iter4586); + oprot.writeI64(_iter4555); } } } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -421659,37 +420844,56 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list4556 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4556.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4557; + for (int _i4558 = 0; _i4558 < _list4556.size; ++_i4558) + { + _elem4557 = iprot.readString(); + struct.keys.add(_elem4557); + } + } + struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4587 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4587.size); - long _elem4588; - for (int _i4589 = 0; _i4589 < _list4587.size; ++_i4589) + org.apache.thrift.protocol.TList _list4559 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4559.size); + long _elem4560; + for (int _i4561 = 0; _i4561 < _list4559.size; ++_i4561) { - _elem4588 = iprot.readI64(); - struct.records.add(_elem4588); + _elem4560 = iprot.readI64(); + struct.records.add(_elem4560); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -421701,18 +420905,18 @@ private static S scheme(org.apache. } } - public static class getKeyRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecords_result"); + public static class getKeysRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -421795,7 +420999,9 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -421803,14 +421009,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsOrderPage_result.class, metaDataMap); } - public getKeyRecords_result() { + public getKeysRecordsOrderPage_result() { } - public getKeyRecords_result( - java.util.Map success, + public getKeysRecordsOrderPage_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -421825,17 +421031,28 @@ public getKeyRecords_result( /** * Performs a deep copy on other. */ - public getKeyRecords_result(getKeyRecords_result other) { + public getKeysRecordsOrderPage_result(getKeysRecordsOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); - for (java.util.Map.Entry other_element : other.success.entrySet()) { + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { java.lang.Long other_element_key = other_element.getKey(); - com.cinchapi.concourse.thrift.TObject other_element_value = other_element.getValue(); + java.util.Map other_element_value = other_element.getValue(); java.lang.Long __this__success_copy_key = other_element_key; - com.cinchapi.concourse.thrift.TObject __this__success_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value); + java.util.Map __this__success_copy_value = new java.util.LinkedHashMap(other_element_value.size()); + for (java.util.Map.Entry other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + com.cinchapi.concourse.thrift.TObject other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -421853,8 +421070,8 @@ public getKeyRecords_result(getKeyRecords_result other) { } @Override - public getKeyRecords_result deepCopy() { - return new getKeyRecords_result(this); + public getKeysRecordsOrderPage_result deepCopy() { + return new getKeysRecordsOrderPage_result(this); } @Override @@ -421869,19 +421086,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, com.cinchapi.concourse.thrift.TObject val) { + public void putToSuccess(long key, java.util.Map val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public getKeyRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeysRecordsOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -421906,7 +421123,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -421931,7 +421148,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -421956,7 +421173,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -421983,7 +421200,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map)value); + setSuccess((java.util.Map>)value); } break; @@ -422056,12 +421273,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecords_result) - return this.equals((getKeyRecords_result)that); + if (that instanceof getKeysRecordsOrderPage_result) + return this.equals((getKeysRecordsOrderPage_result)that); return false; } - public boolean equals(getKeyRecords_result that) { + public boolean equals(getKeysRecordsOrderPage_result that) { if (that == null) return false; if (this == that) @@ -422130,7 +421347,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecords_result other) { + public int compareTo(getKeysRecordsOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -422197,7 +421414,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsOrderPage_result("); boolean first = true; sb.append("success:"); @@ -422256,17 +421473,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecords_resultStandardScheme getScheme() { - return new getKeyRecords_resultStandardScheme(); + public getKeysRecordsOrderPage_resultStandardScheme getScheme() { + return new getKeysRecordsOrderPage_resultStandardScheme(); } } - private static class getKeyRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -422279,16 +421496,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4590 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4590.size); - long _key4591; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4592; - for (int _i4593 = 0; _i4593 < _map4590.size; ++_i4593) + org.apache.thrift.protocol.TMap _map4562 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4562.size); + long _key4563; + @org.apache.thrift.annotation.Nullable java.util.Map _val4564; + for (int _i4565 = 0; _i4565 < _map4562.size; ++_i4565) { - _key4591 = iprot.readI64(); - _val4592 = new com.cinchapi.concourse.thrift.TObject(); - _val4592.read(iprot); - struct.success.put(_key4591, _val4592); + _key4563 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map4566 = iprot.readMapBegin(); + _val4564 = new java.util.LinkedHashMap(2*_map4566.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4567; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4568; + for (int _i4569 = 0; _i4569 < _map4566.size; ++_i4569) + { + _key4567 = iprot.readString(); + _val4568 = new com.cinchapi.concourse.thrift.TObject(); + _val4568.read(iprot); + _val4564.put(_key4567, _val4568); + } + iprot.readMapEnd(); + } + struct.success.put(_key4563, _val4564); } iprot.readMapEnd(); } @@ -422336,18 +421565,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4594 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry> _iter4570 : struct.success.entrySet()) { - oprot.writeI64(_iter4594.getKey()); - _iter4594.getValue().write(oprot); + oprot.writeI64(_iter4570.getKey()); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4570.getValue().size())); + for (java.util.Map.Entry _iter4571 : _iter4570.getValue().entrySet()) + { + oprot.writeString(_iter4571.getKey()); + _iter4571.getValue().write(oprot); + } + oprot.writeMapEnd(); + } } oprot.writeMapEnd(); } @@ -422374,17 +421611,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecords_resu } - private static class getKeyRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecords_resultTupleScheme getScheme() { - return new getKeyRecords_resultTupleScheme(); + public getKeysRecordsOrderPage_resultTupleScheme getScheme() { + return new getKeysRecordsOrderPage_resultTupleScheme(); } } - private static class getKeyRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -422403,10 +421640,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4595 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4572 : struct.success.entrySet()) { - oprot.writeI64(_iter4595.getKey()); - _iter4595.getValue().write(oprot); + oprot.writeI64(_iter4572.getKey()); + { + oprot.writeI32(_iter4572.getValue().size()); + for (java.util.Map.Entry _iter4573 : _iter4572.getValue().entrySet()) + { + oprot.writeString(_iter4573.getKey()); + _iter4573.getValue().write(oprot); + } + } } } } @@ -422422,21 +421666,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4596 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4596.size); - long _key4597; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4598; - for (int _i4599 = 0; _i4599 < _map4596.size; ++_i4599) + org.apache.thrift.protocol.TMap _map4574 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4574.size); + long _key4575; + @org.apache.thrift.annotation.Nullable java.util.Map _val4576; + for (int _i4577 = 0; _i4577 < _map4574.size; ++_i4577) { - _key4597 = iprot.readI64(); - _val4598 = new com.cinchapi.concourse.thrift.TObject(); - _val4598.read(iprot); - struct.success.put(_key4597, _val4598); + _key4575 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map4578 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4576 = new java.util.LinkedHashMap(2*_map4578.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4579; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4580; + for (int _i4581 = 0; _i4581 < _map4578.size; ++_i4581) + { + _key4579 = iprot.readString(); + _val4580 = new com.cinchapi.concourse.thrift.TObject(); + _val4580.read(iprot); + _val4576.put(_key4579, _val4580); + } + } + struct.success.put(_key4575, _val4576); } } struct.setSuccessIsSet(true); @@ -422464,22 +421719,20 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsPage_args"); + public static class getKeyRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecords_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -422488,10 +421741,9 @@ public static class getKeyRecordsPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -422511,13 +421763,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORDS return RECORDS; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -422570,8 +421820,6 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -422579,16 +421827,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecords_args.class, metaDataMap); } - public getKeyRecordsPage_args() { + public getKeyRecords_args() { } - public getKeyRecordsPage_args( + public getKeyRecords_args( java.lang.String key, java.util.List records, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -422596,7 +421843,6 @@ public getKeyRecordsPage_args( this(); this.key = key; this.records = records; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -422605,7 +421851,7 @@ public getKeyRecordsPage_args( /** * Performs a deep copy on other. */ - public getKeyRecordsPage_args(getKeyRecordsPage_args other) { + public getKeyRecords_args(getKeyRecords_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -422613,9 +421859,6 @@ public getKeyRecordsPage_args(getKeyRecordsPage_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -422628,15 +421871,14 @@ public getKeyRecordsPage_args(getKeyRecordsPage_args other) { } @Override - public getKeyRecordsPage_args deepCopy() { - return new getKeyRecordsPage_args(this); + public getKeyRecords_args deepCopy() { + return new getKeyRecords_args(this); } @Override public void clear() { this.key = null; this.records = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -422647,7 +421889,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecords_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -422688,7 +421930,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -422708,37 +421950,12 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -422763,7 +421980,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -422788,7 +422005,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -422827,14 +422044,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -422872,9 +422081,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -422900,8 +422106,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORDS: return isSetRecords(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -422914,12 +422118,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsPage_args) - return this.equals((getKeyRecordsPage_args)that); + if (that instanceof getKeyRecords_args) + return this.equals((getKeyRecords_args)that); return false; } - public boolean equals(getKeyRecordsPage_args that) { + public boolean equals(getKeyRecords_args that) { if (that == null) return false; if (this == that) @@ -422943,15 +422147,6 @@ public boolean equals(getKeyRecordsPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -422994,10 +422189,6 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -423014,7 +422205,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsPage_args other) { + public int compareTo(getKeyRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -423041,16 +422232,6 @@ public int compareTo(getKeyRecordsPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -423102,7 +422283,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecords_args("); boolean first = true; sb.append("key:"); @@ -423121,14 +422302,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -423159,9 +422332,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -423186,17 +422356,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsPage_argsStandardScheme getScheme() { - return new getKeyRecordsPage_argsStandardScheme(); + public getKeyRecords_argsStandardScheme getScheme() { + return new getKeyRecords_argsStandardScheme(); } } - private static class getKeyRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -423217,13 +422387,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_a case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4600 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4600.size); - long _elem4601; - for (int _i4602 = 0; _i4602 < _list4600.size; ++_i4602) + org.apache.thrift.protocol.TList _list4582 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4582.size); + long _elem4583; + for (int _i4584 = 0; _i4584 < _list4582.size; ++_i4584) { - _elem4601 = iprot.readI64(); - struct.records.add(_elem4601); + _elem4583 = iprot.readI64(); + struct.records.add(_elem4583); } iprot.readListEnd(); } @@ -423232,16 +422402,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -423250,7 +422411,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -423259,7 +422420,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -423279,7 +422440,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -423292,19 +422453,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsPage_ oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4603 : struct.records) + for (long _iter4585 : struct.records) { - oprot.writeI64(_iter4603); + oprot.writeI64(_iter4585); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -423326,17 +422482,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsPage_ } - private static class getKeyRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsPage_argsTupleScheme getScheme() { - return new getKeyRecordsPage_argsTupleScheme(); + public getKeyRecords_argsTupleScheme getScheme() { + return new getKeyRecords_argsTupleScheme(); } } - private static class getKeyRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -423345,34 +422501,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_a if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4604 : struct.records) + for (long _iter4586 : struct.records) { - oprot.writeI64(_iter4604); + oprot.writeI64(_iter4586); } } } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -423385,42 +422535,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4605 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4605.size); - long _elem4606; - for (int _i4607 = 0; _i4607 < _list4605.size; ++_i4607) + org.apache.thrift.protocol.TList _list4587 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4587.size); + long _elem4588; + for (int _i4589 = 0; _i4589 < _list4587.size; ++_i4589) { - _elem4606 = iprot.readI64(); - struct.records.add(_elem4606); + _elem4588 = iprot.readI64(); + struct.records.add(_elem4588); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -423432,16 +422577,16 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsPage_result"); + public static class getKeyRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecords_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -423534,13 +422679,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecords_result.class, metaDataMap); } - public getKeyRecordsPage_result() { + public getKeyRecords_result() { } - public getKeyRecordsPage_result( + public getKeyRecords_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -423556,7 +422701,7 @@ public getKeyRecordsPage_result( /** * Performs a deep copy on other. */ - public getKeyRecordsPage_result(getKeyRecordsPage_result other) { + public getKeyRecords_result(getKeyRecords_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -423584,8 +422729,8 @@ public getKeyRecordsPage_result(getKeyRecordsPage_result other) { } @Override - public getKeyRecordsPage_result deepCopy() { - return new getKeyRecordsPage_result(this); + public getKeyRecords_result deepCopy() { + return new getKeyRecords_result(this); } @Override @@ -423612,7 +422757,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -423637,7 +422782,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -423662,7 +422807,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -423687,7 +422832,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -423787,12 +422932,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsPage_result) - return this.equals((getKeyRecordsPage_result)that); + if (that instanceof getKeyRecords_result) + return this.equals((getKeyRecords_result)that); return false; } - public boolean equals(getKeyRecordsPage_result that) { + public boolean equals(getKeyRecords_result that) { if (that == null) return false; if (this == that) @@ -423861,7 +423006,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsPage_result other) { + public int compareTo(getKeyRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -423928,7 +423073,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecords_result("); boolean first = true; sb.append("success:"); @@ -423987,17 +423132,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsPage_resultStandardScheme getScheme() { - return new getKeyRecordsPage_resultStandardScheme(); + public getKeyRecords_resultStandardScheme getScheme() { + return new getKeyRecords_resultStandardScheme(); } } - private static class getKeyRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -424010,16 +423155,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4608 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4608.size); - long _key4609; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4610; - for (int _i4611 = 0; _i4611 < _map4608.size; ++_i4611) + org.apache.thrift.protocol.TMap _map4590 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4590.size); + long _key4591; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4592; + for (int _i4593 = 0; _i4593 < _map4590.size; ++_i4593) { - _key4609 = iprot.readI64(); - _val4610 = new com.cinchapi.concourse.thrift.TObject(); - _val4610.read(iprot); - struct.success.put(_key4609, _val4610); + _key4591 = iprot.readI64(); + _val4592 = new com.cinchapi.concourse.thrift.TObject(); + _val4592.read(iprot); + struct.success.put(_key4591, _val4592); } iprot.readMapEnd(); } @@ -424067,7 +423212,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -424075,10 +423220,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsPage_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4612 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4594 : struct.success.entrySet()) { - oprot.writeI64(_iter4612.getKey()); - _iter4612.getValue().write(oprot); + oprot.writeI64(_iter4594.getKey()); + _iter4594.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -424105,17 +423250,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsPage_ } - private static class getKeyRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsPage_resultTupleScheme getScheme() { - return new getKeyRecordsPage_resultTupleScheme(); + public getKeyRecords_resultTupleScheme getScheme() { + return new getKeyRecords_resultTupleScheme(); } } - private static class getKeyRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -424134,10 +423279,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4613 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4595 : struct.success.entrySet()) { - oprot.writeI64(_iter4613.getKey()); - _iter4613.getValue().write(oprot); + oprot.writeI64(_iter4595.getKey()); + _iter4595.getValue().write(oprot); } } } @@ -424153,21 +423298,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4614 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4614.size); - long _key4615; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4616; - for (int _i4617 = 0; _i4617 < _map4614.size; ++_i4617) + org.apache.thrift.protocol.TMap _map4596 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4596.size); + long _key4597; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4598; + for (int _i4599 = 0; _i4599 < _map4596.size; ++_i4599) { - _key4615 = iprot.readI64(); - _val4616 = new com.cinchapi.concourse.thrift.TObject(); - _val4616.read(iprot); - struct.success.put(_key4615, _val4616); + _key4597 = iprot.readI64(); + _val4598 = new com.cinchapi.concourse.thrift.TObject(); + _val4598.read(iprot); + struct.success.put(_key4597, _val4598); } } struct.setSuccessIsSet(true); @@ -424195,22 +423340,22 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsOrder_args"); + public static class getKeyRecordsPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -424219,7 +423364,7 @@ public static class getKeyRecordsOrder_args implements org.apache.thrift.TBase records, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -424327,7 +423472,7 @@ public getKeyRecordsOrder_args( this(); this.key = key; this.records = records; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -424336,7 +423481,7 @@ public getKeyRecordsOrder_args( /** * Performs a deep copy on other. */ - public getKeyRecordsOrder_args(getKeyRecordsOrder_args other) { + public getKeyRecordsPage_args(getKeyRecordsPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -424344,8 +423489,8 @@ public getKeyRecordsOrder_args(getKeyRecordsOrder_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -424359,15 +423504,15 @@ public getKeyRecordsOrder_args(getKeyRecordsOrder_args other) { } @Override - public getKeyRecordsOrder_args deepCopy() { - return new getKeyRecordsOrder_args(this); + public getKeyRecordsPage_args deepCopy() { + return new getKeyRecordsPage_args(this); } @Override public void clear() { this.key = null; this.records = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -424378,7 +423523,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -424419,7 +423564,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -424440,27 +423585,27 @@ public void setRecordsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyRecordsPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -424469,7 +423614,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -424494,7 +423639,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -424519,7 +423664,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -424558,11 +423703,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -424603,8 +423748,8 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -424631,8 +423776,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORDS: return isSetRecords(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -424645,12 +423790,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsOrder_args) - return this.equals((getKeyRecordsOrder_args)that); + if (that instanceof getKeyRecordsPage_args) + return this.equals((getKeyRecordsPage_args)that); return false; } - public boolean equals(getKeyRecordsOrder_args that) { + public boolean equals(getKeyRecordsPage_args that) { if (that == null) return false; if (this == that) @@ -424674,12 +423819,12 @@ public boolean equals(getKeyRecordsOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -424725,9 +423870,9 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -424745,7 +423890,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsOrder_args other) { + public int compareTo(getKeyRecordsPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -424772,12 +423917,12 @@ public int compareTo(getKeyRecordsOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -424833,7 +423978,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsPage_args("); boolean first = true; sb.append("key:"); @@ -424852,11 +423997,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -424890,8 +424035,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -424917,17 +424062,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsOrder_argsStandardScheme getScheme() { - return new getKeyRecordsOrder_argsStandardScheme(); + public getKeyRecordsPage_argsStandardScheme getScheme() { + return new getKeyRecordsPage_argsStandardScheme(); } } - private static class getKeyRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -424948,13 +424093,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_ case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4618 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4618.size); - long _elem4619; - for (int _i4620 = 0; _i4620 < _list4618.size; ++_i4620) + org.apache.thrift.protocol.TList _list4600 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4600.size); + long _elem4601; + for (int _i4602 = 0; _i4602 < _list4600.size; ++_i4602) { - _elem4619 = iprot.readI64(); - struct.records.add(_elem4619); + _elem4601 = iprot.readI64(); + struct.records.add(_elem4601); } iprot.readListEnd(); } @@ -424963,11 +424108,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -425010,7 +424155,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -425023,17 +424168,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4621 : struct.records) + for (long _iter4603 : struct.records) { - oprot.writeI64(_iter4621); + oprot.writeI64(_iter4603); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -425057,17 +424202,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder } - private static class getKeyRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsOrder_argsTupleScheme getScheme() { - return new getKeyRecordsOrder_argsTupleScheme(); + public getKeyRecordsPage_argsTupleScheme getScheme() { + return new getKeyRecordsPage_argsTupleScheme(); } } - private static class getKeyRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -425076,7 +424221,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_ if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -425095,14 +424240,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_ if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4622 : struct.records) + for (long _iter4604 : struct.records) { - oprot.writeI64(_iter4622); + oprot.writeI64(_iter4604); } } } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -425116,7 +424261,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -425125,21 +424270,21 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_a } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4623 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4623.size); - long _elem4624; - for (int _i4625 = 0; _i4625 < _list4623.size; ++_i4625) + org.apache.thrift.protocol.TList _list4605 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4605.size); + long _elem4606; + for (int _i4607 = 0; _i4607 < _list4605.size; ++_i4607) { - _elem4624 = iprot.readI64(); - struct.records.add(_elem4624); + _elem4606 = iprot.readI64(); + struct.records.add(_elem4606); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -425163,16 +424308,16 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsOrder_result"); + public static class getKeyRecordsPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -425265,13 +424410,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsPage_result.class, metaDataMap); } - public getKeyRecordsOrder_result() { + public getKeyRecordsPage_result() { } - public getKeyRecordsOrder_result( + public getKeyRecordsPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -425287,7 +424432,7 @@ public getKeyRecordsOrder_result( /** * Performs a deep copy on other. */ - public getKeyRecordsOrder_result(getKeyRecordsOrder_result other) { + public getKeyRecordsPage_result(getKeyRecordsPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -425315,8 +424460,8 @@ public getKeyRecordsOrder_result(getKeyRecordsOrder_result other) { } @Override - public getKeyRecordsOrder_result deepCopy() { - return new getKeyRecordsOrder_result(this); + public getKeyRecordsPage_result deepCopy() { + return new getKeyRecordsPage_result(this); } @Override @@ -425343,7 +424488,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -425368,7 +424513,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -425393,7 +424538,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -425418,7 +424563,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecordsPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -425518,12 +424663,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsOrder_result) - return this.equals((getKeyRecordsOrder_result)that); + if (that instanceof getKeyRecordsPage_result) + return this.equals((getKeyRecordsPage_result)that); return false; } - public boolean equals(getKeyRecordsOrder_result that) { + public boolean equals(getKeyRecordsPage_result that) { if (that == null) return false; if (this == that) @@ -425592,7 +424737,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsOrder_result other) { + public int compareTo(getKeyRecordsPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -425659,7 +424804,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsPage_result("); boolean first = true; sb.append("success:"); @@ -425718,17 +424863,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsOrder_resultStandardScheme getScheme() { - return new getKeyRecordsOrder_resultStandardScheme(); + public getKeyRecordsPage_resultStandardScheme getScheme() { + return new getKeyRecordsPage_resultStandardScheme(); } } - private static class getKeyRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -425741,16 +424886,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4626 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4626.size); - long _key4627; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4628; - for (int _i4629 = 0; _i4629 < _map4626.size; ++_i4629) + org.apache.thrift.protocol.TMap _map4608 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4608.size); + long _key4609; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4610; + for (int _i4611 = 0; _i4611 < _map4608.size; ++_i4611) { - _key4627 = iprot.readI64(); - _val4628 = new com.cinchapi.concourse.thrift.TObject(); - _val4628.read(iprot); - struct.success.put(_key4627, _val4628); + _key4609 = iprot.readI64(); + _val4610 = new com.cinchapi.concourse.thrift.TObject(); + _val4610.read(iprot); + struct.success.put(_key4609, _val4610); } iprot.readMapEnd(); } @@ -425798,7 +424943,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -425806,10 +424951,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4630 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4612 : struct.success.entrySet()) { - oprot.writeI64(_iter4630.getKey()); - _iter4630.getValue().write(oprot); + oprot.writeI64(_iter4612.getKey()); + _iter4612.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -425836,17 +424981,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder } - private static class getKeyRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsOrder_resultTupleScheme getScheme() { - return new getKeyRecordsOrder_resultTupleScheme(); + public getKeyRecordsPage_resultTupleScheme getScheme() { + return new getKeyRecordsPage_resultTupleScheme(); } } - private static class getKeyRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -425865,10 +425010,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4631 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4613 : struct.success.entrySet()) { - oprot.writeI64(_iter4631.getKey()); - _iter4631.getValue().write(oprot); + oprot.writeI64(_iter4613.getKey()); + _iter4613.getValue().write(oprot); } } } @@ -425884,21 +425029,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4632 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4632.size); - long _key4633; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4634; - for (int _i4635 = 0; _i4635 < _map4632.size; ++_i4635) + org.apache.thrift.protocol.TMap _map4614 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4614.size); + long _key4615; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4616; + for (int _i4617 = 0; _i4617 < _map4614.size; ++_i4617) { - _key4633 = iprot.readI64(); - _val4634 = new com.cinchapi.concourse.thrift.TObject(); - _val4634.read(iprot); - struct.success.put(_key4633, _val4634); + _key4615 = iprot.readI64(); + _val4616 = new com.cinchapi.concourse.thrift.TObject(); + _val4616.read(iprot); + struct.success.put(_key4615, _val4616); } } struct.setSuccessIsSet(true); @@ -425926,24 +425071,22 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsOrderPage_args"); + public static class getKeyRecordsOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -425953,10 +425096,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -425978,13 +425120,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -426039,8 +425179,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -426048,17 +425186,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsOrder_args.class, metaDataMap); } - public getKeyRecordsOrderPage_args() { + public getKeyRecordsOrder_args() { } - public getKeyRecordsOrderPage_args( + public getKeyRecordsOrder_args( java.lang.String key, java.util.List records, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -426067,7 +425204,6 @@ public getKeyRecordsOrderPage_args( this.key = key; this.records = records; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -426076,7 +425212,7 @@ public getKeyRecordsOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyRecordsOrderPage_args(getKeyRecordsOrderPage_args other) { + public getKeyRecordsOrder_args(getKeyRecordsOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -426087,9 +425223,6 @@ public getKeyRecordsOrderPage_args(getKeyRecordsOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -426102,8 +425235,8 @@ public getKeyRecordsOrderPage_args(getKeyRecordsOrderPage_args other) { } @Override - public getKeyRecordsOrderPage_args deepCopy() { - return new getKeyRecordsOrderPage_args(this); + public getKeyRecordsOrder_args deepCopy() { + return new getKeyRecordsOrder_args(this); } @Override @@ -426111,7 +425244,6 @@ public void clear() { this.key = null; this.records = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -426122,7 +425254,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -426163,7 +425295,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -426188,7 +425320,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyRecordsOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -426208,37 +425340,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -426263,7 +425370,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -426288,7 +425395,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -426335,14 +425442,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -426383,9 +425482,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -426413,8 +425509,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -426427,12 +425521,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsOrderPage_args) - return this.equals((getKeyRecordsOrderPage_args)that); + if (that instanceof getKeyRecordsOrder_args) + return this.equals((getKeyRecordsOrder_args)that); return false; } - public boolean equals(getKeyRecordsOrderPage_args that) { + public boolean equals(getKeyRecordsOrder_args that) { if (that == null) return false; if (this == that) @@ -426465,15 +425559,6 @@ public boolean equals(getKeyRecordsOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -426520,10 +425605,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -426540,7 +425621,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsOrderPage_args other) { + public int compareTo(getKeyRecordsOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -426577,16 +425658,6 @@ public int compareTo(getKeyRecordsOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -426638,7 +425709,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsOrder_args("); boolean first = true; sb.append("key:"); @@ -426665,14 +425736,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -426706,9 +425769,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -426733,17 +425793,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsOrderPage_argsStandardScheme getScheme() { - return new getKeyRecordsOrderPage_argsStandardScheme(); + public getKeyRecordsOrder_argsStandardScheme getScheme() { + return new getKeyRecordsOrder_argsStandardScheme(); } } - private static class getKeyRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -426764,13 +425824,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderP case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4636 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4636.size); - long _elem4637; - for (int _i4638 = 0; _i4638 < _list4636.size; ++_i4638) + org.apache.thrift.protocol.TList _list4618 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4618.size); + long _elem4619; + for (int _i4620 = 0; _i4620 < _list4618.size; ++_i4620) { - _elem4637 = iprot.readI64(); - struct.records.add(_elem4637); + _elem4619 = iprot.readI64(); + struct.records.add(_elem4619); } iprot.readListEnd(); } @@ -426788,16 +425848,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -426806,7 +425857,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -426815,7 +425866,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -426835,7 +425886,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -426848,9 +425899,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4639 : struct.records) + for (long _iter4621 : struct.records) { - oprot.writeI64(_iter4639); + oprot.writeI64(_iter4621); } oprot.writeListEnd(); } @@ -426861,11 +425912,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -426887,17 +425933,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder } - private static class getKeyRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsOrderPage_argsTupleScheme getScheme() { - return new getKeyRecordsOrderPage_argsTupleScheme(); + public getKeyRecordsOrder_argsTupleScheme getScheme() { + return new getKeyRecordsOrder_argsTupleScheme(); } } - private static class getKeyRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -426909,37 +425955,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderP if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4640 : struct.records) + for (long _iter4622 : struct.records) { - oprot.writeI64(_iter4640); + oprot.writeI64(_iter4622); } } } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -426952,22 +425992,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4641 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4641.size); - long _elem4642; - for (int _i4643 = 0; _i4643 < _list4641.size; ++_i4643) + org.apache.thrift.protocol.TList _list4623 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4623.size); + long _elem4624; + for (int _i4625 = 0; _i4625 < _list4623.size; ++_i4625) { - _elem4642 = iprot.readI64(); - struct.records.add(_elem4642); + _elem4624 = iprot.readI64(); + struct.records.add(_elem4624); } } struct.setRecordsIsSet(true); @@ -426978,21 +426018,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPa struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -427004,16 +426039,16 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsOrderPage_result"); + public static class getKeyRecordsOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -427106,13 +426141,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsOrder_result.class, metaDataMap); } - public getKeyRecordsOrderPage_result() { + public getKeyRecordsOrder_result() { } - public getKeyRecordsOrderPage_result( + public getKeyRecordsOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -427128,7 +426163,7 @@ public getKeyRecordsOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyRecordsOrderPage_result(getKeyRecordsOrderPage_result other) { + public getKeyRecordsOrder_result(getKeyRecordsOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -427156,8 +426191,8 @@ public getKeyRecordsOrderPage_result(getKeyRecordsOrderPage_result other) { } @Override - public getKeyRecordsOrderPage_result deepCopy() { - return new getKeyRecordsOrderPage_result(this); + public getKeyRecordsOrder_result deepCopy() { + return new getKeyRecordsOrder_result(this); } @Override @@ -427184,7 +426219,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -427209,7 +426244,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -427234,7 +426269,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -427259,7 +426294,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecordsOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -427359,12 +426394,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsOrderPage_result) - return this.equals((getKeyRecordsOrderPage_result)that); + if (that instanceof getKeyRecordsOrder_result) + return this.equals((getKeyRecordsOrder_result)that); return false; } - public boolean equals(getKeyRecordsOrderPage_result that) { + public boolean equals(getKeyRecordsOrder_result that) { if (that == null) return false; if (this == that) @@ -427433,7 +426468,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsOrderPage_result other) { + public int compareTo(getKeyRecordsOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -427500,7 +426535,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsOrder_result("); boolean first = true; sb.append("success:"); @@ -427559,17 +426594,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsOrderPage_resultStandardScheme getScheme() { - return new getKeyRecordsOrderPage_resultStandardScheme(); + public getKeyRecordsOrder_resultStandardScheme getScheme() { + return new getKeyRecordsOrder_resultStandardScheme(); } } - private static class getKeyRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -427582,16 +426617,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderP case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4644 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4644.size); - long _key4645; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4646; - for (int _i4647 = 0; _i4647 < _map4644.size; ++_i4647) + org.apache.thrift.protocol.TMap _map4626 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4626.size); + long _key4627; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4628; + for (int _i4629 = 0; _i4629 < _map4626.size; ++_i4629) { - _key4645 = iprot.readI64(); - _val4646 = new com.cinchapi.concourse.thrift.TObject(); - _val4646.read(iprot); - struct.success.put(_key4645, _val4646); + _key4627 = iprot.readI64(); + _val4628 = new com.cinchapi.concourse.thrift.TObject(); + _val4628.read(iprot); + struct.success.put(_key4627, _val4628); } iprot.readMapEnd(); } @@ -427639,7 +426674,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -427647,10 +426682,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4648 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4630 : struct.success.entrySet()) { - oprot.writeI64(_iter4648.getKey()); - _iter4648.getValue().write(oprot); + oprot.writeI64(_iter4630.getKey()); + _iter4630.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -427677,17 +426712,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrder } - private static class getKeyRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsOrderPage_resultTupleScheme getScheme() { - return new getKeyRecordsOrderPage_resultTupleScheme(); + public getKeyRecordsOrder_resultTupleScheme getScheme() { + return new getKeyRecordsOrder_resultTupleScheme(); } } - private static class getKeyRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -427706,10 +426741,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderP if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4649 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4631 : struct.success.entrySet()) { - oprot.writeI64(_iter4649.getKey()); - _iter4649.getValue().write(oprot); + oprot.writeI64(_iter4631.getKey()); + _iter4631.getValue().write(oprot); } } } @@ -427725,21 +426760,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4650 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4650.size); - long _key4651; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4652; - for (int _i4653 = 0; _i4653 < _map4650.size; ++_i4653) + org.apache.thrift.protocol.TMap _map4632 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4632.size); + long _key4633; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4634; + for (int _i4635 = 0; _i4635 < _map4632.size; ++_i4635) { - _key4651 = iprot.readI64(); - _val4652 = new com.cinchapi.concourse.thrift.TObject(); - _val4652.read(iprot); - struct.success.put(_key4651, _val4652); + _key4633 = iprot.readI64(); + _val4634 = new com.cinchapi.concourse.thrift.TObject(); + _val4634.read(iprot); + struct.success.put(_key4633, _val4634); } } struct.setSuccessIsSet(true); @@ -427767,22 +426802,24 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTime_args"); + public static class getKeyRecordsOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -427791,10 +426828,11 @@ public static class getKeyRecordsTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -427814,13 +426852,15 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // RECORDS return RECORDS; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 5: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -427865,8 +426905,6 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -427875,8 +426913,10 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -427884,16 +426924,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsOrderPage_args.class, metaDataMap); } - public getKeyRecordsTime_args() { + public getKeyRecordsOrderPage_args() { } - public getKeyRecordsTime_args( + public getKeyRecordsOrderPage_args( java.lang.String key, java.util.List records, - long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -427901,8 +426942,8 @@ public getKeyRecordsTime_args( this(); this.key = key; this.records = records; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -427911,8 +426952,7 @@ public getKeyRecordsTime_args( /** * Performs a deep copy on other. */ - public getKeyRecordsTime_args(getKeyRecordsTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public getKeyRecordsOrderPage_args(getKeyRecordsOrderPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -427920,7 +426960,12 @@ public getKeyRecordsTime_args(getKeyRecordsTime_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -427933,16 +426978,16 @@ public getKeyRecordsTime_args(getKeyRecordsTime_args other) { } @Override - public getKeyRecordsTime_args deepCopy() { - return new getKeyRecordsTime_args(this); + public getKeyRecordsOrderPage_args deepCopy() { + return new getKeyRecordsOrderPage_args(this); } @Override public void clear() { this.key = null; this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -427953,7 +426998,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -427994,7 +427039,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -428014,27 +427059,54 @@ public void setRecordsIsSet(boolean value) { } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public getKeyRecordsTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public getKeyRecordsOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyRecordsOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -428042,7 +427114,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -428067,7 +427139,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -428092,7 +427164,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -428131,11 +427203,19 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -428176,8 +427256,11 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -428204,8 +427287,10 @@ public boolean isSet(_Fields field) { return isSetKey(); case RECORDS: return isSetRecords(); - case TIMESTAMP: - return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -428218,12 +427303,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTime_args) - return this.equals((getKeyRecordsTime_args)that); + if (that instanceof getKeyRecordsOrderPage_args) + return this.equals((getKeyRecordsOrderPage_args)that); return false; } - public boolean equals(getKeyRecordsTime_args that) { + public boolean equals(getKeyRecordsOrderPage_args that) { if (that == null) return false; if (this == that) @@ -428247,12 +427332,21 @@ public boolean equals(getKeyRecordsTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -428298,7 +427392,13 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -428316,7 +427416,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTime_args other) { + public int compareTo(getKeyRecordsOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -428343,12 +427443,22 @@ public int compareTo(getKeyRecordsTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -428404,7 +427514,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsOrderPage_args("); boolean first = true; sb.append("key:"); @@ -428423,8 +427533,20 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -428457,6 +427579,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -428475,25 +427603,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeyRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTime_argsStandardScheme getScheme() { - return new getKeyRecordsTime_argsStandardScheme(); + public getKeyRecordsOrderPage_argsStandardScheme getScheme() { + return new getKeyRecordsOrderPage_argsStandardScheme(); } } - private static class getKeyRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -428514,13 +427640,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_a case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4654 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4654.size); - long _elem4655; - for (int _i4656 = 0; _i4656 < _list4654.size; ++_i4656) + org.apache.thrift.protocol.TList _list4636 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4636.size); + long _elem4637; + for (int _i4638 = 0; _i4638 < _list4636.size; ++_i4638) { - _elem4655 = iprot.readI64(); - struct.records.add(_elem4655); + _elem4637 = iprot.readI64(); + struct.records.add(_elem4637); } iprot.readListEnd(); } @@ -428529,15 +427655,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -428546,7 +427682,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -428555,7 +427691,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -428575,7 +427711,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -428588,17 +427724,24 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTime_ oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4657 : struct.records) + for (long _iter4639 : struct.records) { - oprot.writeI64(_iter4657); + oprot.writeI64(_iter4639); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -428620,17 +427763,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTime_ } - private static class getKeyRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTime_argsTupleScheme getScheme() { - return new getKeyRecordsTime_argsTupleScheme(); + public getKeyRecordsOrderPage_argsTupleScheme getScheme() { + return new getKeyRecordsOrderPage_argsTupleScheme(); } } - private static class getKeyRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -428639,33 +427782,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_a if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4658 : struct.records) + for (long _iter4640 : struct.records) { - oprot.writeI64(_iter4658); + oprot.writeI64(_iter4640); } } } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -428679,41 +427828,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4659 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4659.size); - long _elem4660; - for (int _i4661 = 0; _i4661 < _list4659.size; ++_i4661) + org.apache.thrift.protocol.TList _list4641 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4641.size); + long _elem4642; + for (int _i4643 = 0; _i4643 < _list4641.size; ++_i4643) { - _elem4660 = iprot.readI64(); - struct.records.add(_elem4660); + _elem4642 = iprot.readI64(); + struct.records.add(_elem4642); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -428725,16 +427880,16 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTime_result"); + public static class getKeyRecordsOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -428827,13 +427982,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsOrderPage_result.class, metaDataMap); } - public getKeyRecordsTime_result() { + public getKeyRecordsOrderPage_result() { } - public getKeyRecordsTime_result( + public getKeyRecordsOrderPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -428849,7 +428004,7 @@ public getKeyRecordsTime_result( /** * Performs a deep copy on other. */ - public getKeyRecordsTime_result(getKeyRecordsTime_result other) { + public getKeyRecordsOrderPage_result(getKeyRecordsOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -428877,8 +428032,8 @@ public getKeyRecordsTime_result(getKeyRecordsTime_result other) { } @Override - public getKeyRecordsTime_result deepCopy() { - return new getKeyRecordsTime_result(this); + public getKeyRecordsOrderPage_result deepCopy() { + return new getKeyRecordsOrderPage_result(this); } @Override @@ -428905,7 +428060,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -428930,7 +428085,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -428955,7 +428110,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -428980,7 +428135,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecordsOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -429080,12 +428235,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTime_result) - return this.equals((getKeyRecordsTime_result)that); + if (that instanceof getKeyRecordsOrderPage_result) + return this.equals((getKeyRecordsOrderPage_result)that); return false; } - public boolean equals(getKeyRecordsTime_result that) { + public boolean equals(getKeyRecordsOrderPage_result that) { if (that == null) return false; if (this == that) @@ -429154,7 +428309,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTime_result other) { + public int compareTo(getKeyRecordsOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -429221,7 +428376,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsOrderPage_result("); boolean first = true; sb.append("success:"); @@ -429280,17 +428435,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTime_resultStandardScheme getScheme() { - return new getKeyRecordsTime_resultStandardScheme(); + public getKeyRecordsOrderPage_resultStandardScheme getScheme() { + return new getKeyRecordsOrderPage_resultStandardScheme(); } } - private static class getKeyRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -429303,16 +428458,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4662 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4662.size); - long _key4663; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4664; - for (int _i4665 = 0; _i4665 < _map4662.size; ++_i4665) + org.apache.thrift.protocol.TMap _map4644 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4644.size); + long _key4645; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4646; + for (int _i4647 = 0; _i4647 < _map4644.size; ++_i4647) { - _key4663 = iprot.readI64(); - _val4664 = new com.cinchapi.concourse.thrift.TObject(); - _val4664.read(iprot); - struct.success.put(_key4663, _val4664); + _key4645 = iprot.readI64(); + _val4646 = new com.cinchapi.concourse.thrift.TObject(); + _val4646.read(iprot); + struct.success.put(_key4645, _val4646); } iprot.readMapEnd(); } @@ -429360,7 +428515,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -429368,10 +428523,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTime_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4666 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4648 : struct.success.entrySet()) { - oprot.writeI64(_iter4666.getKey()); - _iter4666.getValue().write(oprot); + oprot.writeI64(_iter4648.getKey()); + _iter4648.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -429398,17 +428553,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTime_ } - private static class getKeyRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTime_resultTupleScheme getScheme() { - return new getKeyRecordsTime_resultTupleScheme(); + public getKeyRecordsOrderPage_resultTupleScheme getScheme() { + return new getKeyRecordsOrderPage_resultTupleScheme(); } } - private static class getKeyRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -429427,10 +428582,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4667 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4649 : struct.success.entrySet()) { - oprot.writeI64(_iter4667.getKey()); - _iter4667.getValue().write(oprot); + oprot.writeI64(_iter4649.getKey()); + _iter4649.getValue().write(oprot); } } } @@ -429446,21 +428601,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4668 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4668.size); - long _key4669; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4670; - for (int _i4671 = 0; _i4671 < _map4668.size; ++_i4671) + org.apache.thrift.protocol.TMap _map4650 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4650.size); + long _key4651; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4652; + for (int _i4653 = 0; _i4653 < _map4650.size; ++_i4653) { - _key4669 = iprot.readI64(); - _val4670 = new com.cinchapi.concourse.thrift.TObject(); - _val4670.read(iprot); - struct.success.put(_key4669, _val4670); + _key4651 = iprot.readI64(); + _val4652 = new com.cinchapi.concourse.thrift.TObject(); + _val4652.read(iprot); + struct.success.put(_key4651, _val4652); } } struct.setSuccessIsSet(true); @@ -429488,24 +428643,22 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimePage_args"); + public static class getKeyRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -429515,10 +428668,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -429540,13 +428692,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -429603,8 +428753,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -429612,17 +428760,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTime_args.class, metaDataMap); } - public getKeyRecordsTimePage_args() { + public getKeyRecordsTime_args() { } - public getKeyRecordsTimePage_args( + public getKeyRecordsTime_args( java.lang.String key, java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -429632,7 +428779,6 @@ public getKeyRecordsTimePage_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -429641,7 +428787,7 @@ public getKeyRecordsTimePage_args( /** * Performs a deep copy on other. */ - public getKeyRecordsTimePage_args(getKeyRecordsTimePage_args other) { + public getKeyRecordsTime_args(getKeyRecordsTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -429651,9 +428797,6 @@ public getKeyRecordsTimePage_args(getKeyRecordsTimePage_args other) { this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -429666,8 +428809,8 @@ public getKeyRecordsTimePage_args(getKeyRecordsTimePage_args other) { } @Override - public getKeyRecordsTimePage_args deepCopy() { - return new getKeyRecordsTimePage_args(this); + public getKeyRecordsTime_args deepCopy() { + return new getKeyRecordsTime_args(this); } @Override @@ -429676,7 +428819,6 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -429687,7 +428829,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -429728,7 +428870,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -429752,7 +428894,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyRecordsTimePage_args setTimestamp(long timestamp) { + public getKeyRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -429771,37 +428913,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -429826,7 +428943,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -429851,7 +428968,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -429898,14 +429015,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -429946,9 +429055,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -429976,8 +429082,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -429990,12 +429094,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimePage_args) - return this.equals((getKeyRecordsTimePage_args)that); + if (that instanceof getKeyRecordsTime_args) + return this.equals((getKeyRecordsTime_args)that); return false; } - public boolean equals(getKeyRecordsTimePage_args that) { + public boolean equals(getKeyRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -430028,15 +429132,6 @@ public boolean equals(getKeyRecordsTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -430081,10 +429176,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -430101,7 +429192,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimePage_args other) { + public int compareTo(getKeyRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -430138,16 +429229,6 @@ public int compareTo(getKeyRecordsTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -430199,7 +429280,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTime_args("); boolean first = true; sb.append("key:"); @@ -430222,14 +429303,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -430260,9 +429333,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -430289,17 +429359,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimePage_argsStandardScheme getScheme() { - return new getKeyRecordsTimePage_argsStandardScheme(); + public getKeyRecordsTime_argsStandardScheme getScheme() { + return new getKeyRecordsTime_argsStandardScheme(); } } - private static class getKeyRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -430320,13 +429390,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePa case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4672 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4672.size); - long _elem4673; - for (int _i4674 = 0; _i4674 < _list4672.size; ++_i4674) + org.apache.thrift.protocol.TList _list4654 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4654.size); + long _elem4655; + for (int _i4656 = 0; _i4656 < _list4654.size; ++_i4656) { - _elem4673 = iprot.readI64(); - struct.records.add(_elem4673); + _elem4655 = iprot.readI64(); + struct.records.add(_elem4655); } iprot.readListEnd(); } @@ -430343,16 +429413,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -430361,7 +429422,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -430370,7 +429431,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -430390,7 +429451,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -430403,9 +429464,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeP oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4675 : struct.records) + for (long _iter4657 : struct.records) { - oprot.writeI64(_iter4675); + oprot.writeI64(_iter4657); } oprot.writeListEnd(); } @@ -430414,11 +429475,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeP oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -430440,17 +429496,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeP } - private static class getKeyRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimePage_argsTupleScheme getScheme() { - return new getKeyRecordsTimePage_argsTupleScheme(); + public getKeyRecordsTime_argsTupleScheme getScheme() { + return new getKeyRecordsTime_argsTupleScheme(); } } - private static class getKeyRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -430462,37 +429518,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePa if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4676 : struct.records) + for (long _iter4658 : struct.records) { - oprot.writeI64(_iter4676); + oprot.writeI64(_iter4658); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -430505,22 +429555,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4677 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4677.size); - long _elem4678; - for (int _i4679 = 0; _i4679 < _list4677.size; ++_i4679) + org.apache.thrift.protocol.TList _list4659 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4659.size); + long _elem4660; + for (int _i4661 = 0; _i4661 < _list4659.size; ++_i4661) { - _elem4678 = iprot.readI64(); - struct.records.add(_elem4678); + _elem4660 = iprot.readI64(); + struct.records.add(_elem4660); } } struct.setRecordsIsSet(true); @@ -430530,21 +429580,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePag struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -430556,16 +429601,16 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimePage_result"); + public static class getKeyRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -430658,13 +429703,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTime_result.class, metaDataMap); } - public getKeyRecordsTimePage_result() { + public getKeyRecordsTime_result() { } - public getKeyRecordsTimePage_result( + public getKeyRecordsTime_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -430680,7 +429725,7 @@ public getKeyRecordsTimePage_result( /** * Performs a deep copy on other. */ - public getKeyRecordsTimePage_result(getKeyRecordsTimePage_result other) { + public getKeyRecordsTime_result(getKeyRecordsTime_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -430708,8 +429753,8 @@ public getKeyRecordsTimePage_result(getKeyRecordsTimePage_result other) { } @Override - public getKeyRecordsTimePage_result deepCopy() { - return new getKeyRecordsTimePage_result(this); + public getKeyRecordsTime_result deepCopy() { + return new getKeyRecordsTime_result(this); } @Override @@ -430736,7 +429781,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -430761,7 +429806,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -430786,7 +429831,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -430811,7 +429856,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -430911,12 +429956,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimePage_result) - return this.equals((getKeyRecordsTimePage_result)that); + if (that instanceof getKeyRecordsTime_result) + return this.equals((getKeyRecordsTime_result)that); return false; } - public boolean equals(getKeyRecordsTimePage_result that) { + public boolean equals(getKeyRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -430985,7 +430030,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimePage_result other) { + public int compareTo(getKeyRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -431052,7 +430097,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTime_result("); boolean first = true; sb.append("success:"); @@ -431111,17 +430156,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimePage_resultStandardScheme getScheme() { - return new getKeyRecordsTimePage_resultStandardScheme(); + public getKeyRecordsTime_resultStandardScheme getScheme() { + return new getKeyRecordsTime_resultStandardScheme(); } } - private static class getKeyRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -431134,16 +430179,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePa case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4680 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4680.size); - long _key4681; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4682; - for (int _i4683 = 0; _i4683 < _map4680.size; ++_i4683) + org.apache.thrift.protocol.TMap _map4662 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4662.size); + long _key4663; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4664; + for (int _i4665 = 0; _i4665 < _map4662.size; ++_i4665) { - _key4681 = iprot.readI64(); - _val4682 = new com.cinchapi.concourse.thrift.TObject(); - _val4682.read(iprot); - struct.success.put(_key4681, _val4682); + _key4663 = iprot.readI64(); + _val4664 = new com.cinchapi.concourse.thrift.TObject(); + _val4664.read(iprot); + struct.success.put(_key4663, _val4664); } iprot.readMapEnd(); } @@ -431191,7 +430236,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -431199,10 +430244,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeP oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4684 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4666 : struct.success.entrySet()) { - oprot.writeI64(_iter4684.getKey()); - _iter4684.getValue().write(oprot); + oprot.writeI64(_iter4666.getKey()); + _iter4666.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -431229,17 +430274,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeP } - private static class getKeyRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimePage_resultTupleScheme getScheme() { - return new getKeyRecordsTimePage_resultTupleScheme(); + public getKeyRecordsTime_resultTupleScheme getScheme() { + return new getKeyRecordsTime_resultTupleScheme(); } } - private static class getKeyRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -431258,10 +430303,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePa if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4685 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4667 : struct.success.entrySet()) { - oprot.writeI64(_iter4685.getKey()); - _iter4685.getValue().write(oprot); + oprot.writeI64(_iter4667.getKey()); + _iter4667.getValue().write(oprot); } } } @@ -431277,21 +430322,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4686 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4686.size); - long _key4687; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4688; - for (int _i4689 = 0; _i4689 < _map4686.size; ++_i4689) + org.apache.thrift.protocol.TMap _map4668 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4668.size); + long _key4669; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4670; + for (int _i4671 = 0; _i4671 < _map4668.size; ++_i4671) { - _key4687 = iprot.readI64(); - _val4688 = new com.cinchapi.concourse.thrift.TObject(); - _val4688.read(iprot); - struct.success.put(_key4687, _val4688); + _key4669 = iprot.readI64(); + _val4670 = new com.cinchapi.concourse.thrift.TObject(); + _val4670.read(iprot); + struct.success.put(_key4669, _val4670); } } struct.setSuccessIsSet(true); @@ -431319,24 +430364,24 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimeOrder_args"); + public static class getKeyRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimePage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -431346,7 +430391,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -431371,8 +430416,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -431434,8 +430479,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -431443,17 +430488,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimePage_args.class, metaDataMap); } - public getKeyRecordsTimeOrder_args() { + public getKeyRecordsTimePage_args() { } - public getKeyRecordsTimeOrder_args( + public getKeyRecordsTimePage_args( java.lang.String key, java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -431463,7 +430508,7 @@ public getKeyRecordsTimeOrder_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -431472,7 +430517,7 @@ public getKeyRecordsTimeOrder_args( /** * Performs a deep copy on other. */ - public getKeyRecordsTimeOrder_args(getKeyRecordsTimeOrder_args other) { + public getKeyRecordsTimePage_args(getKeyRecordsTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -431482,8 +430527,8 @@ public getKeyRecordsTimeOrder_args(getKeyRecordsTimeOrder_args other) { this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -431497,8 +430542,8 @@ public getKeyRecordsTimeOrder_args(getKeyRecordsTimeOrder_args other) { } @Override - public getKeyRecordsTimeOrder_args deepCopy() { - return new getKeyRecordsTimeOrder_args(this); + public getKeyRecordsTimePage_args deepCopy() { + return new getKeyRecordsTimePage_args(this); } @Override @@ -431507,7 +430552,7 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -431518,7 +430563,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -431559,7 +430604,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -431583,7 +430628,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyRecordsTimeOrder_args setTimestamp(long timestamp) { + public getKeyRecordsTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -431603,27 +430648,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -431632,7 +430677,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -431657,7 +430702,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -431682,7 +430727,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -431729,11 +430774,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -431777,8 +430822,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -431807,8 +430852,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -431821,12 +430866,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimeOrder_args) - return this.equals((getKeyRecordsTimeOrder_args)that); + if (that instanceof getKeyRecordsTimePage_args) + return this.equals((getKeyRecordsTimePage_args)that); return false; } - public boolean equals(getKeyRecordsTimeOrder_args that) { + public boolean equals(getKeyRecordsTimePage_args that) { if (that == null) return false; if (this == that) @@ -431859,12 +430904,12 @@ public boolean equals(getKeyRecordsTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -431912,9 +430957,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -431932,7 +430977,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimeOrder_args other) { + public int compareTo(getKeyRecordsTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -431969,12 +431014,12 @@ public int compareTo(getKeyRecordsTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -432030,7 +431075,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimePage_args("); boolean first = true; sb.append("key:"); @@ -432053,11 +431098,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -432091,8 +431136,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -432120,17 +431165,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimeOrder_argsStandardScheme getScheme() { - return new getKeyRecordsTimeOrder_argsStandardScheme(); + public getKeyRecordsTimePage_argsStandardScheme getScheme() { + return new getKeyRecordsTimePage_argsStandardScheme(); } } - private static class getKeyRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -432151,13 +431196,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4690 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4690.size); - long _elem4691; - for (int _i4692 = 0; _i4692 < _list4690.size; ++_i4692) + org.apache.thrift.protocol.TList _list4672 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4672.size); + long _elem4673; + for (int _i4674 = 0; _i4674 < _list4672.size; ++_i4674) { - _elem4691 = iprot.readI64(); - struct.records.add(_elem4691); + _elem4673 = iprot.readI64(); + struct.records.add(_elem4673); } iprot.readListEnd(); } @@ -432174,11 +431219,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -432221,7 +431266,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -432234,9 +431279,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4693 : struct.records) + for (long _iter4675 : struct.records) { - oprot.writeI64(_iter4693); + oprot.writeI64(_iter4675); } oprot.writeListEnd(); } @@ -432245,9 +431290,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -432271,17 +431316,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO } - private static class getKeyRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimeOrder_argsTupleScheme getScheme() { - return new getKeyRecordsTimeOrder_argsTupleScheme(); + public getKeyRecordsTimePage_argsTupleScheme getScheme() { + return new getKeyRecordsTimePage_argsTupleScheme(); } } - private static class getKeyRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -432293,7 +431338,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -432312,17 +431357,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4694 : struct.records) + for (long _iter4676 : struct.records) { - oprot.writeI64(_iter4694); + oprot.writeI64(_iter4676); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -432336,7 +431381,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -432345,13 +431390,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrd } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4695 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4695.size); - long _elem4696; - for (int _i4697 = 0; _i4697 < _list4695.size; ++_i4697) + org.apache.thrift.protocol.TList _list4677 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4677.size); + long _elem4678; + for (int _i4679 = 0; _i4679 < _list4677.size; ++_i4679) { - _elem4696 = iprot.readI64(); - struct.records.add(_elem4696); + _elem4678 = iprot.readI64(); + struct.records.add(_elem4678); } } struct.setRecordsIsSet(true); @@ -432361,9 +431406,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrd struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -432387,16 +431432,16 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimeOrder_result"); + public static class getKeyRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -432489,13 +431534,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimePage_result.class, metaDataMap); } - public getKeyRecordsTimeOrder_result() { + public getKeyRecordsTimePage_result() { } - public getKeyRecordsTimeOrder_result( + public getKeyRecordsTimePage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -432511,7 +431556,7 @@ public getKeyRecordsTimeOrder_result( /** * Performs a deep copy on other. */ - public getKeyRecordsTimeOrder_result(getKeyRecordsTimeOrder_result other) { + public getKeyRecordsTimePage_result(getKeyRecordsTimePage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -432539,8 +431584,8 @@ public getKeyRecordsTimeOrder_result(getKeyRecordsTimeOrder_result other) { } @Override - public getKeyRecordsTimeOrder_result deepCopy() { - return new getKeyRecordsTimeOrder_result(this); + public getKeyRecordsTimePage_result deepCopy() { + return new getKeyRecordsTimePage_result(this); } @Override @@ -432567,7 +431612,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -432592,7 +431637,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -432617,7 +431662,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -432642,7 +431687,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -432742,12 +431787,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimeOrder_result) - return this.equals((getKeyRecordsTimeOrder_result)that); + if (that instanceof getKeyRecordsTimePage_result) + return this.equals((getKeyRecordsTimePage_result)that); return false; } - public boolean equals(getKeyRecordsTimeOrder_result that) { + public boolean equals(getKeyRecordsTimePage_result that) { if (that == null) return false; if (this == that) @@ -432816,7 +431861,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimeOrder_result other) { + public int compareTo(getKeyRecordsTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -432883,7 +431928,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimePage_result("); boolean first = true; sb.append("success:"); @@ -432942,17 +431987,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimeOrder_resultStandardScheme getScheme() { - return new getKeyRecordsTimeOrder_resultStandardScheme(); + public getKeyRecordsTimePage_resultStandardScheme getScheme() { + return new getKeyRecordsTimePage_resultStandardScheme(); } } - private static class getKeyRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -432965,16 +432010,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4698 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4698.size); - long _key4699; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4700; - for (int _i4701 = 0; _i4701 < _map4698.size; ++_i4701) + org.apache.thrift.protocol.TMap _map4680 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4680.size); + long _key4681; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4682; + for (int _i4683 = 0; _i4683 < _map4680.size; ++_i4683) { - _key4699 = iprot.readI64(); - _val4700 = new com.cinchapi.concourse.thrift.TObject(); - _val4700.read(iprot); - struct.success.put(_key4699, _val4700); + _key4681 = iprot.readI64(); + _val4682 = new com.cinchapi.concourse.thrift.TObject(); + _val4682.read(iprot); + struct.success.put(_key4681, _val4682); } iprot.readMapEnd(); } @@ -433022,7 +432067,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -433030,10 +432075,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4702 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4684 : struct.success.entrySet()) { - oprot.writeI64(_iter4702.getKey()); - _iter4702.getValue().write(oprot); + oprot.writeI64(_iter4684.getKey()); + _iter4684.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -433060,17 +432105,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO } - private static class getKeyRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimeOrder_resultTupleScheme getScheme() { - return new getKeyRecordsTimeOrder_resultTupleScheme(); + public getKeyRecordsTimePage_resultTupleScheme getScheme() { + return new getKeyRecordsTimePage_resultTupleScheme(); } } - private static class getKeyRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -433089,10 +432134,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4703 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4685 : struct.success.entrySet()) { - oprot.writeI64(_iter4703.getKey()); - _iter4703.getValue().write(oprot); + oprot.writeI64(_iter4685.getKey()); + _iter4685.getValue().write(oprot); } } } @@ -433108,21 +432153,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4704 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4704.size); - long _key4705; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4706; - for (int _i4707 = 0; _i4707 < _map4704.size; ++_i4707) + org.apache.thrift.protocol.TMap _map4686 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4686.size); + long _key4687; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4688; + for (int _i4689 = 0; _i4689 < _map4686.size; ++_i4689) { - _key4705 = iprot.readI64(); - _val4706 = new com.cinchapi.concourse.thrift.TObject(); - _val4706.read(iprot); - struct.success.put(_key4705, _val4706); + _key4687 = iprot.readI64(); + _val4688 = new com.cinchapi.concourse.thrift.TObject(); + _val4688.read(iprot); + struct.success.put(_key4687, _val4688); } } struct.setSuccessIsSet(true); @@ -433150,26 +432195,24 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimeOrderPage_args"); + public static class getKeyRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -433180,10 +432223,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -433207,13 +432249,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -433272,8 +432312,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -433281,18 +432319,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimeOrder_args.class, metaDataMap); } - public getKeyRecordsTimeOrderPage_args() { + public getKeyRecordsTimeOrder_args() { } - public getKeyRecordsTimeOrderPage_args( + public getKeyRecordsTimeOrder_args( java.lang.String key, java.util.List records, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -433303,7 +432340,6 @@ public getKeyRecordsTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -433312,7 +432348,7 @@ public getKeyRecordsTimeOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyRecordsTimeOrderPage_args(getKeyRecordsTimeOrderPage_args other) { + public getKeyRecordsTimeOrder_args(getKeyRecordsTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -433325,9 +432361,6 @@ public getKeyRecordsTimeOrderPage_args(getKeyRecordsTimeOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -433340,8 +432373,8 @@ public getKeyRecordsTimeOrderPage_args(getKeyRecordsTimeOrderPage_args other) { } @Override - public getKeyRecordsTimeOrderPage_args deepCopy() { - return new getKeyRecordsTimeOrderPage_args(this); + public getKeyRecordsTimeOrder_args deepCopy() { + return new getKeyRecordsTimeOrder_args(this); } @Override @@ -433351,7 +432384,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -433362,7 +432394,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -433403,7 +432435,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -433427,7 +432459,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyRecordsTimeOrderPage_args setTimestamp(long timestamp) { + public getKeyRecordsTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -433451,7 +432483,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -433471,37 +432503,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -433526,7 +432533,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -433551,7 +432558,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -433606,14 +432613,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -433657,9 +432656,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -433689,8 +432685,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -433703,12 +432697,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimeOrderPage_args) - return this.equals((getKeyRecordsTimeOrderPage_args)that); + if (that instanceof getKeyRecordsTimeOrder_args) + return this.equals((getKeyRecordsTimeOrder_args)that); return false; } - public boolean equals(getKeyRecordsTimeOrderPage_args that) { + public boolean equals(getKeyRecordsTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -433750,15 +432744,6 @@ public boolean equals(getKeyRecordsTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -433807,10 +432792,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -433827,7 +432808,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimeOrderPage_args other) { + public int compareTo(getKeyRecordsTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -433874,16 +432855,6 @@ public int compareTo(getKeyRecordsTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -433935,7 +432906,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimeOrder_args("); boolean first = true; sb.append("key:"); @@ -433966,14 +432937,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -434007,9 +432970,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -434036,17 +432996,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimeOrderPage_argsStandardScheme getScheme() { - return new getKeyRecordsTimeOrderPage_argsStandardScheme(); + public getKeyRecordsTimeOrder_argsStandardScheme getScheme() { + return new getKeyRecordsTimeOrder_argsStandardScheme(); } } - private static class getKeyRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -434067,13 +433027,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4708 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4708.size); - long _elem4709; - for (int _i4710 = 0; _i4710 < _list4708.size; ++_i4710) + org.apache.thrift.protocol.TList _list4690 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4690.size); + long _elem4691; + for (int _i4692 = 0; _i4692 < _list4690.size; ++_i4692) { - _elem4709 = iprot.readI64(); - struct.records.add(_elem4709); + _elem4691 = iprot.readI64(); + struct.records.add(_elem4691); } iprot.readListEnd(); } @@ -434099,16 +433059,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -434117,7 +433068,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -434126,7 +433077,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -434146,7 +433097,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -434159,9 +433110,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4711 : struct.records) + for (long _iter4693 : struct.records) { - oprot.writeI64(_iter4711); + oprot.writeI64(_iter4693); } oprot.writeListEnd(); } @@ -434175,11 +433126,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -434201,17 +433147,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO } - private static class getKeyRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimeOrderPage_argsTupleScheme getScheme() { - return new getKeyRecordsTimeOrderPage_argsTupleScheme(); + public getKeyRecordsTimeOrder_argsTupleScheme getScheme() { + return new getKeyRecordsTimeOrder_argsTupleScheme(); } } - private static class getKeyRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -434226,28 +433172,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4712 : struct.records) + for (long _iter4694 : struct.records) { - oprot.writeI64(_iter4712); + oprot.writeI64(_iter4694); } } } @@ -434257,9 +433200,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -434272,22 +433212,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4713 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4713.size); - long _elem4714; - for (int _i4715 = 0; _i4715 < _list4713.size; ++_i4715) + org.apache.thrift.protocol.TList _list4695 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4695.size); + long _elem4696; + for (int _i4697 = 0; _i4697 < _list4695.size; ++_i4697) { - _elem4714 = iprot.readI64(); - struct.records.add(_elem4714); + _elem4696 = iprot.readI64(); + struct.records.add(_elem4696); } } struct.setRecordsIsSet(true); @@ -434302,21 +433242,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrd struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -434328,16 +433263,16 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimeOrderPage_result"); + public static class getKeyRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -434430,13 +433365,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimeOrder_result.class, metaDataMap); } - public getKeyRecordsTimeOrderPage_result() { + public getKeyRecordsTimeOrder_result() { } - public getKeyRecordsTimeOrderPage_result( + public getKeyRecordsTimeOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -434452,7 +433387,7 @@ public getKeyRecordsTimeOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyRecordsTimeOrderPage_result(getKeyRecordsTimeOrderPage_result other) { + public getKeyRecordsTimeOrder_result(getKeyRecordsTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -434480,8 +433415,8 @@ public getKeyRecordsTimeOrderPage_result(getKeyRecordsTimeOrderPage_result other } @Override - public getKeyRecordsTimeOrderPage_result deepCopy() { - return new getKeyRecordsTimeOrderPage_result(this); + public getKeyRecordsTimeOrder_result deepCopy() { + return new getKeyRecordsTimeOrder_result(this); } @Override @@ -434508,7 +433443,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -434533,7 +433468,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -434558,7 +433493,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -434583,7 +433518,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -434683,12 +433618,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimeOrderPage_result) - return this.equals((getKeyRecordsTimeOrderPage_result)that); + if (that instanceof getKeyRecordsTimeOrder_result) + return this.equals((getKeyRecordsTimeOrder_result)that); return false; } - public boolean equals(getKeyRecordsTimeOrderPage_result that) { + public boolean equals(getKeyRecordsTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -434757,7 +433692,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimeOrderPage_result other) { + public int compareTo(getKeyRecordsTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -434824,7 +433759,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -434883,17 +433818,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimeOrderPage_resultStandardScheme getScheme() { - return new getKeyRecordsTimeOrderPage_resultStandardScheme(); + public getKeyRecordsTimeOrder_resultStandardScheme getScheme() { + return new getKeyRecordsTimeOrder_resultStandardScheme(); } } - private static class getKeyRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -434906,16 +433841,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4716 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4716.size); - long _key4717; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4718; - for (int _i4719 = 0; _i4719 < _map4716.size; ++_i4719) + org.apache.thrift.protocol.TMap _map4698 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4698.size); + long _key4699; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4700; + for (int _i4701 = 0; _i4701 < _map4698.size; ++_i4701) { - _key4717 = iprot.readI64(); - _val4718 = new com.cinchapi.concourse.thrift.TObject(); - _val4718.read(iprot); - struct.success.put(_key4717, _val4718); + _key4699 = iprot.readI64(); + _val4700 = new com.cinchapi.concourse.thrift.TObject(); + _val4700.read(iprot); + struct.success.put(_key4699, _val4700); } iprot.readMapEnd(); } @@ -434963,7 +433898,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -434971,10 +433906,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4720 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4702 : struct.success.entrySet()) { - oprot.writeI64(_iter4720.getKey()); - _iter4720.getValue().write(oprot); + oprot.writeI64(_iter4702.getKey()); + _iter4702.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -435001,17 +433936,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeO } - private static class getKeyRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimeOrderPage_resultTupleScheme getScheme() { - return new getKeyRecordsTimeOrderPage_resultTupleScheme(); + public getKeyRecordsTimeOrder_resultTupleScheme getScheme() { + return new getKeyRecordsTimeOrder_resultTupleScheme(); } } - private static class getKeyRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -435030,10 +433965,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4721 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4703 : struct.success.entrySet()) { - oprot.writeI64(_iter4721.getKey()); - _iter4721.getValue().write(oprot); + oprot.writeI64(_iter4703.getKey()); + _iter4703.getValue().write(oprot); } } } @@ -435049,21 +433984,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4722 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4722.size); - long _key4723; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4724; - for (int _i4725 = 0; _i4725 < _map4722.size; ++_i4725) + org.apache.thrift.protocol.TMap _map4704 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4704.size); + long _key4705; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4706; + for (int _i4707 = 0; _i4707 < _map4704.size; ++_i4707) { - _key4723 = iprot.readI64(); - _val4724 = new com.cinchapi.concourse.thrift.TObject(); - _val4724.read(iprot); - struct.success.put(_key4723, _val4724); + _key4705 = iprot.readI64(); + _val4706 = new com.cinchapi.concourse.thrift.TObject(); + _val4706.read(iprot); + struct.success.put(_key4705, _val4706); } } struct.setSuccessIsSet(true); @@ -435091,22 +434026,26 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestr_args"); + public static class getKeyRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -435116,9 +434055,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -435140,11 +434081,15 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -435189,6 +434134,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -435198,7 +434145,11 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -435206,16 +434157,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimeOrderPage_args.class, metaDataMap); } - public getKeyRecordsTimestr_args() { + public getKeyRecordsTimeOrderPage_args() { } - public getKeyRecordsTimestr_args( + public getKeyRecordsTimeOrderPage_args( java.lang.String key, java.util.List records, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -435224,6 +434177,9 @@ public getKeyRecordsTimestr_args( this.key = key; this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -435232,7 +434188,8 @@ public getKeyRecordsTimestr_args( /** * Performs a deep copy on other. */ - public getKeyRecordsTimestr_args(getKeyRecordsTimestr_args other) { + public getKeyRecordsTimeOrderPage_args(getKeyRecordsTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } @@ -435240,8 +434197,12 @@ public getKeyRecordsTimestr_args(getKeyRecordsTimestr_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -435255,15 +434216,18 @@ public getKeyRecordsTimestr_args(getKeyRecordsTimestr_args other) { } @Override - public getKeyRecordsTimestr_args deepCopy() { - return new getKeyRecordsTimestr_args(this); + public getKeyRecordsTimeOrderPage_args deepCopy() { + return new getKeyRecordsTimeOrderPage_args(this); } @Override public void clear() { this.key = null; this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -435274,7 +434238,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -435315,7 +434279,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -435335,28 +434299,76 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getKeyRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyRecordsTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeyRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -435365,7 +434377,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -435390,7 +434402,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -435415,7 +434427,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -435458,7 +434470,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -435502,6 +434530,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -435529,6 +434563,10 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -435541,12 +434579,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimestr_args) - return this.equals((getKeyRecordsTimestr_args)that); + if (that instanceof getKeyRecordsTimeOrderPage_args) + return this.equals((getKeyRecordsTimeOrderPage_args)that); return false; } - public boolean equals(getKeyRecordsTimestr_args that) { + public boolean equals(getKeyRecordsTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -435570,12 +434608,30 @@ public boolean equals(getKeyRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -435621,9 +434677,15 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -435641,7 +434703,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimestr_args other) { + public int compareTo(getKeyRecordsTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -435678,6 +434740,26 @@ public int compareTo(getKeyRecordsTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -435729,7 +434811,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimeOrderPage_args("); boolean first = true; sb.append("key:"); @@ -435749,10 +434831,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -435786,6 +434880,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -435804,23 +434904,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeyRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestr_argsStandardScheme getScheme() { - return new getKeyRecordsTimestr_argsStandardScheme(); + public getKeyRecordsTimeOrderPage_argsStandardScheme getScheme() { + return new getKeyRecordsTimeOrderPage_argsStandardScheme(); } } - private static class getKeyRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -435841,13 +434943,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4726 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4726.size); - long _elem4727; - for (int _i4728 = 0; _i4728 < _list4726.size; ++_i4728) + org.apache.thrift.protocol.TList _list4708 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4708.size); + long _elem4709; + for (int _i4710 = 0; _i4710 < _list4708.size; ++_i4710) { - _elem4727 = iprot.readI64(); - struct.records.add(_elem4727); + _elem4709 = iprot.readI64(); + struct.records.add(_elem4709); } iprot.readListEnd(); } @@ -435857,14 +434959,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -435873,7 +434993,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -435882,7 +435002,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -435902,7 +435022,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -435915,17 +435035,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4729 : struct.records) + for (long _iter4711 : struct.records) { - oprot.writeI64(_iter4729); + oprot.writeI64(_iter4711); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -435949,17 +435077,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes } - private static class getKeyRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestr_argsTupleScheme getScheme() { - return new getKeyRecordsTimestr_argsTupleScheme(); + public getKeyRecordsTimeOrderPage_argsTupleScheme getScheme() { + return new getKeyRecordsTimeOrderPage_argsTupleScheme(); } } - private static class getKeyRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -435971,30 +435099,42 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4730 : struct.records) + for (long _iter4712 : struct.records) { - oprot.writeI64(_iter4730); + oprot.writeI64(_iter4712); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -436008,41 +435148,51 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4731 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4731.size); - long _elem4732; - for (int _i4733 = 0; _i4733 < _list4731.size; ++_i4733) + org.apache.thrift.protocol.TList _list4713 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4713.size); + long _elem4714; + for (int _i4715 = 0; _i4715 < _list4713.size; ++_i4715) { - _elem4732 = iprot.readI64(); - struct.records.add(_elem4732); + _elem4714 = iprot.readI64(); + struct.records.add(_elem4714); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -436054,31 +435204,28 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestr_result"); + public static class getKeyRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -436102,8 +435249,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -436159,35 +435304,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimeOrderPage_result.class, metaDataMap); } - public getKeyRecordsTimestr_result() { + public getKeyRecordsTimeOrderPage_result() { } - public getKeyRecordsTimestr_result( + public getKeyRecordsTimeOrderPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeyRecordsTimestr_result(getKeyRecordsTimestr_result other) { + public getKeyRecordsTimeOrderPage_result(getKeyRecordsTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -436210,16 +435351,13 @@ public getKeyRecordsTimestr_result(getKeyRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getKeyRecordsTimestr_result deepCopy() { - return new getKeyRecordsTimestr_result(this); + public getKeyRecordsTimeOrderPage_result deepCopy() { + return new getKeyRecordsTimeOrderPage_result(this); } @Override @@ -436228,7 +435366,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -436247,7 +435384,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -436272,7 +435409,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -436297,7 +435434,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -436318,11 +435455,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -436342,31 +435479,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getKeyRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -436398,15 +435510,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -436429,9 +435533,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -436452,20 +435553,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimestr_result) - return this.equals((getKeyRecordsTimestr_result)that); + if (that instanceof getKeyRecordsTimeOrderPage_result) + return this.equals((getKeyRecordsTimeOrderPage_result)that); return false; } - public boolean equals(getKeyRecordsTimestr_result that) { + public boolean equals(getKeyRecordsTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -436507,15 +435606,6 @@ public boolean equals(getKeyRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -436539,15 +435629,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getKeyRecordsTimestr_result other) { + public int compareTo(getKeyRecordsTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -436594,16 +435680,6 @@ public int compareTo(getKeyRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -436624,7 +435700,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -436658,14 +435734,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -436691,17 +435759,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestr_resultStandardScheme getScheme() { - return new getKeyRecordsTimestr_resultStandardScheme(); + public getKeyRecordsTimeOrderPage_resultStandardScheme getScheme() { + return new getKeyRecordsTimeOrderPage_resultStandardScheme(); } } - private static class getKeyRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -436714,16 +435782,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4734 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4734.size); - long _key4735; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4736; - for (int _i4737 = 0; _i4737 < _map4734.size; ++_i4737) + org.apache.thrift.protocol.TMap _map4716 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4716.size); + long _key4717; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4718; + for (int _i4719 = 0; _i4719 < _map4716.size; ++_i4719) { - _key4735 = iprot.readI64(); - _val4736 = new com.cinchapi.concourse.thrift.TObject(); - _val4736.read(iprot); - struct.success.put(_key4735, _val4736); + _key4717 = iprot.readI64(); + _val4718 = new com.cinchapi.concourse.thrift.TObject(); + _val4718.read(iprot); + struct.success.put(_key4717, _val4718); } iprot.readMapEnd(); } @@ -436752,22 +435820,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -436780,7 +435839,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -436788,10 +435847,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4738 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4720 : struct.success.entrySet()) { - oprot.writeI64(_iter4738.getKey()); - _iter4738.getValue().write(oprot); + oprot.writeI64(_iter4720.getKey()); + _iter4720.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -436812,28 +435871,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeyRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestr_resultTupleScheme getScheme() { - return new getKeyRecordsTimestr_resultTupleScheme(); + public getKeyRecordsTimeOrderPage_resultTupleScheme getScheme() { + return new getKeyRecordsTimeOrderPage_resultTupleScheme(); } } - private static class getKeyRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -436848,17 +435902,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4739 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4721 : struct.success.entrySet()) { - oprot.writeI64(_iter4739.getKey()); - _iter4739.getValue().write(oprot); + oprot.writeI64(_iter4721.getKey()); + _iter4721.getValue().write(oprot); } } } @@ -436871,27 +435922,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4740 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4740.size); - long _key4741; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4742; - for (int _i4743 = 0; _i4743 < _map4740.size; ++_i4743) + org.apache.thrift.protocol.TMap _map4722 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4722.size); + long _key4723; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4724; + for (int _i4725 = 0; _i4725 < _map4722.size; ++_i4725) { - _key4741 = iprot.readI64(); - _val4742 = new com.cinchapi.concourse.thrift.TObject(); - _val4742.read(iprot); - struct.success.put(_key4741, _val4742); + _key4723 = iprot.readI64(); + _val4724 = new com.cinchapi.concourse.thrift.TObject(); + _val4724.read(iprot); + struct.success.put(_key4723, _val4724); } } struct.setSuccessIsSet(true); @@ -436907,15 +435955,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -436924,24 +435967,22 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrPage_args"); + public static class getKeyRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -436951,10 +435992,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -436976,13 +436016,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -437037,8 +436075,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -437046,17 +436082,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestr_args.class, metaDataMap); } - public getKeyRecordsTimestrPage_args() { + public getKeyRecordsTimestr_args() { } - public getKeyRecordsTimestrPage_args( + public getKeyRecordsTimestr_args( java.lang.String key, java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -437065,7 +436100,6 @@ public getKeyRecordsTimestrPage_args( this.key = key; this.records = records; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -437074,7 +436108,7 @@ public getKeyRecordsTimestrPage_args( /** * Performs a deep copy on other. */ - public getKeyRecordsTimestrPage_args(getKeyRecordsTimestrPage_args other) { + public getKeyRecordsTimestr_args(getKeyRecordsTimestr_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -437085,9 +436119,6 @@ public getKeyRecordsTimestrPage_args(getKeyRecordsTimestrPage_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -437100,8 +436131,8 @@ public getKeyRecordsTimestrPage_args(getKeyRecordsTimestrPage_args other) { } @Override - public getKeyRecordsTimestrPage_args deepCopy() { - return new getKeyRecordsTimestrPage_args(this); + public getKeyRecordsTimestr_args deepCopy() { + return new getKeyRecordsTimestr_args(this); } @Override @@ -437109,7 +436140,6 @@ public void clear() { this.key = null; this.records = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -437120,7 +436150,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -437161,7 +436191,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -437186,7 +436216,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -437206,37 +436236,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -437261,7 +436266,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -437286,7 +436291,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -437333,14 +436338,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -437381,9 +436378,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -437411,8 +436405,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -437425,12 +436417,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimestrPage_args) - return this.equals((getKeyRecordsTimestrPage_args)that); + if (that instanceof getKeyRecordsTimestr_args) + return this.equals((getKeyRecordsTimestr_args)that); return false; } - public boolean equals(getKeyRecordsTimestrPage_args that) { + public boolean equals(getKeyRecordsTimestr_args that) { if (that == null) return false; if (this == that) @@ -437463,15 +436455,6 @@ public boolean equals(getKeyRecordsTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -437518,10 +436501,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -437538,7 +436517,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimestrPage_args other) { + public int compareTo(getKeyRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -437575,16 +436554,6 @@ public int compareTo(getKeyRecordsTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -437636,7 +436605,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestr_args("); boolean first = true; sb.append("key:"); @@ -437663,14 +436632,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -437701,9 +436662,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -437728,17 +436686,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrPage_argsStandardScheme getScheme() { - return new getKeyRecordsTimestrPage_argsStandardScheme(); + public getKeyRecordsTimestr_argsStandardScheme getScheme() { + return new getKeyRecordsTimestr_argsStandardScheme(); } } - private static class getKeyRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -437759,13 +436717,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4744 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4744.size); - long _elem4745; - for (int _i4746 = 0; _i4746 < _list4744.size; ++_i4746) + org.apache.thrift.protocol.TList _list4726 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4726.size); + long _elem4727; + for (int _i4728 = 0; _i4728 < _list4726.size; ++_i4728) { - _elem4745 = iprot.readI64(); - struct.records.add(_elem4745); + _elem4727 = iprot.readI64(); + struct.records.add(_elem4727); } iprot.readListEnd(); } @@ -437782,16 +436740,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -437800,7 +436749,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -437809,7 +436758,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -437829,7 +436778,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -437842,9 +436791,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4747 : struct.records) + for (long _iter4729 : struct.records) { - oprot.writeI64(_iter4747); + oprot.writeI64(_iter4729); } oprot.writeListEnd(); } @@ -437855,11 +436804,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -437881,17 +436825,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes } - private static class getKeyRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrPage_argsTupleScheme getScheme() { - return new getKeyRecordsTimestrPage_argsTupleScheme(); + public getKeyRecordsTimestr_argsTupleScheme getScheme() { + return new getKeyRecordsTimestr_argsTupleScheme(); } } - private static class getKeyRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -437903,37 +436847,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4748 : struct.records) + for (long _iter4730 : struct.records) { - oprot.writeI64(_iter4748); + oprot.writeI64(_iter4730); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -437946,22 +436884,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4749 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4749.size); - long _elem4750; - for (int _i4751 = 0; _i4751 < _list4749.size; ++_i4751) + org.apache.thrift.protocol.TList _list4731 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4731.size); + long _elem4732; + for (int _i4733 = 0; _i4733 < _list4731.size; ++_i4733) { - _elem4750 = iprot.readI64(); - struct.records.add(_elem4750); + _elem4732 = iprot.readI64(); + struct.records.add(_elem4732); } } struct.setRecordsIsSet(true); @@ -437971,21 +436909,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -437997,8 +436930,8 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrPage_result"); + public static class getKeyRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -438006,8 +436939,8 @@ public static class getKeyRecordsTimestrPage_result implements org.apache.thrift private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -438106,13 +437039,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestr_result.class, metaDataMap); } - public getKeyRecordsTimestrPage_result() { + public getKeyRecordsTimestr_result() { } - public getKeyRecordsTimestrPage_result( + public getKeyRecordsTimestr_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -438130,7 +437063,7 @@ public getKeyRecordsTimestrPage_result( /** * Performs a deep copy on other. */ - public getKeyRecordsTimestrPage_result(getKeyRecordsTimestrPage_result other) { + public getKeyRecordsTimestr_result(getKeyRecordsTimestr_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -438161,8 +437094,8 @@ public getKeyRecordsTimestrPage_result(getKeyRecordsTimestrPage_result other) { } @Override - public getKeyRecordsTimestrPage_result deepCopy() { - return new getKeyRecordsTimestrPage_result(this); + public getKeyRecordsTimestr_result deepCopy() { + return new getKeyRecordsTimestr_result(this); } @Override @@ -438190,7 +437123,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -438215,7 +437148,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -438240,7 +437173,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -438265,7 +437198,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -438290,7 +437223,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -438403,12 +437336,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimestrPage_result) - return this.equals((getKeyRecordsTimestrPage_result)that); + if (that instanceof getKeyRecordsTimestr_result) + return this.equals((getKeyRecordsTimestr_result)that); return false; } - public boolean equals(getKeyRecordsTimestrPage_result that) { + public boolean equals(getKeyRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -438490,7 +437423,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimestrPage_result other) { + public int compareTo(getKeyRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -438567,7 +437500,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestr_result("); boolean first = true; sb.append("success:"); @@ -438634,17 +437567,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrPage_resultStandardScheme getScheme() { - return new getKeyRecordsTimestrPage_resultStandardScheme(); + public getKeyRecordsTimestr_resultStandardScheme getScheme() { + return new getKeyRecordsTimestr_resultStandardScheme(); } } - private static class getKeyRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -438657,16 +437590,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4752 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4752.size); - long _key4753; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4754; - for (int _i4755 = 0; _i4755 < _map4752.size; ++_i4755) + org.apache.thrift.protocol.TMap _map4734 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4734.size); + long _key4735; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4736; + for (int _i4737 = 0; _i4737 < _map4734.size; ++_i4737) { - _key4753 = iprot.readI64(); - _val4754 = new com.cinchapi.concourse.thrift.TObject(); - _val4754.read(iprot); - struct.success.put(_key4753, _val4754); + _key4735 = iprot.readI64(); + _val4736 = new com.cinchapi.concourse.thrift.TObject(); + _val4736.read(iprot); + struct.success.put(_key4735, _val4736); } iprot.readMapEnd(); } @@ -438723,7 +437656,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -438731,10 +437664,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4756 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4738 : struct.success.entrySet()) { - oprot.writeI64(_iter4756.getKey()); - _iter4756.getValue().write(oprot); + oprot.writeI64(_iter4738.getKey()); + _iter4738.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -438766,17 +437699,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes } - private static class getKeyRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrPage_resultTupleScheme getScheme() { - return new getKeyRecordsTimestrPage_resultTupleScheme(); + public getKeyRecordsTimestr_resultTupleScheme getScheme() { + return new getKeyRecordsTimestr_resultTupleScheme(); } } - private static class getKeyRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -438798,10 +437731,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4757 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4739 : struct.success.entrySet()) { - oprot.writeI64(_iter4757.getKey()); - _iter4757.getValue().write(oprot); + oprot.writeI64(_iter4739.getKey()); + _iter4739.getValue().write(oprot); } } } @@ -438820,21 +437753,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4758 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4758.size); - long _key4759; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4760; - for (int _i4761 = 0; _i4761 < _map4758.size; ++_i4761) + org.apache.thrift.protocol.TMap _map4740 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4740.size); + long _key4741; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4742; + for (int _i4743 = 0; _i4743 < _map4740.size; ++_i4743) { - _key4759 = iprot.readI64(); - _val4760 = new com.cinchapi.concourse.thrift.TObject(); - _val4760.read(iprot); - struct.success.put(_key4759, _val4760); + _key4741 = iprot.readI64(); + _val4742 = new com.cinchapi.concourse.thrift.TObject(); + _val4742.read(iprot); + struct.success.put(_key4741, _val4742); } } struct.setSuccessIsSet(true); @@ -438867,24 +437800,24 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrOrder_args"); + public static class getKeyRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -438894,7 +437827,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -438919,8 +437852,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -438980,8 +437913,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -438989,17 +437922,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrPage_args.class, metaDataMap); } - public getKeyRecordsTimestrOrder_args() { + public getKeyRecordsTimestrPage_args() { } - public getKeyRecordsTimestrOrder_args( + public getKeyRecordsTimestrPage_args( java.lang.String key, java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -439008,7 +437941,7 @@ public getKeyRecordsTimestrOrder_args( this.key = key; this.records = records; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -439017,7 +437950,7 @@ public getKeyRecordsTimestrOrder_args( /** * Performs a deep copy on other. */ - public getKeyRecordsTimestrOrder_args(getKeyRecordsTimestrOrder_args other) { + public getKeyRecordsTimestrPage_args(getKeyRecordsTimestrPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -439028,8 +437961,8 @@ public getKeyRecordsTimestrOrder_args(getKeyRecordsTimestrOrder_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -439043,8 +437976,8 @@ public getKeyRecordsTimestrOrder_args(getKeyRecordsTimestrOrder_args other) { } @Override - public getKeyRecordsTimestrOrder_args deepCopy() { - return new getKeyRecordsTimestrOrder_args(this); + public getKeyRecordsTimestrPage_args deepCopy() { + return new getKeyRecordsTimestrPage_args(this); } @Override @@ -439052,7 +437985,7 @@ public void clear() { this.key = null; this.records = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -439063,7 +437996,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -439104,7 +438037,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -439129,7 +438062,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -439150,27 +438083,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -439179,7 +438112,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -439204,7 +438137,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -439229,7 +438162,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -439276,11 +438209,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -439324,8 +438257,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -439354,8 +438287,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -439368,12 +438301,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimestrOrder_args) - return this.equals((getKeyRecordsTimestrOrder_args)that); + if (that instanceof getKeyRecordsTimestrPage_args) + return this.equals((getKeyRecordsTimestrPage_args)that); return false; } - public boolean equals(getKeyRecordsTimestrOrder_args that) { + public boolean equals(getKeyRecordsTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -439406,12 +438339,12 @@ public boolean equals(getKeyRecordsTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -439461,9 +438394,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -439481,7 +438414,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimestrOrder_args other) { + public int compareTo(getKeyRecordsTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -439518,12 +438451,12 @@ public int compareTo(getKeyRecordsTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -439579,7 +438512,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrPage_args("); boolean first = true; sb.append("key:"); @@ -439606,11 +438539,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -439644,8 +438577,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -439671,17 +438604,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrOrder_argsStandardScheme getScheme() { - return new getKeyRecordsTimestrOrder_argsStandardScheme(); + public getKeyRecordsTimestrPage_argsStandardScheme getScheme() { + return new getKeyRecordsTimestrPage_argsStandardScheme(); } } - private static class getKeyRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -439702,13 +438635,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4762 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4762.size); - long _elem4763; - for (int _i4764 = 0; _i4764 < _list4762.size; ++_i4764) + org.apache.thrift.protocol.TList _list4744 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4744.size); + long _elem4745; + for (int _i4746 = 0; _i4746 < _list4744.size; ++_i4746) { - _elem4763 = iprot.readI64(); - struct.records.add(_elem4763); + _elem4745 = iprot.readI64(); + struct.records.add(_elem4745); } iprot.readListEnd(); } @@ -439725,11 +438658,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -439772,7 +438705,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -439785,9 +438718,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4765 : struct.records) + for (long _iter4747 : struct.records) { - oprot.writeI64(_iter4765); + oprot.writeI64(_iter4747); } oprot.writeListEnd(); } @@ -439798,9 +438731,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -439824,17 +438757,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes } - private static class getKeyRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrOrder_argsTupleScheme getScheme() { - return new getKeyRecordsTimestrOrder_argsTupleScheme(); + public getKeyRecordsTimestrPage_argsTupleScheme getScheme() { + return new getKeyRecordsTimestrPage_argsTupleScheme(); } } - private static class getKeyRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -439846,7 +438779,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -439865,17 +438798,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4766 : struct.records) + for (long _iter4748 : struct.records) { - oprot.writeI64(_iter4766); + oprot.writeI64(_iter4748); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -439889,7 +438822,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -439898,13 +438831,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4767 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4767.size); - long _elem4768; - for (int _i4769 = 0; _i4769 < _list4767.size; ++_i4769) + org.apache.thrift.protocol.TList _list4749 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4749.size); + long _elem4750; + for (int _i4751 = 0; _i4751 < _list4749.size; ++_i4751) { - _elem4768 = iprot.readI64(); - struct.records.add(_elem4768); + _elem4750 = iprot.readI64(); + struct.records.add(_elem4750); } } struct.setRecordsIsSet(true); @@ -439914,9 +438847,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -439940,8 +438873,8 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrOrder_result"); + public static class getKeyRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -439949,8 +438882,8 @@ public static class getKeyRecordsTimestrOrder_result implements org.apache.thrif private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -440049,13 +438982,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrPage_result.class, metaDataMap); } - public getKeyRecordsTimestrOrder_result() { + public getKeyRecordsTimestrPage_result() { } - public getKeyRecordsTimestrOrder_result( + public getKeyRecordsTimestrPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -440073,7 +439006,7 @@ public getKeyRecordsTimestrOrder_result( /** * Performs a deep copy on other. */ - public getKeyRecordsTimestrOrder_result(getKeyRecordsTimestrOrder_result other) { + public getKeyRecordsTimestrPage_result(getKeyRecordsTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -440104,8 +439037,8 @@ public getKeyRecordsTimestrOrder_result(getKeyRecordsTimestrOrder_result other) } @Override - public getKeyRecordsTimestrOrder_result deepCopy() { - return new getKeyRecordsTimestrOrder_result(this); + public getKeyRecordsTimestrPage_result deepCopy() { + return new getKeyRecordsTimestrPage_result(this); } @Override @@ -440133,7 +439066,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -440158,7 +439091,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -440183,7 +439116,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -440208,7 +439141,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -440233,7 +439166,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -440346,12 +439279,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimestrOrder_result) - return this.equals((getKeyRecordsTimestrOrder_result)that); + if (that instanceof getKeyRecordsTimestrPage_result) + return this.equals((getKeyRecordsTimestrPage_result)that); return false; } - public boolean equals(getKeyRecordsTimestrOrder_result that) { + public boolean equals(getKeyRecordsTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -440433,7 +439366,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimestrOrder_result other) { + public int compareTo(getKeyRecordsTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -440510,7 +439443,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -440577,17 +439510,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrOrder_resultStandardScheme getScheme() { - return new getKeyRecordsTimestrOrder_resultStandardScheme(); + public getKeyRecordsTimestrPage_resultStandardScheme getScheme() { + return new getKeyRecordsTimestrPage_resultStandardScheme(); } } - private static class getKeyRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -440600,16 +439533,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4770 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4770.size); - long _key4771; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4772; - for (int _i4773 = 0; _i4773 < _map4770.size; ++_i4773) + org.apache.thrift.protocol.TMap _map4752 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4752.size); + long _key4753; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4754; + for (int _i4755 = 0; _i4755 < _map4752.size; ++_i4755) { - _key4771 = iprot.readI64(); - _val4772 = new com.cinchapi.concourse.thrift.TObject(); - _val4772.read(iprot); - struct.success.put(_key4771, _val4772); + _key4753 = iprot.readI64(); + _val4754 = new com.cinchapi.concourse.thrift.TObject(); + _val4754.read(iprot); + struct.success.put(_key4753, _val4754); } iprot.readMapEnd(); } @@ -440666,7 +439599,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -440674,10 +439607,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4774 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4756 : struct.success.entrySet()) { - oprot.writeI64(_iter4774.getKey()); - _iter4774.getValue().write(oprot); + oprot.writeI64(_iter4756.getKey()); + _iter4756.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -440709,17 +439642,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes } - private static class getKeyRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrOrder_resultTupleScheme getScheme() { - return new getKeyRecordsTimestrOrder_resultTupleScheme(); + public getKeyRecordsTimestrPage_resultTupleScheme getScheme() { + return new getKeyRecordsTimestrPage_resultTupleScheme(); } } - private static class getKeyRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -440741,10 +439674,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4775 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4757 : struct.success.entrySet()) { - oprot.writeI64(_iter4775.getKey()); - _iter4775.getValue().write(oprot); + oprot.writeI64(_iter4757.getKey()); + _iter4757.getValue().write(oprot); } } } @@ -440763,21 +439696,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4776 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4776.size); - long _key4777; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4778; - for (int _i4779 = 0; _i4779 < _map4776.size; ++_i4779) + org.apache.thrift.protocol.TMap _map4758 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4758.size); + long _key4759; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4760; + for (int _i4761 = 0; _i4761 < _map4758.size; ++_i4761) { - _key4777 = iprot.readI64(); - _val4778 = new com.cinchapi.concourse.thrift.TObject(); - _val4778.read(iprot); - struct.success.put(_key4777, _val4778); + _key4759 = iprot.readI64(); + _val4760 = new com.cinchapi.concourse.thrift.TObject(); + _val4760.read(iprot); + struct.success.put(_key4759, _val4760); } } struct.setSuccessIsSet(true); @@ -440810,26 +439743,24 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrOrderPage_args"); + public static class getKeyRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -440840,10 +439771,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -440867,13 +439797,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -440930,8 +439858,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -440939,18 +439865,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrOrder_args.class, metaDataMap); } - public getKeyRecordsTimestrOrderPage_args() { + public getKeyRecordsTimestrOrder_args() { } - public getKeyRecordsTimestrOrderPage_args( + public getKeyRecordsTimestrOrder_args( java.lang.String key, java.util.List records, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -440960,7 +439885,6 @@ public getKeyRecordsTimestrOrderPage_args( this.records = records; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -440969,7 +439893,7 @@ public getKeyRecordsTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyRecordsTimestrOrderPage_args(getKeyRecordsTimestrOrderPage_args other) { + public getKeyRecordsTimestrOrder_args(getKeyRecordsTimestrOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -440983,9 +439907,6 @@ public getKeyRecordsTimestrOrderPage_args(getKeyRecordsTimestrOrderPage_args oth if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -440998,8 +439919,8 @@ public getKeyRecordsTimestrOrderPage_args(getKeyRecordsTimestrOrderPage_args oth } @Override - public getKeyRecordsTimestrOrderPage_args deepCopy() { - return new getKeyRecordsTimestrOrderPage_args(this); + public getKeyRecordsTimestrOrder_args deepCopy() { + return new getKeyRecordsTimestrOrder_args(this); } @Override @@ -441008,7 +439929,6 @@ public void clear() { this.records = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -441019,7 +439939,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyRecordsTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyRecordsTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -441060,7 +439980,7 @@ public java.util.List getRecords() { return this.records; } - public getKeyRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -441085,7 +440005,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -441110,7 +440030,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -441130,37 +440050,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -441185,7 +440080,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -441210,7 +440105,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -441265,14 +440160,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -441316,9 +440203,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -441348,8 +440232,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -441362,12 +440244,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimestrOrderPage_args) - return this.equals((getKeyRecordsTimestrOrderPage_args)that); + if (that instanceof getKeyRecordsTimestrOrder_args) + return this.equals((getKeyRecordsTimestrOrder_args)that); return false; } - public boolean equals(getKeyRecordsTimestrOrderPage_args that) { + public boolean equals(getKeyRecordsTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -441409,15 +440291,6 @@ public boolean equals(getKeyRecordsTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -441468,10 +440341,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -441488,7 +440357,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimestrOrderPage_args other) { + public int compareTo(getKeyRecordsTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -441535,16 +440404,6 @@ public int compareTo(getKeyRecordsTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -441596,7 +440455,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrOrder_args("); boolean first = true; sb.append("key:"); @@ -441631,14 +440490,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -441672,9 +440523,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -441699,17 +440547,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrOrderPage_argsStandardScheme getScheme() { - return new getKeyRecordsTimestrOrderPage_argsStandardScheme(); + public getKeyRecordsTimestrOrder_argsStandardScheme getScheme() { + return new getKeyRecordsTimestrOrder_argsStandardScheme(); } } - private static class getKeyRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -441730,13 +440578,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4780 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4780.size); - long _elem4781; - for (int _i4782 = 0; _i4782 < _list4780.size; ++_i4782) + org.apache.thrift.protocol.TList _list4762 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4762.size); + long _elem4763; + for (int _i4764 = 0; _i4764 < _list4762.size; ++_i4764) { - _elem4781 = iprot.readI64(); - struct.records.add(_elem4781); + _elem4763 = iprot.readI64(); + struct.records.add(_elem4763); } iprot.readListEnd(); } @@ -441762,16 +440610,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -441780,7 +440619,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -441789,7 +440628,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -441809,7 +440648,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -441822,9 +440661,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4783 : struct.records) + for (long _iter4765 : struct.records) { - oprot.writeI64(_iter4783); + oprot.writeI64(_iter4765); } oprot.writeListEnd(); } @@ -441840,11 +440679,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -441866,17 +440700,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes } - private static class getKeyRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrOrderPage_argsTupleScheme getScheme() { - return new getKeyRecordsTimestrOrderPage_argsTupleScheme(); + public getKeyRecordsTimestrOrder_argsTupleScheme getScheme() { + return new getKeyRecordsTimestrOrder_argsTupleScheme(); } } - private static class getKeyRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -441891,28 +440725,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4784 : struct.records) + for (long _iter4766 : struct.records) { - oprot.writeI64(_iter4784); + oprot.writeI64(_iter4766); } } } @@ -441922,9 +440753,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -441937,22 +440765,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4785 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4785.size); - long _elem4786; - for (int _i4787 = 0; _i4787 < _list4785.size; ++_i4787) + org.apache.thrift.protocol.TList _list4767 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4767.size); + long _elem4768; + for (int _i4769 = 0; _i4769 < _list4767.size; ++_i4769) { - _elem4786 = iprot.readI64(); - struct.records.add(_elem4786); + _elem4768 = iprot.readI64(); + struct.records.add(_elem4768); } } struct.setRecordsIsSet(true); @@ -441967,21 +440795,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestr struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -441993,8 +440816,8 @@ private static S scheme(org.apache. } } - public static class getKeyRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrOrderPage_result"); + public static class getKeyRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -442002,8 +440825,8 @@ public static class getKeyRecordsTimestrOrderPage_result implements org.apache.t private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -442102,13 +440925,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrOrder_result.class, metaDataMap); } - public getKeyRecordsTimestrOrderPage_result() { + public getKeyRecordsTimestrOrder_result() { } - public getKeyRecordsTimestrOrderPage_result( + public getKeyRecordsTimestrOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -442126,7 +440949,7 @@ public getKeyRecordsTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyRecordsTimestrOrderPage_result(getKeyRecordsTimestrOrderPage_result other) { + public getKeyRecordsTimestrOrder_result(getKeyRecordsTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -442157,8 +440980,8 @@ public getKeyRecordsTimestrOrderPage_result(getKeyRecordsTimestrOrderPage_result } @Override - public getKeyRecordsTimestrOrderPage_result deepCopy() { - return new getKeyRecordsTimestrOrderPage_result(this); + public getKeyRecordsTimestrOrder_result deepCopy() { + return new getKeyRecordsTimestrOrder_result(this); } @Override @@ -442186,7 +441009,7 @@ public java.util.Map getSu return this.success; } - public getKeyRecordsTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyRecordsTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -442211,7 +441034,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -442236,7 +441059,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -442261,7 +441084,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -442286,7 +441109,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -442399,12 +441222,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyRecordsTimestrOrderPage_result) - return this.equals((getKeyRecordsTimestrOrderPage_result)that); + if (that instanceof getKeyRecordsTimestrOrder_result) + return this.equals((getKeyRecordsTimestrOrder_result)that); return false; } - public boolean equals(getKeyRecordsTimestrOrderPage_result that) { + public boolean equals(getKeyRecordsTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -442486,7 +441309,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyRecordsTimestrOrderPage_result other) { + public int compareTo(getKeyRecordsTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -442563,7 +441386,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -442630,17 +441453,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrOrderPage_resultStandardScheme getScheme() { - return new getKeyRecordsTimestrOrderPage_resultStandardScheme(); + public getKeyRecordsTimestrOrder_resultStandardScheme getScheme() { + return new getKeyRecordsTimestrOrder_resultStandardScheme(); } } - private static class getKeyRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -442653,16 +441476,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4788 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map4788.size); - long _key4789; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4790; - for (int _i4791 = 0; _i4791 < _map4788.size; ++_i4791) + org.apache.thrift.protocol.TMap _map4770 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4770.size); + long _key4771; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4772; + for (int _i4773 = 0; _i4773 < _map4770.size; ++_i4773) { - _key4789 = iprot.readI64(); - _val4790 = new com.cinchapi.concourse.thrift.TObject(); - _val4790.read(iprot); - struct.success.put(_key4789, _val4790); + _key4771 = iprot.readI64(); + _val4772 = new com.cinchapi.concourse.thrift.TObject(); + _val4772.read(iprot); + struct.success.put(_key4771, _val4772); } iprot.readMapEnd(); } @@ -442719,7 +441542,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimest } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -442727,10 +441550,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter4792 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4774 : struct.success.entrySet()) { - oprot.writeI64(_iter4792.getKey()); - _iter4792.getValue().write(oprot); + oprot.writeI64(_iter4774.getKey()); + _iter4774.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -442762,17 +441585,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimes } - private static class getKeyRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyRecordsTimestrOrderPage_resultTupleScheme getScheme() { - return new getKeyRecordsTimestrOrderPage_resultTupleScheme(); + public getKeyRecordsTimestrOrder_resultTupleScheme getScheme() { + return new getKeyRecordsTimestrOrder_resultTupleScheme(); } } - private static class getKeyRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -442794,10 +441617,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter4793 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4775 : struct.success.entrySet()) { - oprot.writeI64(_iter4793.getKey()); - _iter4793.getValue().write(oprot); + oprot.writeI64(_iter4775.getKey()); + _iter4775.getValue().write(oprot); } } } @@ -442816,21 +441639,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimest } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4794 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map4794.size); - long _key4795; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4796; - for (int _i4797 = 0; _i4797 < _map4794.size; ++_i4797) + org.apache.thrift.protocol.TMap _map4776 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4776.size); + long _key4777; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4778; + for (int _i4779 = 0; _i4779 < _map4776.size; ++_i4779) { - _key4795 = iprot.readI64(); - _val4796 = new com.cinchapi.concourse.thrift.TObject(); - _val4796.read(iprot); - struct.success.put(_key4795, _val4796); + _key4777 = iprot.readI64(); + _val4778 = new com.cinchapi.concourse.thrift.TObject(); + _val4778.read(iprot); + struct.success.put(_key4777, _val4778); } } struct.setSuccessIsSet(true); @@ -442863,34 +441686,40 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTime_args"); + public static class getKeyRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEYS((short)1, "keys"), + KEY((short)1, "key"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -442906,17 +441735,21 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEYS - return KEYS; + case 1: // KEY + return KEY; case 2: // RECORDS return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -442961,19 +441794,20 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -442981,25 +441815,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrOrderPage_args.class, metaDataMap); } - public getKeysRecordsTime_args() { + public getKeyRecordsTimestrOrderPage_args() { } - public getKeysRecordsTime_args( - java.util.List keys, + public getKeyRecordsTimestrOrderPage_args( + java.lang.String key, java.util.List records, - long timestamp, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; + this.key = key; this.records = records; this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -443008,17 +441845,23 @@ public getKeysRecordsTime_args( /** * Performs a deep copy on other. */ - public getKeysRecordsTime_args(getKeysRecordsTime_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + public getKeyRecordsTimestrOrderPage_args(getKeyRecordsTimestrOrderPage_args other) { + if (other.isSetKey()) { + this.key = other.key; } if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - this.timestamp = other.timestamp; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -443031,59 +441874,44 @@ public getKeysRecordsTime_args(getKeysRecordsTime_args other) { } @Override - public getKeysRecordsTime_args deepCopy() { - return new getKeysRecordsTime_args(this); + public getKeyRecordsTimestrOrderPage_args deepCopy() { + return new getKeyRecordsTimestrOrderPage_args(this); } @Override public void clear() { - this.keys = null; + this.key = null; this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public getKeysRecordsTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public getKeyRecordsTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; + this.key = null; } } @@ -443108,7 +441936,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeyRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -443128,27 +441956,79 @@ public void setRecordsIsSet(boolean value) { } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysRecordsTime_args setTimestamp(long timestamp) { + public getKeyRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeyRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -443156,7 +442036,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -443181,7 +442061,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -443206,7 +442086,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -443229,11 +442109,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; @@ -443249,7 +442129,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -443284,8 +442180,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); case RECORDS: return getRecords(); @@ -443293,6 +442189,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -443314,12 +442216,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); + case KEY: + return isSetKey(); case RECORDS: return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -443332,23 +442238,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTime_args) - return this.equals((getKeysRecordsTime_args)that); + if (that instanceof getKeyRecordsTimestrOrderPage_args) + return this.equals((getKeyRecordsTimestrOrderPage_args)that); return false; } - public boolean equals(getKeysRecordsTime_args that) { + public boolean equals(getKeyRecordsTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } @@ -443361,12 +442267,30 @@ public boolean equals(getKeysRecordsTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -443404,15 +442328,25 @@ public boolean equals(getKeysRecordsTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -443430,19 +442364,19 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTime_args other) { + public int compareTo(getKeyRecordsTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } @@ -443467,6 +442401,26 @@ public int compareTo(getKeysRecordsTime_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -443518,14 +442472,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrOrderPage_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); @@ -443538,7 +442492,27 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -443571,6 +442545,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -443589,25 +442569,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeysRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTime_argsStandardScheme getScheme() { - return new getKeysRecordsTime_argsStandardScheme(); + public getKeyRecordsTimestrOrderPage_argsStandardScheme getScheme() { + return new getKeyRecordsTimestrOrderPage_argsStandardScheme(); } } - private static class getKeysRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -443617,20 +442595,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list4798 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4798.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4799; - for (int _i4800 = 0; _i4800 < _list4798.size; ++_i4800) - { - _elem4799 = iprot.readString(); - struct.keys.add(_elem4799); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -443638,13 +442606,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4801 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4801.size); - long _elem4802; - for (int _i4803 = 0; _i4803 < _list4801.size; ++_i4803) + org.apache.thrift.protocol.TList _list4780 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4780.size); + long _elem4781; + for (int _i4782 = 0; _i4782 < _list4780.size; ++_i4782) { - _elem4802 = iprot.readI64(); - struct.records.add(_elem4802); + _elem4781 = iprot.readI64(); + struct.records.add(_elem4781); } iprot.readListEnd(); } @@ -443654,14 +442622,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -443670,7 +442656,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -443679,7 +442665,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -443699,37 +442685,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4804 : struct.keys) - { - oprot.writeString(_iter4804); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } if (struct.records != null) { oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4805 : struct.records) + for (long _iter4783 : struct.records) { - oprot.writeI64(_iter4805); + oprot.writeI64(_iter4783); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -443751,20 +442742,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTime_argsTupleScheme getScheme() { - return new getKeysRecordsTime_argsTupleScheme(); + public getKeyRecordsTimestrOrderPage_argsTupleScheme getScheme() { + return new getKeyRecordsTimestrOrderPage_argsTupleScheme(); } } - private static class getKeysRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } if (struct.isSetRecords()) { @@ -443773,36 +442764,42 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_ if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4806 : struct.keys) - { - oprot.writeString(_iter4806); - } - } + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); + if (struct.isSetKey()) { + oprot.writeString(struct.key); } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4807 : struct.records) + for (long _iter4784 : struct.records) { - oprot.writeI64(_iter4807); + oprot.writeI64(_iter4784); } } } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -443816,50 +442813,51 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list4808 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4808.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4809; - for (int _i4810 = 0; _i4810 < _list4808.size; ++_i4810) - { - _elem4809 = iprot.readString(); - struct.keys.add(_elem4809); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4811 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4811.size); - long _elem4812; - for (int _i4813 = 0; _i4813 < _list4811.size; ++_i4813) + org.apache.thrift.protocol.TList _list4785 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4785.size); + long _elem4786; + for (int _i4787 = 0; _i4787 < _list4785.size; ++_i4787) { - _elem4812 = iprot.readI64(); - struct.records.add(_elem4812); + _elem4786 = iprot.readI64(); + struct.records.add(_elem4786); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -443871,28 +442869,31 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTime_result"); + public static class getKeyRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyRecordsTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyRecordsTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyRecordsTimestrOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -443916,6 +442917,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -443965,60 +442968,51 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyRecordsTimestrOrderPage_result.class, metaDataMap); } - public getKeysRecordsTime_result() { + public getKeyRecordsTimestrOrderPage_result() { } - public getKeysRecordsTime_result( - java.util.Map> success, + public getKeyRecordsTimestrOrderPage_result( + java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysRecordsTime_result(getKeysRecordsTime_result other) { + public getKeyRecordsTimestrOrderPage_result(getKeyRecordsTimestrOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); + for (java.util.Map.Entry other_element : other.success.entrySet()) { java.lang.Long other_element_key = other_element.getKey(); - java.util.Map other_element_value = other_element.getValue(); + com.cinchapi.concourse.thrift.TObject other_element_value = other_element.getValue(); java.lang.Long __this__success_copy_key = other_element_key; - java.util.Map __this__success_copy_value = new java.util.LinkedHashMap(other_element_value.size()); - for (java.util.Map.Entry other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - com.cinchapi.concourse.thrift.TObject other_element_value_element_value = other_element_value_element.getValue(); - - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; - - com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value); - - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } + com.cinchapi.concourse.thrift.TObject __this__success_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value); __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -444031,13 +443025,16 @@ public getKeysRecordsTime_result(getKeysRecordsTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getKeysRecordsTime_result deepCopy() { - return new getKeysRecordsTime_result(this); + public getKeyRecordsTimestrOrderPage_result deepCopy() { + return new getKeyRecordsTimestrOrderPage_result(this); } @Override @@ -444046,25 +443043,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map val) { + public void putToSuccess(long key, com.cinchapi.concourse.thrift.TObject val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map getSuccess() { return this.success; } - public getKeysRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public getKeyRecordsTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -444089,7 +443087,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -444114,7 +443112,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -444135,11 +443133,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -444159,6 +443157,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getKeyRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -444166,7 +443189,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map)value); } break; @@ -444190,7 +443213,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -444213,6 +443244,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -444233,18 +443267,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTime_result) - return this.equals((getKeysRecordsTime_result)that); + if (that instanceof getKeyRecordsTimestrOrderPage_result) + return this.equals((getKeyRecordsTimestrOrderPage_result)that); return false; } - public boolean equals(getKeysRecordsTime_result that) { + public boolean equals(getKeyRecordsTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -444286,6 +443322,15 @@ public boolean equals(getKeysRecordsTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -444309,11 +443354,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getKeysRecordsTime_result other) { + public int compareTo(getKeyRecordsTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -444360,6 +443409,16 @@ public int compareTo(getKeysRecordsTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -444380,7 +443439,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyRecordsTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -444414,6 +443473,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -444439,17 +443506,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTime_resultStandardScheme getScheme() { - return new getKeysRecordsTime_resultStandardScheme(); + public getKeyRecordsTimestrOrderPage_resultStandardScheme getScheme() { + return new getKeyRecordsTimestrOrderPage_resultStandardScheme(); } } - private static class getKeysRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -444462,28 +443529,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4814 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4814.size); - long _key4815; - @org.apache.thrift.annotation.Nullable java.util.Map _val4816; - for (int _i4817 = 0; _i4817 < _map4814.size; ++_i4817) + org.apache.thrift.protocol.TMap _map4788 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map4788.size); + long _key4789; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4790; + for (int _i4791 = 0; _i4791 < _map4788.size; ++_i4791) { - _key4815 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map4818 = iprot.readMapBegin(); - _val4816 = new java.util.LinkedHashMap(2*_map4818.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4819; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4820; - for (int _i4821 = 0; _i4821 < _map4818.size; ++_i4821) - { - _key4819 = iprot.readString(); - _val4820 = new com.cinchapi.concourse.thrift.TObject(); - _val4820.read(iprot); - _val4816.put(_key4819, _val4820); - } - iprot.readMapEnd(); - } - struct.success.put(_key4815, _val4816); + _key4789 = iprot.readI64(); + _val4790 = new com.cinchapi.concourse.thrift.TObject(); + _val4790.read(iprot); + struct.success.put(_key4789, _val4790); } iprot.readMapEnd(); } @@ -444512,13 +443567,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -444531,26 +443595,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4822 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); + for (java.util.Map.Entry _iter4792 : struct.success.entrySet()) { - oprot.writeI64(_iter4822.getKey()); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4822.getValue().size())); - for (java.util.Map.Entry _iter4823 : _iter4822.getValue().entrySet()) - { - oprot.writeString(_iter4823.getKey()); - _iter4823.getValue().write(oprot); - } - oprot.writeMapEnd(); - } + oprot.writeI64(_iter4792.getKey()); + _iter4792.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -444571,23 +443627,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTime_resultTupleScheme getScheme() { - return new getKeysRecordsTime_resultTupleScheme(); + public getKeyRecordsTimestrOrderPage_resultTupleScheme getScheme() { + return new getKeyRecordsTimestrOrderPage_resultTupleScheme(); } } - private static class getKeysRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -444602,21 +443663,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_ if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4824 : struct.success.entrySet()) + for (java.util.Map.Entry _iter4793 : struct.success.entrySet()) { - oprot.writeI64(_iter4824.getKey()); - { - oprot.writeI32(_iter4824.getValue().size()); - for (java.util.Map.Entry _iter4825 : _iter4824.getValue().entrySet()) - { - oprot.writeString(_iter4825.getKey()); - _iter4825.getValue().write(oprot); - } - } + oprot.writeI64(_iter4793.getKey()); + _iter4793.getValue().write(oprot); } } } @@ -444629,35 +443686,27 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_ if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4826 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4826.size); - long _key4827; - @org.apache.thrift.annotation.Nullable java.util.Map _val4828; - for (int _i4829 = 0; _i4829 < _map4826.size; ++_i4829) + org.apache.thrift.protocol.TMap _map4794 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map4794.size); + long _key4795; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4796; + for (int _i4797 = 0; _i4797 < _map4794.size; ++_i4797) { - _key4827 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map4830 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4828 = new java.util.LinkedHashMap(2*_map4830.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4831; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4832; - for (int _i4833 = 0; _i4833 < _map4830.size; ++_i4833) - { - _key4831 = iprot.readString(); - _val4832 = new com.cinchapi.concourse.thrift.TObject(); - _val4832.read(iprot); - _val4828.put(_key4831, _val4832); - } - } - struct.success.put(_key4827, _val4828); + _key4795 = iprot.readI64(); + _val4796 = new com.cinchapi.concourse.thrift.TObject(); + _val4796.read(iprot); + struct.success.put(_key4795, _val4796); } } struct.setSuccessIsSet(true); @@ -444673,10 +443722,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_r struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -444685,24 +443739,22 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimePage_args"); + public static class getKeysRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -444712,10 +443764,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -444737,13 +443788,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -444801,8 +443850,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -444810,17 +443857,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTime_args.class, metaDataMap); } - public getKeysRecordsTimePage_args() { + public getKeysRecordsTime_args() { } - public getKeysRecordsTimePage_args( + public getKeysRecordsTime_args( java.util.List keys, java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -444830,7 +443876,6 @@ public getKeysRecordsTimePage_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -444839,7 +443884,7 @@ public getKeysRecordsTimePage_args( /** * Performs a deep copy on other. */ - public getKeysRecordsTimePage_args(getKeysRecordsTimePage_args other) { + public getKeysRecordsTime_args(getKeysRecordsTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -444850,9 +443895,6 @@ public getKeysRecordsTimePage_args(getKeysRecordsTimePage_args other) { this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -444865,8 +443907,8 @@ public getKeysRecordsTimePage_args(getKeysRecordsTimePage_args other) { } @Override - public getKeysRecordsTimePage_args deepCopy() { - return new getKeysRecordsTimePage_args(this); + public getKeysRecordsTime_args deepCopy() { + return new getKeysRecordsTime_args(this); } @Override @@ -444875,7 +443917,6 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -444902,7 +443943,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -444943,7 +443984,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -444967,7 +444008,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysRecordsTimePage_args setTimestamp(long timestamp) { + public getKeysRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -444986,37 +444027,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -445041,7 +444057,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -445066,7 +444082,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -445113,14 +444129,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -445161,9 +444169,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -445191,8 +444196,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -445205,12 +444208,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimePage_args) - return this.equals((getKeysRecordsTimePage_args)that); + if (that instanceof getKeysRecordsTime_args) + return this.equals((getKeysRecordsTime_args)that); return false; } - public boolean equals(getKeysRecordsTimePage_args that) { + public boolean equals(getKeysRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -445243,15 +444246,6 @@ public boolean equals(getKeysRecordsTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -445296,10 +444290,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -445316,7 +444306,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimePage_args other) { + public int compareTo(getKeysRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -445353,16 +444343,6 @@ public int compareTo(getKeysRecordsTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -445414,7 +444394,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTime_args("); boolean first = true; sb.append("keys:"); @@ -445437,14 +444417,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -445475,9 +444447,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -445504,17 +444473,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimePage_argsStandardScheme getScheme() { - return new getKeysRecordsTimePage_argsStandardScheme(); + public getKeysRecordsTime_argsStandardScheme getScheme() { + return new getKeysRecordsTime_argsStandardScheme(); } } - private static class getKeysRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -445527,13 +444496,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeP case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4834 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4834.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4835; - for (int _i4836 = 0; _i4836 < _list4834.size; ++_i4836) + org.apache.thrift.protocol.TList _list4798 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4798.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4799; + for (int _i4800 = 0; _i4800 < _list4798.size; ++_i4800) { - _elem4835 = iprot.readString(); - struct.keys.add(_elem4835); + _elem4799 = iprot.readString(); + struct.keys.add(_elem4799); } iprot.readListEnd(); } @@ -445545,13 +444514,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeP case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4837 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4837.size); - long _elem4838; - for (int _i4839 = 0; _i4839 < _list4837.size; ++_i4839) + org.apache.thrift.protocol.TList _list4801 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4801.size); + long _elem4802; + for (int _i4803 = 0; _i4803 < _list4801.size; ++_i4803) { - _elem4838 = iprot.readI64(); - struct.records.add(_elem4838); + _elem4802 = iprot.readI64(); + struct.records.add(_elem4802); } iprot.readListEnd(); } @@ -445568,16 +444537,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -445586,7 +444546,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -445595,7 +444555,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -445615,7 +444575,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -445623,9 +444583,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4840 : struct.keys) + for (java.lang.String _iter4804 : struct.keys) { - oprot.writeString(_iter4840); + oprot.writeString(_iter4804); } oprot.writeListEnd(); } @@ -445635,9 +444595,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4841 : struct.records) + for (long _iter4805 : struct.records) { - oprot.writeI64(_iter4841); + oprot.writeI64(_iter4805); } oprot.writeListEnd(); } @@ -445646,11 +444606,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -445672,17 +444627,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimePage_argsTupleScheme getScheme() { - return new getKeysRecordsTimePage_argsTupleScheme(); + public getKeysRecordsTime_argsTupleScheme getScheme() { + return new getKeysRecordsTime_argsTupleScheme(); } } - private static class getKeysRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -445694,43 +444649,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeP if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4842 : struct.keys) + for (java.lang.String _iter4806 : struct.keys) { - oprot.writeString(_iter4842); + oprot.writeString(_iter4806); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4843 : struct.records) + for (long _iter4807 : struct.records) { - oprot.writeI64(_iter4843); + oprot.writeI64(_iter4807); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -445743,31 +444692,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4844 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4844.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4845; - for (int _i4846 = 0; _i4846 < _list4844.size; ++_i4846) + org.apache.thrift.protocol.TList _list4808 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4808.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4809; + for (int _i4810 = 0; _i4810 < _list4808.size; ++_i4810) { - _elem4845 = iprot.readString(); - struct.keys.add(_elem4845); + _elem4809 = iprot.readString(); + struct.keys.add(_elem4809); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4847 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4847.size); - long _elem4848; - for (int _i4849 = 0; _i4849 < _list4847.size; ++_i4849) + org.apache.thrift.protocol.TList _list4811 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4811.size); + long _elem4812; + for (int _i4813 = 0; _i4813 < _list4811.size; ++_i4813) { - _elem4848 = iprot.readI64(); - struct.records.add(_elem4848); + _elem4812 = iprot.readI64(); + struct.records.add(_elem4812); } } struct.setRecordsIsSet(true); @@ -445777,21 +444726,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePa struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -445803,16 +444747,16 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimePage_result"); + public static class getKeysRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -445907,13 +444851,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTime_result.class, metaDataMap); } - public getKeysRecordsTimePage_result() { + public getKeysRecordsTime_result() { } - public getKeysRecordsTimePage_result( + public getKeysRecordsTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -445929,7 +444873,7 @@ public getKeysRecordsTimePage_result( /** * Performs a deep copy on other. */ - public getKeysRecordsTimePage_result(getKeysRecordsTimePage_result other) { + public getKeysRecordsTime_result(getKeysRecordsTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -445968,8 +444912,8 @@ public getKeysRecordsTimePage_result(getKeysRecordsTimePage_result other) { } @Override - public getKeysRecordsTimePage_result deepCopy() { - return new getKeysRecordsTimePage_result(this); + public getKeysRecordsTime_result deepCopy() { + return new getKeysRecordsTime_result(this); } @Override @@ -445996,7 +444940,7 @@ public java.util.Map> success) { + public getKeysRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -446021,7 +444965,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -446046,7 +444990,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -446071,7 +445015,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -446171,12 +445115,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimePage_result) - return this.equals((getKeysRecordsTimePage_result)that); + if (that instanceof getKeysRecordsTime_result) + return this.equals((getKeysRecordsTime_result)that); return false; } - public boolean equals(getKeysRecordsTimePage_result that) { + public boolean equals(getKeysRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -446245,7 +445189,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimePage_result other) { + public int compareTo(getKeysRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -446312,7 +445256,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTime_result("); boolean first = true; sb.append("success:"); @@ -446371,17 +445315,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimePage_resultStandardScheme getScheme() { - return new getKeysRecordsTimePage_resultStandardScheme(); + public getKeysRecordsTime_resultStandardScheme getScheme() { + return new getKeysRecordsTime_resultStandardScheme(); } } - private static class getKeysRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -446394,28 +445338,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeP case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4850 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4850.size); - long _key4851; - @org.apache.thrift.annotation.Nullable java.util.Map _val4852; - for (int _i4853 = 0; _i4853 < _map4850.size; ++_i4853) + org.apache.thrift.protocol.TMap _map4814 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4814.size); + long _key4815; + @org.apache.thrift.annotation.Nullable java.util.Map _val4816; + for (int _i4817 = 0; _i4817 < _map4814.size; ++_i4817) { - _key4851 = iprot.readI64(); + _key4815 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4854 = iprot.readMapBegin(); - _val4852 = new java.util.LinkedHashMap(2*_map4854.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4855; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4856; - for (int _i4857 = 0; _i4857 < _map4854.size; ++_i4857) + org.apache.thrift.protocol.TMap _map4818 = iprot.readMapBegin(); + _val4816 = new java.util.LinkedHashMap(2*_map4818.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4819; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4820; + for (int _i4821 = 0; _i4821 < _map4818.size; ++_i4821) { - _key4855 = iprot.readString(); - _val4856 = new com.cinchapi.concourse.thrift.TObject(); - _val4856.read(iprot); - _val4852.put(_key4855, _val4856); + _key4819 = iprot.readString(); + _val4820 = new com.cinchapi.concourse.thrift.TObject(); + _val4820.read(iprot); + _val4816.put(_key4819, _val4820); } iprot.readMapEnd(); } - struct.success.put(_key4851, _val4852); + struct.success.put(_key4815, _val4816); } iprot.readMapEnd(); } @@ -446463,7 +445407,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -446471,15 +445415,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4858 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4822 : struct.success.entrySet()) { - oprot.writeI64(_iter4858.getKey()); + oprot.writeI64(_iter4822.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4858.getValue().size())); - for (java.util.Map.Entry _iter4859 : _iter4858.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4822.getValue().size())); + for (java.util.Map.Entry _iter4823 : _iter4822.getValue().entrySet()) { - oprot.writeString(_iter4859.getKey()); - _iter4859.getValue().write(oprot); + oprot.writeString(_iter4823.getKey()); + _iter4823.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -446509,17 +445453,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimePage_resultTupleScheme getScheme() { - return new getKeysRecordsTimePage_resultTupleScheme(); + public getKeysRecordsTime_resultTupleScheme getScheme() { + return new getKeysRecordsTime_resultTupleScheme(); } } - private static class getKeysRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -446538,15 +445482,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeP if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4860 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4824 : struct.success.entrySet()) { - oprot.writeI64(_iter4860.getKey()); + oprot.writeI64(_iter4824.getKey()); { - oprot.writeI32(_iter4860.getValue().size()); - for (java.util.Map.Entry _iter4861 : _iter4860.getValue().entrySet()) + oprot.writeI32(_iter4824.getValue().size()); + for (java.util.Map.Entry _iter4825 : _iter4824.getValue().entrySet()) { - oprot.writeString(_iter4861.getKey()); - _iter4861.getValue().write(oprot); + oprot.writeString(_iter4825.getKey()); + _iter4825.getValue().write(oprot); } } } @@ -446564,32 +445508,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4862 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4862.size); - long _key4863; - @org.apache.thrift.annotation.Nullable java.util.Map _val4864; - for (int _i4865 = 0; _i4865 < _map4862.size; ++_i4865) + org.apache.thrift.protocol.TMap _map4826 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4826.size); + long _key4827; + @org.apache.thrift.annotation.Nullable java.util.Map _val4828; + for (int _i4829 = 0; _i4829 < _map4826.size; ++_i4829) { - _key4863 = iprot.readI64(); + _key4827 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4866 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4864 = new java.util.LinkedHashMap(2*_map4866.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4867; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4868; - for (int _i4869 = 0; _i4869 < _map4866.size; ++_i4869) + org.apache.thrift.protocol.TMap _map4830 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4828 = new java.util.LinkedHashMap(2*_map4830.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4831; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4832; + for (int _i4833 = 0; _i4833 < _map4830.size; ++_i4833) { - _key4867 = iprot.readString(); - _val4868 = new com.cinchapi.concourse.thrift.TObject(); - _val4868.read(iprot); - _val4864.put(_key4867, _val4868); + _key4831 = iprot.readString(); + _val4832 = new com.cinchapi.concourse.thrift.TObject(); + _val4832.read(iprot); + _val4828.put(_key4831, _val4832); } } - struct.success.put(_key4863, _val4864); + struct.success.put(_key4827, _val4828); } } struct.setSuccessIsSet(true); @@ -446617,24 +445561,24 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimeOrder_args"); + public static class getKeysRecordsTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimePage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -446644,7 +445588,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -446669,8 +445613,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -446733,8 +445677,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -446742,17 +445686,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimePage_args.class, metaDataMap); } - public getKeysRecordsTimeOrder_args() { + public getKeysRecordsTimePage_args() { } - public getKeysRecordsTimeOrder_args( + public getKeysRecordsTimePage_args( java.util.List keys, java.util.List records, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -446762,7 +445706,7 @@ public getKeysRecordsTimeOrder_args( this.records = records; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -446771,7 +445715,7 @@ public getKeysRecordsTimeOrder_args( /** * Performs a deep copy on other. */ - public getKeysRecordsTimeOrder_args(getKeysRecordsTimeOrder_args other) { + public getKeysRecordsTimePage_args(getKeysRecordsTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -446782,8 +445726,8 @@ public getKeysRecordsTimeOrder_args(getKeysRecordsTimeOrder_args other) { this.records = __this__records; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -446797,8 +445741,8 @@ public getKeysRecordsTimeOrder_args(getKeysRecordsTimeOrder_args other) { } @Override - public getKeysRecordsTimeOrder_args deepCopy() { - return new getKeysRecordsTimeOrder_args(this); + public getKeysRecordsTimePage_args deepCopy() { + return new getKeysRecordsTimePage_args(this); } @Override @@ -446807,7 +445751,7 @@ public void clear() { this.records = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -446834,7 +445778,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -446875,7 +445819,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsTimePage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -446899,7 +445843,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysRecordsTimeOrder_args setTimestamp(long timestamp) { + public getKeysRecordsTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -446919,27 +445863,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysRecordsTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -446948,7 +445892,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -446973,7 +445917,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -446998,7 +445942,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -447045,11 +445989,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -447093,8 +446037,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -447123,8 +446067,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -447137,12 +446081,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimeOrder_args) - return this.equals((getKeysRecordsTimeOrder_args)that); + if (that instanceof getKeysRecordsTimePage_args) + return this.equals((getKeysRecordsTimePage_args)that); return false; } - public boolean equals(getKeysRecordsTimeOrder_args that) { + public boolean equals(getKeysRecordsTimePage_args that) { if (that == null) return false; if (this == that) @@ -447175,12 +446119,12 @@ public boolean equals(getKeysRecordsTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -447228,9 +446172,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -447248,7 +446192,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimeOrder_args other) { + public int compareTo(getKeysRecordsTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -447285,12 +446229,12 @@ public int compareTo(getKeysRecordsTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -447346,7 +446290,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimePage_args("); boolean first = true; sb.append("keys:"); @@ -447369,11 +446313,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -447407,8 +446351,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -447436,17 +446380,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimeOrder_argsStandardScheme getScheme() { - return new getKeysRecordsTimeOrder_argsStandardScheme(); + public getKeysRecordsTimePage_argsStandardScheme getScheme() { + return new getKeysRecordsTimePage_argsStandardScheme(); } } - private static class getKeysRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -447459,13 +446403,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4870 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4870.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4871; - for (int _i4872 = 0; _i4872 < _list4870.size; ++_i4872) + org.apache.thrift.protocol.TList _list4834 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4834.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4835; + for (int _i4836 = 0; _i4836 < _list4834.size; ++_i4836) { - _elem4871 = iprot.readString(); - struct.keys.add(_elem4871); + _elem4835 = iprot.readString(); + struct.keys.add(_elem4835); } iprot.readListEnd(); } @@ -447477,13 +446421,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4873 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4873.size); - long _elem4874; - for (int _i4875 = 0; _i4875 < _list4873.size; ++_i4875) + org.apache.thrift.protocol.TList _list4837 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4837.size); + long _elem4838; + for (int _i4839 = 0; _i4839 < _list4837.size; ++_i4839) { - _elem4874 = iprot.readI64(); - struct.records.add(_elem4874); + _elem4838 = iprot.readI64(); + struct.records.add(_elem4838); } iprot.readListEnd(); } @@ -447500,11 +446444,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -447547,7 +446491,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -447555,9 +446499,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4876 : struct.keys) + for (java.lang.String _iter4840 : struct.keys) { - oprot.writeString(_iter4876); + oprot.writeString(_iter4840); } oprot.writeListEnd(); } @@ -447567,9 +446511,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4877 : struct.records) + for (long _iter4841 : struct.records) { - oprot.writeI64(_iter4877); + oprot.writeI64(_iter4841); } oprot.writeListEnd(); } @@ -447578,9 +446522,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -447604,17 +446548,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimeOrder_argsTupleScheme getScheme() { - return new getKeysRecordsTimeOrder_argsTupleScheme(); + public getKeysRecordsTimePage_argsTupleScheme getScheme() { + return new getKeysRecordsTimePage_argsTupleScheme(); } } - private static class getKeysRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -447626,7 +446570,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -447642,26 +446586,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4878 : struct.keys) + for (java.lang.String _iter4842 : struct.keys) { - oprot.writeString(_iter4878); + oprot.writeString(_iter4842); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4879 : struct.records) + for (long _iter4843 : struct.records) { - oprot.writeI64(_iter4879); + oprot.writeI64(_iter4843); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -447675,31 +446619,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4880 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4880.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4881; - for (int _i4882 = 0; _i4882 < _list4880.size; ++_i4882) + org.apache.thrift.protocol.TList _list4844 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4844.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4845; + for (int _i4846 = 0; _i4846 < _list4844.size; ++_i4846) { - _elem4881 = iprot.readString(); - struct.keys.add(_elem4881); + _elem4845 = iprot.readString(); + struct.keys.add(_elem4845); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4883 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4883.size); - long _elem4884; - for (int _i4885 = 0; _i4885 < _list4883.size; ++_i4885) + org.apache.thrift.protocol.TList _list4847 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4847.size); + long _elem4848; + for (int _i4849 = 0; _i4849 < _list4847.size; ++_i4849) { - _elem4884 = iprot.readI64(); - struct.records.add(_elem4884); + _elem4848 = iprot.readI64(); + struct.records.add(_elem4848); } } struct.setRecordsIsSet(true); @@ -447709,9 +446653,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOr struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -447735,16 +446679,16 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimeOrder_result"); + public static class getKeysRecordsTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -447839,13 +446783,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimePage_result.class, metaDataMap); } - public getKeysRecordsTimeOrder_result() { + public getKeysRecordsTimePage_result() { } - public getKeysRecordsTimeOrder_result( + public getKeysRecordsTimePage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -447861,7 +446805,7 @@ public getKeysRecordsTimeOrder_result( /** * Performs a deep copy on other. */ - public getKeysRecordsTimeOrder_result(getKeysRecordsTimeOrder_result other) { + public getKeysRecordsTimePage_result(getKeysRecordsTimePage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -447900,8 +446844,8 @@ public getKeysRecordsTimeOrder_result(getKeysRecordsTimeOrder_result other) { } @Override - public getKeysRecordsTimeOrder_result deepCopy() { - return new getKeysRecordsTimeOrder_result(this); + public getKeysRecordsTimePage_result deepCopy() { + return new getKeysRecordsTimePage_result(this); } @Override @@ -447928,7 +446872,7 @@ public java.util.Map> success) { + public getKeysRecordsTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -447953,7 +446897,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -447978,7 +446922,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -448003,7 +446947,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecordsTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -448103,12 +447047,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimeOrder_result) - return this.equals((getKeysRecordsTimeOrder_result)that); + if (that instanceof getKeysRecordsTimePage_result) + return this.equals((getKeysRecordsTimePage_result)that); return false; } - public boolean equals(getKeysRecordsTimeOrder_result that) { + public boolean equals(getKeysRecordsTimePage_result that) { if (that == null) return false; if (this == that) @@ -448177,7 +447121,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimeOrder_result other) { + public int compareTo(getKeysRecordsTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -448244,7 +447188,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimePage_result("); boolean first = true; sb.append("success:"); @@ -448303,17 +447247,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimeOrder_resultStandardScheme getScheme() { - return new getKeysRecordsTimeOrder_resultStandardScheme(); + public getKeysRecordsTimePage_resultStandardScheme getScheme() { + return new getKeysRecordsTimePage_resultStandardScheme(); } } - private static class getKeysRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -448326,28 +447270,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4886 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4886.size); - long _key4887; - @org.apache.thrift.annotation.Nullable java.util.Map _val4888; - for (int _i4889 = 0; _i4889 < _map4886.size; ++_i4889) + org.apache.thrift.protocol.TMap _map4850 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4850.size); + long _key4851; + @org.apache.thrift.annotation.Nullable java.util.Map _val4852; + for (int _i4853 = 0; _i4853 < _map4850.size; ++_i4853) { - _key4887 = iprot.readI64(); + _key4851 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4890 = iprot.readMapBegin(); - _val4888 = new java.util.LinkedHashMap(2*_map4890.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4891; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4892; - for (int _i4893 = 0; _i4893 < _map4890.size; ++_i4893) + org.apache.thrift.protocol.TMap _map4854 = iprot.readMapBegin(); + _val4852 = new java.util.LinkedHashMap(2*_map4854.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4855; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4856; + for (int _i4857 = 0; _i4857 < _map4854.size; ++_i4857) { - _key4891 = iprot.readString(); - _val4892 = new com.cinchapi.concourse.thrift.TObject(); - _val4892.read(iprot); - _val4888.put(_key4891, _val4892); + _key4855 = iprot.readString(); + _val4856 = new com.cinchapi.concourse.thrift.TObject(); + _val4856.read(iprot); + _val4852.put(_key4855, _val4856); } iprot.readMapEnd(); } - struct.success.put(_key4887, _val4888); + struct.success.put(_key4851, _val4852); } iprot.readMapEnd(); } @@ -448395,7 +447339,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -448403,15 +447347,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4894 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4858 : struct.success.entrySet()) { - oprot.writeI64(_iter4894.getKey()); + oprot.writeI64(_iter4858.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4894.getValue().size())); - for (java.util.Map.Entry _iter4895 : _iter4894.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4858.getValue().size())); + for (java.util.Map.Entry _iter4859 : _iter4858.getValue().entrySet()) { - oprot.writeString(_iter4895.getKey()); - _iter4895.getValue().write(oprot); + oprot.writeString(_iter4859.getKey()); + _iter4859.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -448441,17 +447385,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimeOrder_resultTupleScheme getScheme() { - return new getKeysRecordsTimeOrder_resultTupleScheme(); + public getKeysRecordsTimePage_resultTupleScheme getScheme() { + return new getKeysRecordsTimePage_resultTupleScheme(); } } - private static class getKeysRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -448470,15 +447414,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4896 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4860 : struct.success.entrySet()) { - oprot.writeI64(_iter4896.getKey()); + oprot.writeI64(_iter4860.getKey()); { - oprot.writeI32(_iter4896.getValue().size()); - for (java.util.Map.Entry _iter4897 : _iter4896.getValue().entrySet()) + oprot.writeI32(_iter4860.getValue().size()); + for (java.util.Map.Entry _iter4861 : _iter4860.getValue().entrySet()) { - oprot.writeString(_iter4897.getKey()); - _iter4897.getValue().write(oprot); + oprot.writeString(_iter4861.getKey()); + _iter4861.getValue().write(oprot); } } } @@ -448496,32 +447440,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4898 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4898.size); - long _key4899; - @org.apache.thrift.annotation.Nullable java.util.Map _val4900; - for (int _i4901 = 0; _i4901 < _map4898.size; ++_i4901) + org.apache.thrift.protocol.TMap _map4862 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4862.size); + long _key4863; + @org.apache.thrift.annotation.Nullable java.util.Map _val4864; + for (int _i4865 = 0; _i4865 < _map4862.size; ++_i4865) { - _key4899 = iprot.readI64(); + _key4863 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4902 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4900 = new java.util.LinkedHashMap(2*_map4902.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4903; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4904; - for (int _i4905 = 0; _i4905 < _map4902.size; ++_i4905) + org.apache.thrift.protocol.TMap _map4866 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4864 = new java.util.LinkedHashMap(2*_map4866.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4867; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4868; + for (int _i4869 = 0; _i4869 < _map4866.size; ++_i4869) { - _key4903 = iprot.readString(); - _val4904 = new com.cinchapi.concourse.thrift.TObject(); - _val4904.read(iprot); - _val4900.put(_key4903, _val4904); + _key4867 = iprot.readString(); + _val4868 = new com.cinchapi.concourse.thrift.TObject(); + _val4868.read(iprot); + _val4864.put(_key4867, _val4868); } } - struct.success.put(_key4899, _val4900); + struct.success.put(_key4863, _val4864); } } struct.setSuccessIsSet(true); @@ -448549,26 +447493,24 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimeOrderPage_args"); + public static class getKeysRecordsTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -448579,10 +447521,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -448606,13 +447547,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -448672,8 +447611,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -448681,18 +447618,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimeOrder_args.class, metaDataMap); } - public getKeysRecordsTimeOrderPage_args() { + public getKeysRecordsTimeOrder_args() { } - public getKeysRecordsTimeOrderPage_args( + public getKeysRecordsTimeOrder_args( java.util.List keys, java.util.List records, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -448703,7 +447639,6 @@ public getKeysRecordsTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -448712,7 +447647,7 @@ public getKeysRecordsTimeOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysRecordsTimeOrderPage_args(getKeysRecordsTimeOrderPage_args other) { + public getKeysRecordsTimeOrder_args(getKeysRecordsTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -448726,9 +447661,6 @@ public getKeysRecordsTimeOrderPage_args(getKeysRecordsTimeOrderPage_args other) if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -448741,8 +447673,8 @@ public getKeysRecordsTimeOrderPage_args(getKeysRecordsTimeOrderPage_args other) } @Override - public getKeysRecordsTimeOrderPage_args deepCopy() { - return new getKeysRecordsTimeOrderPage_args(this); + public getKeysRecordsTimeOrder_args deepCopy() { + return new getKeysRecordsTimeOrder_args(this); } @Override @@ -448752,7 +447684,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -448779,7 +447710,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -448820,7 +447751,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsTimeOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -448844,7 +447775,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysRecordsTimeOrderPage_args setTimestamp(long timestamp) { + public getKeysRecordsTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -448868,7 +447799,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysRecordsTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -448888,37 +447819,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -448943,7 +447849,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -448968,7 +447874,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -449023,14 +447929,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -449074,9 +447972,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -449106,8 +448001,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -449120,12 +448013,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimeOrderPage_args) - return this.equals((getKeysRecordsTimeOrderPage_args)that); + if (that instanceof getKeysRecordsTimeOrder_args) + return this.equals((getKeysRecordsTimeOrder_args)that); return false; } - public boolean equals(getKeysRecordsTimeOrderPage_args that) { + public boolean equals(getKeysRecordsTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -449167,15 +448060,6 @@ public boolean equals(getKeysRecordsTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -449224,10 +448108,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -449244,7 +448124,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimeOrderPage_args other) { + public int compareTo(getKeysRecordsTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -449291,16 +448171,6 @@ public int compareTo(getKeysRecordsTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -449352,7 +448222,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimeOrder_args("); boolean first = true; sb.append("keys:"); @@ -449383,14 +448253,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -449424,9 +448286,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -449453,17 +448312,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimeOrderPage_argsStandardScheme getScheme() { - return new getKeysRecordsTimeOrderPage_argsStandardScheme(); + public getKeysRecordsTimeOrder_argsStandardScheme getScheme() { + return new getKeysRecordsTimeOrder_argsStandardScheme(); } } - private static class getKeysRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -449476,13 +448335,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4906 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4906.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4907; - for (int _i4908 = 0; _i4908 < _list4906.size; ++_i4908) + org.apache.thrift.protocol.TList _list4870 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4870.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4871; + for (int _i4872 = 0; _i4872 < _list4870.size; ++_i4872) { - _elem4907 = iprot.readString(); - struct.keys.add(_elem4907); + _elem4871 = iprot.readString(); + struct.keys.add(_elem4871); } iprot.readListEnd(); } @@ -449494,13 +448353,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4909 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4909.size); - long _elem4910; - for (int _i4911 = 0; _i4911 < _list4909.size; ++_i4911) + org.apache.thrift.protocol.TList _list4873 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4873.size); + long _elem4874; + for (int _i4875 = 0; _i4875 < _list4873.size; ++_i4875) { - _elem4910 = iprot.readI64(); - struct.records.add(_elem4910); + _elem4874 = iprot.readI64(); + struct.records.add(_elem4874); } iprot.readListEnd(); } @@ -449526,16 +448385,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -449544,7 +448394,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -449553,7 +448403,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -449573,7 +448423,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -449581,9 +448431,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4912 : struct.keys) + for (java.lang.String _iter4876 : struct.keys) { - oprot.writeString(_iter4912); + oprot.writeString(_iter4876); } oprot.writeListEnd(); } @@ -449593,9 +448443,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4913 : struct.records) + for (long _iter4877 : struct.records) { - oprot.writeI64(_iter4913); + oprot.writeI64(_iter4877); } oprot.writeListEnd(); } @@ -449609,11 +448459,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -449635,17 +448480,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimeOrderPage_argsTupleScheme getScheme() { - return new getKeysRecordsTimeOrderPage_argsTupleScheme(); + public getKeysRecordsTimeOrder_argsTupleScheme getScheme() { + return new getKeysRecordsTimeOrder_argsTupleScheme(); } } - private static class getKeysRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -449660,34 +448505,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4914 : struct.keys) + for (java.lang.String _iter4878 : struct.keys) { - oprot.writeString(_iter4914); + oprot.writeString(_iter4878); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4915 : struct.records) + for (long _iter4879 : struct.records) { - oprot.writeI64(_iter4915); + oprot.writeI64(_iter4879); } } } @@ -449697,9 +448539,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -449712,31 +448551,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4916 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4916.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4917; - for (int _i4918 = 0; _i4918 < _list4916.size; ++_i4918) + org.apache.thrift.protocol.TList _list4880 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4880.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4881; + for (int _i4882 = 0; _i4882 < _list4880.size; ++_i4882) { - _elem4917 = iprot.readString(); - struct.keys.add(_elem4917); + _elem4881 = iprot.readString(); + struct.keys.add(_elem4881); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4919 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4919.size); - long _elem4920; - for (int _i4921 = 0; _i4921 < _list4919.size; ++_i4921) + org.apache.thrift.protocol.TList _list4883 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4883.size); + long _elem4884; + for (int _i4885 = 0; _i4885 < _list4883.size; ++_i4885) { - _elem4920 = iprot.readI64(); - struct.records.add(_elem4920); + _elem4884 = iprot.readI64(); + struct.records.add(_elem4884); } } struct.setRecordsIsSet(true); @@ -449751,21 +448590,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOr struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -449777,16 +448611,16 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimeOrderPage_result"); + public static class getKeysRecordsTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -449881,13 +448715,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimeOrder_result.class, metaDataMap); } - public getKeysRecordsTimeOrderPage_result() { + public getKeysRecordsTimeOrder_result() { } - public getKeysRecordsTimeOrderPage_result( + public getKeysRecordsTimeOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -449903,7 +448737,7 @@ public getKeysRecordsTimeOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysRecordsTimeOrderPage_result(getKeysRecordsTimeOrderPage_result other) { + public getKeysRecordsTimeOrder_result(getKeysRecordsTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -449942,8 +448776,8 @@ public getKeysRecordsTimeOrderPage_result(getKeysRecordsTimeOrderPage_result oth } @Override - public getKeysRecordsTimeOrderPage_result deepCopy() { - return new getKeysRecordsTimeOrderPage_result(this); + public getKeysRecordsTimeOrder_result deepCopy() { + return new getKeysRecordsTimeOrder_result(this); } @Override @@ -449970,7 +448804,7 @@ public java.util.Map> success) { + public getKeysRecordsTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -449995,7 +448829,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -450020,7 +448854,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -450045,7 +448879,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecordsTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -450145,12 +448979,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimeOrderPage_result) - return this.equals((getKeysRecordsTimeOrderPage_result)that); + if (that instanceof getKeysRecordsTimeOrder_result) + return this.equals((getKeysRecordsTimeOrder_result)that); return false; } - public boolean equals(getKeysRecordsTimeOrderPage_result that) { + public boolean equals(getKeysRecordsTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -450219,7 +449053,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimeOrderPage_result other) { + public int compareTo(getKeysRecordsTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -450286,7 +449120,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -450345,17 +449179,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimeOrderPage_resultStandardScheme getScheme() { - return new getKeysRecordsTimeOrderPage_resultStandardScheme(); + public getKeysRecordsTimeOrder_resultStandardScheme getScheme() { + return new getKeysRecordsTimeOrder_resultStandardScheme(); } } - private static class getKeysRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -450368,28 +449202,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4922 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4922.size); - long _key4923; - @org.apache.thrift.annotation.Nullable java.util.Map _val4924; - for (int _i4925 = 0; _i4925 < _map4922.size; ++_i4925) + org.apache.thrift.protocol.TMap _map4886 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4886.size); + long _key4887; + @org.apache.thrift.annotation.Nullable java.util.Map _val4888; + for (int _i4889 = 0; _i4889 < _map4886.size; ++_i4889) { - _key4923 = iprot.readI64(); + _key4887 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4926 = iprot.readMapBegin(); - _val4924 = new java.util.LinkedHashMap(2*_map4926.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4927; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4928; - for (int _i4929 = 0; _i4929 < _map4926.size; ++_i4929) + org.apache.thrift.protocol.TMap _map4890 = iprot.readMapBegin(); + _val4888 = new java.util.LinkedHashMap(2*_map4890.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4891; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4892; + for (int _i4893 = 0; _i4893 < _map4890.size; ++_i4893) { - _key4927 = iprot.readString(); - _val4928 = new com.cinchapi.concourse.thrift.TObject(); - _val4928.read(iprot); - _val4924.put(_key4927, _val4928); + _key4891 = iprot.readString(); + _val4892 = new com.cinchapi.concourse.thrift.TObject(); + _val4892.read(iprot); + _val4888.put(_key4891, _val4892); } iprot.readMapEnd(); } - struct.success.put(_key4923, _val4924); + struct.success.put(_key4887, _val4888); } iprot.readMapEnd(); } @@ -450437,7 +449271,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -450445,15 +449279,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4930 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4894 : struct.success.entrySet()) { - oprot.writeI64(_iter4930.getKey()); + oprot.writeI64(_iter4894.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4930.getValue().size())); - for (java.util.Map.Entry _iter4931 : _iter4930.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4894.getValue().size())); + for (java.util.Map.Entry _iter4895 : _iter4894.getValue().entrySet()) { - oprot.writeString(_iter4931.getKey()); - _iter4931.getValue().write(oprot); + oprot.writeString(_iter4895.getKey()); + _iter4895.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -450483,17 +449317,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimeOrderPage_resultTupleScheme getScheme() { - return new getKeysRecordsTimeOrderPage_resultTupleScheme(); + public getKeysRecordsTimeOrder_resultTupleScheme getScheme() { + return new getKeysRecordsTimeOrder_resultTupleScheme(); } } - private static class getKeysRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -450512,15 +449346,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4932 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4896 : struct.success.entrySet()) { - oprot.writeI64(_iter4932.getKey()); + oprot.writeI64(_iter4896.getKey()); { - oprot.writeI32(_iter4932.getValue().size()); - for (java.util.Map.Entry _iter4933 : _iter4932.getValue().entrySet()) + oprot.writeI32(_iter4896.getValue().size()); + for (java.util.Map.Entry _iter4897 : _iter4896.getValue().entrySet()) { - oprot.writeString(_iter4933.getKey()); - _iter4933.getValue().write(oprot); + oprot.writeString(_iter4897.getKey()); + _iter4897.getValue().write(oprot); } } } @@ -450538,32 +449372,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4934 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4934.size); - long _key4935; - @org.apache.thrift.annotation.Nullable java.util.Map _val4936; - for (int _i4937 = 0; _i4937 < _map4934.size; ++_i4937) + org.apache.thrift.protocol.TMap _map4898 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4898.size); + long _key4899; + @org.apache.thrift.annotation.Nullable java.util.Map _val4900; + for (int _i4901 = 0; _i4901 < _map4898.size; ++_i4901) { - _key4935 = iprot.readI64(); + _key4899 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4938 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4936 = new java.util.LinkedHashMap(2*_map4938.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4939; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4940; - for (int _i4941 = 0; _i4941 < _map4938.size; ++_i4941) + org.apache.thrift.protocol.TMap _map4902 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4900 = new java.util.LinkedHashMap(2*_map4902.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4903; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4904; + for (int _i4905 = 0; _i4905 < _map4902.size; ++_i4905) { - _key4939 = iprot.readString(); - _val4940 = new com.cinchapi.concourse.thrift.TObject(); - _val4940.read(iprot); - _val4936.put(_key4939, _val4940); + _key4903 = iprot.readString(); + _val4904 = new com.cinchapi.concourse.thrift.TObject(); + _val4904.read(iprot); + _val4900.put(_key4903, _val4904); } } - struct.success.put(_key4935, _val4936); + struct.success.put(_key4899, _val4900); } } struct.setSuccessIsSet(true); @@ -450591,22 +449425,26 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestr_args"); + public static class getKeysRecordsTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -450616,9 +449454,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -450640,11 +449480,15 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -450689,6 +449533,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -450699,7 +449545,11 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -450707,16 +449557,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimeOrderPage_args.class, metaDataMap); } - public getKeysRecordsTimestr_args() { + public getKeysRecordsTimeOrderPage_args() { } - public getKeysRecordsTimestr_args( + public getKeysRecordsTimeOrderPage_args( java.util.List keys, java.util.List records, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -450725,6 +449577,9 @@ public getKeysRecordsTimestr_args( this.keys = keys; this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -450733,7 +449588,8 @@ public getKeysRecordsTimestr_args( /** * Performs a deep copy on other. */ - public getKeysRecordsTimestr_args(getKeysRecordsTimestr_args other) { + public getKeysRecordsTimeOrderPage_args(getKeysRecordsTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -450742,8 +449598,12 @@ public getKeysRecordsTimestr_args(getKeysRecordsTimestr_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -450757,15 +449617,18 @@ public getKeysRecordsTimestr_args(getKeysRecordsTimestr_args other) { } @Override - public getKeysRecordsTimestr_args deepCopy() { - return new getKeysRecordsTimestr_args(this); + public getKeysRecordsTimeOrderPage_args deepCopy() { + return new getKeysRecordsTimeOrderPage_args(this); } @Override public void clear() { this.keys = null; this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -450792,7 +449655,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -450833,7 +449696,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsTimeOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -450853,28 +449716,76 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getKeysRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysRecordsTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeysRecordsTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysRecordsTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -450883,7 +449794,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -450908,7 +449819,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -450933,7 +449844,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -450976,7 +449887,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -451020,6 +449947,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -451047,6 +449980,10 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -451059,12 +449996,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimestr_args) - return this.equals((getKeysRecordsTimestr_args)that); + if (that instanceof getKeysRecordsTimeOrderPage_args) + return this.equals((getKeysRecordsTimeOrderPage_args)that); return false; } - public boolean equals(getKeysRecordsTimestr_args that) { + public boolean equals(getKeysRecordsTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -451088,12 +450025,30 @@ public boolean equals(getKeysRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -451139,9 +450094,15 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -451159,7 +450120,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimestr_args other) { + public int compareTo(getKeysRecordsTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -451196,6 +450157,26 @@ public int compareTo(getKeysRecordsTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -451247,7 +450228,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimeOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -451267,10 +450248,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -451304,6 +450297,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -451322,23 +450321,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeysRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestr_argsStandardScheme getScheme() { - return new getKeysRecordsTimestr_argsStandardScheme(); + public getKeysRecordsTimeOrderPage_argsStandardScheme getScheme() { + return new getKeysRecordsTimeOrderPage_argsStandardScheme(); } } - private static class getKeysRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -451351,13 +450352,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4942 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4942.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4943; - for (int _i4944 = 0; _i4944 < _list4942.size; ++_i4944) + org.apache.thrift.protocol.TList _list4906 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4906.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4907; + for (int _i4908 = 0; _i4908 < _list4906.size; ++_i4908) { - _elem4943 = iprot.readString(); - struct.keys.add(_elem4943); + _elem4907 = iprot.readString(); + struct.keys.add(_elem4907); } iprot.readListEnd(); } @@ -451369,13 +450370,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4945 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4945.size); - long _elem4946; - for (int _i4947 = 0; _i4947 < _list4945.size; ++_i4947) + org.apache.thrift.protocol.TList _list4909 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4909.size); + long _elem4910; + for (int _i4911 = 0; _i4911 < _list4909.size; ++_i4911) { - _elem4946 = iprot.readI64(); - struct.records.add(_elem4946); + _elem4910 = iprot.readI64(); + struct.records.add(_elem4910); } iprot.readListEnd(); } @@ -451385,14 +450386,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -451401,7 +450420,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -451410,7 +450429,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -451430,7 +450449,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -451438,9 +450457,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4948 : struct.keys) + for (java.lang.String _iter4912 : struct.keys) { - oprot.writeString(_iter4948); + oprot.writeString(_iter4912); } oprot.writeListEnd(); } @@ -451450,17 +450469,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4949 : struct.records) + for (long _iter4913 : struct.records) { - oprot.writeI64(_iter4949); + oprot.writeI64(_iter4913); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -451484,17 +450511,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestr_argsTupleScheme getScheme() { - return new getKeysRecordsTimestr_argsTupleScheme(); + public getKeysRecordsTimeOrderPage_argsTupleScheme getScheme() { + return new getKeysRecordsTimeOrderPage_argsTupleScheme(); } } - private static class getKeysRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -451506,36 +450533,48 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4950 : struct.keys) + for (java.lang.String _iter4914 : struct.keys) { - oprot.writeString(_iter4950); + oprot.writeString(_iter4914); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4951 : struct.records) + for (long _iter4915 : struct.records) { - oprot.writeI64(_iter4951); + oprot.writeI64(_iter4915); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -451549,50 +450588,60 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4952 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4952.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4953; - for (int _i4954 = 0; _i4954 < _list4952.size; ++_i4954) + org.apache.thrift.protocol.TList _list4916 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4916.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4917; + for (int _i4918 = 0; _i4918 < _list4916.size; ++_i4918) { - _elem4953 = iprot.readString(); - struct.keys.add(_elem4953); + _elem4917 = iprot.readString(); + struct.keys.add(_elem4917); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4955 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4955.size); - long _elem4956; - for (int _i4957 = 0; _i4957 < _list4955.size; ++_i4957) + org.apache.thrift.protocol.TList _list4919 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4919.size); + long _elem4920; + for (int _i4921 = 0; _i4921 < _list4919.size; ++_i4921) { - _elem4956 = iprot.readI64(); - struct.records.add(_elem4956); + _elem4920 = iprot.readI64(); + struct.records.add(_elem4920); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -451604,31 +450653,28 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestr_result"); + public static class getKeysRecordsTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -451652,8 +450698,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -451711,35 +450755,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimeOrderPage_result.class, metaDataMap); } - public getKeysRecordsTimestr_result() { + public getKeysRecordsTimeOrderPage_result() { } - public getKeysRecordsTimestr_result( + public getKeysRecordsTimeOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysRecordsTimestr_result(getKeysRecordsTimestr_result other) { + public getKeysRecordsTimeOrderPage_result(getKeysRecordsTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -451773,16 +450813,13 @@ public getKeysRecordsTimestr_result(getKeysRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getKeysRecordsTimestr_result deepCopy() { - return new getKeysRecordsTimestr_result(this); + public getKeysRecordsTimeOrderPage_result deepCopy() { + return new getKeysRecordsTimeOrderPage_result(this); } @Override @@ -451791,7 +450828,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -451810,7 +450846,7 @@ public java.util.Map> success) { + public getKeysRecordsTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -451835,7 +450871,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -451860,7 +450896,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -451881,11 +450917,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysRecordsTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -451905,31 +450941,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getKeysRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -451961,15 +450972,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -451992,9 +450995,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -452015,20 +451015,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimestr_result) - return this.equals((getKeysRecordsTimestr_result)that); + if (that instanceof getKeysRecordsTimeOrderPage_result) + return this.equals((getKeysRecordsTimeOrderPage_result)that); return false; } - public boolean equals(getKeysRecordsTimestr_result that) { + public boolean equals(getKeysRecordsTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -452070,15 +451068,6 @@ public boolean equals(getKeysRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -452102,15 +451091,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getKeysRecordsTimestr_result other) { + public int compareTo(getKeysRecordsTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -452157,16 +451142,6 @@ public int compareTo(getKeysRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -452187,7 +451162,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -452221,14 +451196,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -452254,17 +451221,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestr_resultStandardScheme getScheme() { - return new getKeysRecordsTimestr_resultStandardScheme(); + public getKeysRecordsTimeOrderPage_resultStandardScheme getScheme() { + return new getKeysRecordsTimeOrderPage_resultStandardScheme(); } } - private static class getKeysRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -452277,28 +451244,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4958 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4958.size); - long _key4959; - @org.apache.thrift.annotation.Nullable java.util.Map _val4960; - for (int _i4961 = 0; _i4961 < _map4958.size; ++_i4961) + org.apache.thrift.protocol.TMap _map4922 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4922.size); + long _key4923; + @org.apache.thrift.annotation.Nullable java.util.Map _val4924; + for (int _i4925 = 0; _i4925 < _map4922.size; ++_i4925) { - _key4959 = iprot.readI64(); + _key4923 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4962 = iprot.readMapBegin(); - _val4960 = new java.util.LinkedHashMap(2*_map4962.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4963; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4964; - for (int _i4965 = 0; _i4965 < _map4962.size; ++_i4965) + org.apache.thrift.protocol.TMap _map4926 = iprot.readMapBegin(); + _val4924 = new java.util.LinkedHashMap(2*_map4926.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4927; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4928; + for (int _i4929 = 0; _i4929 < _map4926.size; ++_i4929) { - _key4963 = iprot.readString(); - _val4964 = new com.cinchapi.concourse.thrift.TObject(); - _val4964.read(iprot); - _val4960.put(_key4963, _val4964); + _key4927 = iprot.readString(); + _val4928 = new com.cinchapi.concourse.thrift.TObject(); + _val4928.read(iprot); + _val4924.put(_key4927, _val4928); } iprot.readMapEnd(); } - struct.success.put(_key4959, _val4960); + struct.success.put(_key4923, _val4924); } iprot.readMapEnd(); } @@ -452327,22 +451294,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -452355,7 +451313,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -452363,15 +451321,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter4966 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4930 : struct.success.entrySet()) { - oprot.writeI64(_iter4966.getKey()); + oprot.writeI64(_iter4930.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4966.getValue().size())); - for (java.util.Map.Entry _iter4967 : _iter4966.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4930.getValue().size())); + for (java.util.Map.Entry _iter4931 : _iter4930.getValue().entrySet()) { - oprot.writeString(_iter4967.getKey()); - _iter4967.getValue().write(oprot); + oprot.writeString(_iter4931.getKey()); + _iter4931.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -452395,28 +451353,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestr_resultTupleScheme getScheme() { - return new getKeysRecordsTimestr_resultTupleScheme(); + public getKeysRecordsTimeOrderPage_resultTupleScheme getScheme() { + return new getKeysRecordsTimeOrderPage_resultTupleScheme(); } } - private static class getKeysRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -452431,22 +451384,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter4968 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4932 : struct.success.entrySet()) { - oprot.writeI64(_iter4968.getKey()); + oprot.writeI64(_iter4932.getKey()); { - oprot.writeI32(_iter4968.getValue().size()); - for (java.util.Map.Entry _iter4969 : _iter4968.getValue().entrySet()) + oprot.writeI32(_iter4932.getValue().size()); + for (java.util.Map.Entry _iter4933 : _iter4932.getValue().entrySet()) { - oprot.writeString(_iter4969.getKey()); - _iter4969.getValue().write(oprot); + oprot.writeString(_iter4933.getKey()); + _iter4933.getValue().write(oprot); } } } @@ -452461,38 +451411,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map4970 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map4970.size); - long _key4971; - @org.apache.thrift.annotation.Nullable java.util.Map _val4972; - for (int _i4973 = 0; _i4973 < _map4970.size; ++_i4973) + org.apache.thrift.protocol.TMap _map4934 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4934.size); + long _key4935; + @org.apache.thrift.annotation.Nullable java.util.Map _val4936; + for (int _i4937 = 0; _i4937 < _map4934.size; ++_i4937) { - _key4971 = iprot.readI64(); + _key4935 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4974 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val4972 = new java.util.LinkedHashMap(2*_map4974.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4975; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4976; - for (int _i4977 = 0; _i4977 < _map4974.size; ++_i4977) + org.apache.thrift.protocol.TMap _map4938 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4936 = new java.util.LinkedHashMap(2*_map4938.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4939; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4940; + for (int _i4941 = 0; _i4941 < _map4938.size; ++_i4941) { - _key4975 = iprot.readString(); - _val4976 = new com.cinchapi.concourse.thrift.TObject(); - _val4976.read(iprot); - _val4972.put(_key4975, _val4976); + _key4939 = iprot.readString(); + _val4940 = new com.cinchapi.concourse.thrift.TObject(); + _val4940.read(iprot); + _val4936.put(_key4939, _val4940); } } - struct.success.put(_key4971, _val4972); + struct.success.put(_key4935, _val4936); } } struct.setSuccessIsSet(true); @@ -452508,15 +451455,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimest struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -452525,24 +451467,22 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrPage_args"); + public static class getKeysRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -452552,10 +451492,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -452577,13 +451516,11 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -452639,8 +451576,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -452648,17 +451583,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestr_args.class, metaDataMap); } - public getKeysRecordsTimestrPage_args() { + public getKeysRecordsTimestr_args() { } - public getKeysRecordsTimestrPage_args( + public getKeysRecordsTimestr_args( java.util.List keys, java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -452667,7 +451601,6 @@ public getKeysRecordsTimestrPage_args( this.keys = keys; this.records = records; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -452676,7 +451609,7 @@ public getKeysRecordsTimestrPage_args( /** * Performs a deep copy on other. */ - public getKeysRecordsTimestrPage_args(getKeysRecordsTimestrPage_args other) { + public getKeysRecordsTimestr_args(getKeysRecordsTimestr_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -452688,9 +451621,6 @@ public getKeysRecordsTimestrPage_args(getKeysRecordsTimestrPage_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -452703,8 +451633,8 @@ public getKeysRecordsTimestrPage_args(getKeysRecordsTimestrPage_args other) { } @Override - public getKeysRecordsTimestrPage_args deepCopy() { - return new getKeysRecordsTimestrPage_args(this); + public getKeysRecordsTimestr_args deepCopy() { + return new getKeysRecordsTimestr_args(this); } @Override @@ -452712,7 +451642,6 @@ public void clear() { this.keys = null; this.records = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -452739,7 +451668,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -452780,7 +451709,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -452805,7 +451734,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -452825,37 +451754,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -452880,7 +451784,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -452905,7 +451809,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -452952,14 +451856,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -453000,9 +451896,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -453030,8 +451923,6 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -453044,12 +451935,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimestrPage_args) - return this.equals((getKeysRecordsTimestrPage_args)that); + if (that instanceof getKeysRecordsTimestr_args) + return this.equals((getKeysRecordsTimestr_args)that); return false; } - public boolean equals(getKeysRecordsTimestrPage_args that) { + public boolean equals(getKeysRecordsTimestr_args that) { if (that == null) return false; if (this == that) @@ -453082,15 +451973,6 @@ public boolean equals(getKeysRecordsTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -453137,10 +452019,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -453157,7 +452035,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimestrPage_args other) { + public int compareTo(getKeysRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -453194,16 +452072,6 @@ public int compareTo(getKeysRecordsTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -453255,7 +452123,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestr_args("); boolean first = true; sb.append("keys:"); @@ -453282,14 +452150,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -453320,9 +452180,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -453347,17 +452204,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrPage_argsStandardScheme getScheme() { - return new getKeysRecordsTimestrPage_argsStandardScheme(); + public getKeysRecordsTimestr_argsStandardScheme getScheme() { + return new getKeysRecordsTimestr_argsStandardScheme(); } } - private static class getKeysRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -453370,13 +452227,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4978 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list4978.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4979; - for (int _i4980 = 0; _i4980 < _list4978.size; ++_i4980) + org.apache.thrift.protocol.TList _list4942 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4942.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4943; + for (int _i4944 = 0; _i4944 < _list4942.size; ++_i4944) { - _elem4979 = iprot.readString(); - struct.keys.add(_elem4979); + _elem4943 = iprot.readString(); + struct.keys.add(_elem4943); } iprot.readListEnd(); } @@ -453388,13 +452245,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list4981 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list4981.size); - long _elem4982; - for (int _i4983 = 0; _i4983 < _list4981.size; ++_i4983) + org.apache.thrift.protocol.TList _list4945 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4945.size); + long _elem4946; + for (int _i4947 = 0; _i4947 < _list4945.size; ++_i4947) { - _elem4982 = iprot.readI64(); - struct.records.add(_elem4982); + _elem4946 = iprot.readI64(); + struct.records.add(_elem4946); } iprot.readListEnd(); } @@ -453411,16 +452268,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -453429,7 +452277,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -453438,7 +452286,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -453458,7 +452306,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -453466,9 +452314,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter4984 : struct.keys) + for (java.lang.String _iter4948 : struct.keys) { - oprot.writeString(_iter4984); + oprot.writeString(_iter4948); } oprot.writeListEnd(); } @@ -453478,9 +452326,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter4985 : struct.records) + for (long _iter4949 : struct.records) { - oprot.writeI64(_iter4985); + oprot.writeI64(_iter4949); } oprot.writeListEnd(); } @@ -453491,11 +452339,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -453517,17 +452360,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrPage_argsTupleScheme getScheme() { - return new getKeysRecordsTimestrPage_argsTupleScheme(); + public getKeysRecordsTimestr_argsTupleScheme getScheme() { + return new getKeysRecordsTimestr_argsTupleScheme(); } } - private static class getKeysRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -453539,43 +452382,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter4986 : struct.keys) + for (java.lang.String _iter4950 : struct.keys) { - oprot.writeString(_iter4986); + oprot.writeString(_iter4950); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter4987 : struct.records) + for (long _iter4951 : struct.records) { - oprot.writeI64(_iter4987); + oprot.writeI64(_iter4951); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -453588,31 +452425,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list4988 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list4988.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem4989; - for (int _i4990 = 0; _i4990 < _list4988.size; ++_i4990) + org.apache.thrift.protocol.TList _list4952 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4952.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4953; + for (int _i4954 = 0; _i4954 < _list4952.size; ++_i4954) { - _elem4989 = iprot.readString(); - struct.keys.add(_elem4989); + _elem4953 = iprot.readString(); + struct.keys.add(_elem4953); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list4991 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list4991.size); - long _elem4992; - for (int _i4993 = 0; _i4993 < _list4991.size; ++_i4993) + org.apache.thrift.protocol.TList _list4955 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4955.size); + long _elem4956; + for (int _i4957 = 0; _i4957 < _list4955.size; ++_i4957) { - _elem4992 = iprot.readI64(); - struct.records.add(_elem4992); + _elem4956 = iprot.readI64(); + struct.records.add(_elem4956); } } struct.setRecordsIsSet(true); @@ -453622,21 +452459,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimest struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -453648,8 +452480,8 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrPage_result"); + public static class getKeysRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -453657,8 +452489,8 @@ public static class getKeysRecordsTimestrPage_result implements org.apache.thrif private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -453759,13 +452591,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestr_result.class, metaDataMap); } - public getKeysRecordsTimestrPage_result() { + public getKeysRecordsTimestr_result() { } - public getKeysRecordsTimestrPage_result( + public getKeysRecordsTimestr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -453783,7 +452615,7 @@ public getKeysRecordsTimestrPage_result( /** * Performs a deep copy on other. */ - public getKeysRecordsTimestrPage_result(getKeysRecordsTimestrPage_result other) { + public getKeysRecordsTimestr_result(getKeysRecordsTimestr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -453825,8 +452657,8 @@ public getKeysRecordsTimestrPage_result(getKeysRecordsTimestrPage_result other) } @Override - public getKeysRecordsTimestrPage_result deepCopy() { - return new getKeysRecordsTimestrPage_result(this); + public getKeysRecordsTimestr_result deepCopy() { + return new getKeysRecordsTimestr_result(this); } @Override @@ -453854,7 +452686,7 @@ public java.util.Map> success) { + public getKeysRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -453879,7 +452711,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -453904,7 +452736,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -453929,7 +452761,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -453954,7 +452786,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -454067,12 +452899,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimestrPage_result) - return this.equals((getKeysRecordsTimestrPage_result)that); + if (that instanceof getKeysRecordsTimestr_result) + return this.equals((getKeysRecordsTimestr_result)that); return false; } - public boolean equals(getKeysRecordsTimestrPage_result that) { + public boolean equals(getKeysRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -454154,7 +452986,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimestrPage_result other) { + public int compareTo(getKeysRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -454231,7 +453063,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestr_result("); boolean first = true; sb.append("success:"); @@ -454298,17 +453130,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrPage_resultStandardScheme getScheme() { - return new getKeysRecordsTimestrPage_resultStandardScheme(); + public getKeysRecordsTimestr_resultStandardScheme getScheme() { + return new getKeysRecordsTimestr_resultStandardScheme(); } } - private static class getKeysRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -454321,28 +453153,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map4994 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map4994.size); - long _key4995; - @org.apache.thrift.annotation.Nullable java.util.Map _val4996; - for (int _i4997 = 0; _i4997 < _map4994.size; ++_i4997) + org.apache.thrift.protocol.TMap _map4958 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4958.size); + long _key4959; + @org.apache.thrift.annotation.Nullable java.util.Map _val4960; + for (int _i4961 = 0; _i4961 < _map4958.size; ++_i4961) { - _key4995 = iprot.readI64(); + _key4959 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map4998 = iprot.readMapBegin(); - _val4996 = new java.util.LinkedHashMap(2*_map4998.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key4999; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5000; - for (int _i5001 = 0; _i5001 < _map4998.size; ++_i5001) + org.apache.thrift.protocol.TMap _map4962 = iprot.readMapBegin(); + _val4960 = new java.util.LinkedHashMap(2*_map4962.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4963; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4964; + for (int _i4965 = 0; _i4965 < _map4962.size; ++_i4965) { - _key4999 = iprot.readString(); - _val5000 = new com.cinchapi.concourse.thrift.TObject(); - _val5000.read(iprot); - _val4996.put(_key4999, _val5000); + _key4963 = iprot.readString(); + _val4964 = new com.cinchapi.concourse.thrift.TObject(); + _val4964.read(iprot); + _val4960.put(_key4963, _val4964); } iprot.readMapEnd(); } - struct.success.put(_key4995, _val4996); + struct.success.put(_key4959, _val4960); } iprot.readMapEnd(); } @@ -454399,7 +453231,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -454407,15 +453239,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5002 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4966 : struct.success.entrySet()) { - oprot.writeI64(_iter5002.getKey()); + oprot.writeI64(_iter4966.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5002.getValue().size())); - for (java.util.Map.Entry _iter5003 : _iter5002.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter4966.getValue().size())); + for (java.util.Map.Entry _iter4967 : _iter4966.getValue().entrySet()) { - oprot.writeString(_iter5003.getKey()); - _iter5003.getValue().write(oprot); + oprot.writeString(_iter4967.getKey()); + _iter4967.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -454450,17 +453282,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrPage_resultTupleScheme getScheme() { - return new getKeysRecordsTimestrPage_resultTupleScheme(); + public getKeysRecordsTimestr_resultTupleScheme getScheme() { + return new getKeysRecordsTimestr_resultTupleScheme(); } } - private static class getKeysRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -454482,15 +453314,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5004 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter4968 : struct.success.entrySet()) { - oprot.writeI64(_iter5004.getKey()); + oprot.writeI64(_iter4968.getKey()); { - oprot.writeI32(_iter5004.getValue().size()); - for (java.util.Map.Entry _iter5005 : _iter5004.getValue().entrySet()) + oprot.writeI32(_iter4968.getValue().size()); + for (java.util.Map.Entry _iter4969 : _iter4968.getValue().entrySet()) { - oprot.writeString(_iter5005.getKey()); - _iter5005.getValue().write(oprot); + oprot.writeString(_iter4969.getKey()); + _iter4969.getValue().write(oprot); } } } @@ -454511,32 +453343,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5006 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5006.size); - long _key5007; - @org.apache.thrift.annotation.Nullable java.util.Map _val5008; - for (int _i5009 = 0; _i5009 < _map5006.size; ++_i5009) + org.apache.thrift.protocol.TMap _map4970 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map4970.size); + long _key4971; + @org.apache.thrift.annotation.Nullable java.util.Map _val4972; + for (int _i4973 = 0; _i4973 < _map4970.size; ++_i4973) { - _key5007 = iprot.readI64(); + _key4971 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5010 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5008 = new java.util.LinkedHashMap(2*_map5010.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5011; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5012; - for (int _i5013 = 0; _i5013 < _map5010.size; ++_i5013) + org.apache.thrift.protocol.TMap _map4974 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val4972 = new java.util.LinkedHashMap(2*_map4974.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4975; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val4976; + for (int _i4977 = 0; _i4977 < _map4974.size; ++_i4977) { - _key5011 = iprot.readString(); - _val5012 = new com.cinchapi.concourse.thrift.TObject(); - _val5012.read(iprot); - _val5008.put(_key5011, _val5012); + _key4975 = iprot.readString(); + _val4976 = new com.cinchapi.concourse.thrift.TObject(); + _val4976.read(iprot); + _val4972.put(_key4975, _val4976); } } - struct.success.put(_key5007, _val5008); + struct.success.put(_key4971, _val4972); } } struct.setSuccessIsSet(true); @@ -454569,24 +453401,24 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrOrder_args"); + public static class getKeysRecordsTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -454596,7 +453428,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -454621,8 +453453,8 @@ public static _Fields findByThriftId(int fieldId) { return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -454683,8 +453515,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -454692,17 +453524,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrPage_args.class, metaDataMap); } - public getKeysRecordsTimestrOrder_args() { + public getKeysRecordsTimestrPage_args() { } - public getKeysRecordsTimestrOrder_args( + public getKeysRecordsTimestrPage_args( java.util.List keys, java.util.List records, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -454711,7 +453543,7 @@ public getKeysRecordsTimestrOrder_args( this.keys = keys; this.records = records; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -454720,7 +453552,7 @@ public getKeysRecordsTimestrOrder_args( /** * Performs a deep copy on other. */ - public getKeysRecordsTimestrOrder_args(getKeysRecordsTimestrOrder_args other) { + public getKeysRecordsTimestrPage_args(getKeysRecordsTimestrPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -454732,8 +453564,8 @@ public getKeysRecordsTimestrOrder_args(getKeysRecordsTimestrOrder_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -454747,8 +453579,8 @@ public getKeysRecordsTimestrOrder_args(getKeysRecordsTimestrOrder_args other) { } @Override - public getKeysRecordsTimestrOrder_args deepCopy() { - return new getKeysRecordsTimestrOrder_args(this); + public getKeysRecordsTimestrPage_args deepCopy() { + return new getKeysRecordsTimestrPage_args(this); } @Override @@ -454756,7 +453588,7 @@ public void clear() { this.keys = null; this.records = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -454783,7 +453615,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -454824,7 +453656,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsTimestrPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -454849,7 +453681,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysRecordsTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -454870,27 +453702,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysRecordsTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -454899,7 +453731,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -454924,7 +453756,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -454949,7 +453781,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -454996,11 +453828,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -455044,8 +453876,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -455074,8 +453906,8 @@ public boolean isSet(_Fields field) { return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -455088,12 +453920,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimestrOrder_args) - return this.equals((getKeysRecordsTimestrOrder_args)that); + if (that instanceof getKeysRecordsTimestrPage_args) + return this.equals((getKeysRecordsTimestrPage_args)that); return false; } - public boolean equals(getKeysRecordsTimestrOrder_args that) { + public boolean equals(getKeysRecordsTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -455126,12 +453958,12 @@ public boolean equals(getKeysRecordsTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -455181,9 +454013,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -455201,7 +454033,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimestrOrder_args other) { + public int compareTo(getKeysRecordsTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -455238,12 +454070,12 @@ public int compareTo(getKeysRecordsTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -455299,7 +454131,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrPage_args("); boolean first = true; sb.append("keys:"); @@ -455326,11 +454158,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -455364,8 +454196,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -455391,17 +454223,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrOrder_argsStandardScheme getScheme() { - return new getKeysRecordsTimestrOrder_argsStandardScheme(); + public getKeysRecordsTimestrPage_argsStandardScheme getScheme() { + return new getKeysRecordsTimestrPage_argsStandardScheme(); } } - private static class getKeysRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -455414,13 +454246,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5014 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5014.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5015; - for (int _i5016 = 0; _i5016 < _list5014.size; ++_i5016) + org.apache.thrift.protocol.TList _list4978 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list4978.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4979; + for (int _i4980 = 0; _i4980 < _list4978.size; ++_i4980) { - _elem5015 = iprot.readString(); - struct.keys.add(_elem5015); + _elem4979 = iprot.readString(); + struct.keys.add(_elem4979); } iprot.readListEnd(); } @@ -455432,13 +454264,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5017 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list5017.size); - long _elem5018; - for (int _i5019 = 0; _i5019 < _list5017.size; ++_i5019) + org.apache.thrift.protocol.TList _list4981 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list4981.size); + long _elem4982; + for (int _i4983 = 0; _i4983 < _list4981.size; ++_i4983) { - _elem5018 = iprot.readI64(); - struct.records.add(_elem5018); + _elem4982 = iprot.readI64(); + struct.records.add(_elem4982); } iprot.readListEnd(); } @@ -455455,11 +454287,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -455502,7 +454334,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -455510,9 +454342,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5020 : struct.keys) + for (java.lang.String _iter4984 : struct.keys) { - oprot.writeString(_iter5020); + oprot.writeString(_iter4984); } oprot.writeListEnd(); } @@ -455522,9 +454354,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter5021 : struct.records) + for (long _iter4985 : struct.records) { - oprot.writeI64(_iter5021); + oprot.writeI64(_iter4985); } oprot.writeListEnd(); } @@ -455535,9 +454367,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -455561,17 +454393,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrOrder_argsTupleScheme getScheme() { - return new getKeysRecordsTimestrOrder_argsTupleScheme(); + public getKeysRecordsTimestrPage_argsTupleScheme getScheme() { + return new getKeysRecordsTimestrPage_argsTupleScheme(); } } - private static class getKeysRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -455583,7 +454415,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -455599,26 +454431,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5022 : struct.keys) + for (java.lang.String _iter4986 : struct.keys) { - oprot.writeString(_iter5022); + oprot.writeString(_iter4986); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter5023 : struct.records) + for (long _iter4987 : struct.records) { - oprot.writeI64(_iter5023); + oprot.writeI64(_iter4987); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -455632,31 +454464,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list5024 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5024.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5025; - for (int _i5026 = 0; _i5026 < _list5024.size; ++_i5026) + org.apache.thrift.protocol.TList _list4988 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list4988.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem4989; + for (int _i4990 = 0; _i4990 < _list4988.size; ++_i4990) { - _elem5025 = iprot.readString(); - struct.keys.add(_elem5025); + _elem4989 = iprot.readString(); + struct.keys.add(_elem4989); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list5027 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list5027.size); - long _elem5028; - for (int _i5029 = 0; _i5029 < _list5027.size; ++_i5029) + org.apache.thrift.protocol.TList _list4991 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list4991.size); + long _elem4992; + for (int _i4993 = 0; _i4993 < _list4991.size; ++_i4993) { - _elem5028 = iprot.readI64(); - struct.records.add(_elem5028); + _elem4992 = iprot.readI64(); + struct.records.add(_elem4992); } } struct.setRecordsIsSet(true); @@ -455666,9 +454498,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimest struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -455692,8 +454524,8 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrOrder_result"); + public static class getKeysRecordsTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -455701,8 +454533,8 @@ public static class getKeysRecordsTimestrOrder_result implements org.apache.thri private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -455803,13 +454635,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrPage_result.class, metaDataMap); } - public getKeysRecordsTimestrOrder_result() { + public getKeysRecordsTimestrPage_result() { } - public getKeysRecordsTimestrOrder_result( + public getKeysRecordsTimestrPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -455827,7 +454659,7 @@ public getKeysRecordsTimestrOrder_result( /** * Performs a deep copy on other. */ - public getKeysRecordsTimestrOrder_result(getKeysRecordsTimestrOrder_result other) { + public getKeysRecordsTimestrPage_result(getKeysRecordsTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -455869,8 +454701,8 @@ public getKeysRecordsTimestrOrder_result(getKeysRecordsTimestrOrder_result other } @Override - public getKeysRecordsTimestrOrder_result deepCopy() { - return new getKeysRecordsTimestrOrder_result(this); + public getKeysRecordsTimestrPage_result deepCopy() { + return new getKeysRecordsTimestrPage_result(this); } @Override @@ -455898,7 +454730,7 @@ public java.util.Map> success) { + public getKeysRecordsTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -455923,7 +454755,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -455948,7 +454780,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -455973,7 +454805,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysRecordsTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -455998,7 +454830,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysRecordsTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -456111,12 +454943,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimestrOrder_result) - return this.equals((getKeysRecordsTimestrOrder_result)that); + if (that instanceof getKeysRecordsTimestrPage_result) + return this.equals((getKeysRecordsTimestrPage_result)that); return false; } - public boolean equals(getKeysRecordsTimestrOrder_result that) { + public boolean equals(getKeysRecordsTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -456198,7 +455030,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimestrOrder_result other) { + public int compareTo(getKeysRecordsTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -456275,7 +455107,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -456342,17 +455174,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrOrder_resultStandardScheme getScheme() { - return new getKeysRecordsTimestrOrder_resultStandardScheme(); + public getKeysRecordsTimestrPage_resultStandardScheme getScheme() { + return new getKeysRecordsTimestrPage_resultStandardScheme(); } } - private static class getKeysRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -456365,28 +455197,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5030 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5030.size); - long _key5031; - @org.apache.thrift.annotation.Nullable java.util.Map _val5032; - for (int _i5033 = 0; _i5033 < _map5030.size; ++_i5033) + org.apache.thrift.protocol.TMap _map4994 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map4994.size); + long _key4995; + @org.apache.thrift.annotation.Nullable java.util.Map _val4996; + for (int _i4997 = 0; _i4997 < _map4994.size; ++_i4997) { - _key5031 = iprot.readI64(); + _key4995 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5034 = iprot.readMapBegin(); - _val5032 = new java.util.LinkedHashMap(2*_map5034.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5035; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5036; - for (int _i5037 = 0; _i5037 < _map5034.size; ++_i5037) + org.apache.thrift.protocol.TMap _map4998 = iprot.readMapBegin(); + _val4996 = new java.util.LinkedHashMap(2*_map4998.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key4999; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5000; + for (int _i5001 = 0; _i5001 < _map4998.size; ++_i5001) { - _key5035 = iprot.readString(); - _val5036 = new com.cinchapi.concourse.thrift.TObject(); - _val5036.read(iprot); - _val5032.put(_key5035, _val5036); + _key4999 = iprot.readString(); + _val5000 = new com.cinchapi.concourse.thrift.TObject(); + _val5000.read(iprot); + _val4996.put(_key4999, _val5000); } iprot.readMapEnd(); } - struct.success.put(_key5031, _val5032); + struct.success.put(_key4995, _val4996); } iprot.readMapEnd(); } @@ -456443,7 +455275,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -456451,15 +455283,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5038 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5002 : struct.success.entrySet()) { - oprot.writeI64(_iter5038.getKey()); + oprot.writeI64(_iter5002.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5038.getValue().size())); - for (java.util.Map.Entry _iter5039 : _iter5038.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5002.getValue().size())); + for (java.util.Map.Entry _iter5003 : _iter5002.getValue().entrySet()) { - oprot.writeString(_iter5039.getKey()); - _iter5039.getValue().write(oprot); + oprot.writeString(_iter5003.getKey()); + _iter5003.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -456494,17 +455326,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrOrder_resultTupleScheme getScheme() { - return new getKeysRecordsTimestrOrder_resultTupleScheme(); + public getKeysRecordsTimestrPage_resultTupleScheme getScheme() { + return new getKeysRecordsTimestrPage_resultTupleScheme(); } } - private static class getKeysRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -456526,15 +455358,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5040 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5004 : struct.success.entrySet()) { - oprot.writeI64(_iter5040.getKey()); + oprot.writeI64(_iter5004.getKey()); { - oprot.writeI32(_iter5040.getValue().size()); - for (java.util.Map.Entry _iter5041 : _iter5040.getValue().entrySet()) + oprot.writeI32(_iter5004.getValue().size()); + for (java.util.Map.Entry _iter5005 : _iter5004.getValue().entrySet()) { - oprot.writeString(_iter5041.getKey()); - _iter5041.getValue().write(oprot); + oprot.writeString(_iter5005.getKey()); + _iter5005.getValue().write(oprot); } } } @@ -456555,32 +455387,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5042 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5042.size); - long _key5043; - @org.apache.thrift.annotation.Nullable java.util.Map _val5044; - for (int _i5045 = 0; _i5045 < _map5042.size; ++_i5045) + org.apache.thrift.protocol.TMap _map5006 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5006.size); + long _key5007; + @org.apache.thrift.annotation.Nullable java.util.Map _val5008; + for (int _i5009 = 0; _i5009 < _map5006.size; ++_i5009) { - _key5043 = iprot.readI64(); + _key5007 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5046 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5044 = new java.util.LinkedHashMap(2*_map5046.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5047; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5048; - for (int _i5049 = 0; _i5049 < _map5046.size; ++_i5049) + org.apache.thrift.protocol.TMap _map5010 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5008 = new java.util.LinkedHashMap(2*_map5010.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5011; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5012; + for (int _i5013 = 0; _i5013 < _map5010.size; ++_i5013) { - _key5047 = iprot.readString(); - _val5048 = new com.cinchapi.concourse.thrift.TObject(); - _val5048.read(iprot); - _val5044.put(_key5047, _val5048); + _key5011 = iprot.readString(); + _val5012 = new com.cinchapi.concourse.thrift.TObject(); + _val5012.read(iprot); + _val5008.put(_key5011, _val5012); } } - struct.success.put(_key5043, _val5044); + struct.success.put(_key5007, _val5008); } } struct.setSuccessIsSet(true); @@ -456613,26 +455445,24 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrOrderPage_args"); + public static class getKeysRecordsTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -456643,10 +455473,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -456670,13 +455499,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -456734,8 +455561,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -456743,18 +455568,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrOrder_args.class, metaDataMap); } - public getKeysRecordsTimestrOrderPage_args() { + public getKeysRecordsTimestrOrder_args() { } - public getKeysRecordsTimestrOrderPage_args( + public getKeysRecordsTimestrOrder_args( java.util.List keys, java.util.List records, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -456764,7 +455588,6 @@ public getKeysRecordsTimestrOrderPage_args( this.records = records; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -456773,7 +455596,7 @@ public getKeysRecordsTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysRecordsTimestrOrderPage_args(getKeysRecordsTimestrOrderPage_args other) { + public getKeysRecordsTimestrOrder_args(getKeysRecordsTimestrOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -456788,9 +455611,6 @@ public getKeysRecordsTimestrOrderPage_args(getKeysRecordsTimestrOrderPage_args o if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -456803,8 +455623,8 @@ public getKeysRecordsTimestrOrderPage_args(getKeysRecordsTimestrOrderPage_args o } @Override - public getKeysRecordsTimestrOrderPage_args deepCopy() { - return new getKeysRecordsTimestrOrderPage_args(this); + public getKeysRecordsTimestrOrder_args deepCopy() { + return new getKeysRecordsTimestrOrder_args(this); } @Override @@ -456813,7 +455633,6 @@ public void clear() { this.records = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -456840,7 +455659,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysRecordsTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysRecordsTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -456881,7 +455700,7 @@ public java.util.List getRecords() { return this.records; } - public getKeysRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public getKeysRecordsTimestrOrder_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -456906,7 +455725,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysRecordsTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -456931,7 +455750,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysRecordsTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -456951,37 +455770,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -457006,7 +455800,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -457031,7 +455825,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -457086,14 +455880,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -457137,9 +455923,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -457169,8 +455952,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -457183,12 +455964,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimestrOrderPage_args) - return this.equals((getKeysRecordsTimestrOrderPage_args)that); + if (that instanceof getKeysRecordsTimestrOrder_args) + return this.equals((getKeysRecordsTimestrOrder_args)that); return false; } - public boolean equals(getKeysRecordsTimestrOrderPage_args that) { + public boolean equals(getKeysRecordsTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -457230,15 +456011,6 @@ public boolean equals(getKeysRecordsTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -457289,10 +456061,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -457309,7 +456077,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimestrOrderPage_args other) { + public int compareTo(getKeysRecordsTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -457356,16 +456124,6 @@ public int compareTo(getKeysRecordsTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -457417,7 +456175,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrOrder_args("); boolean first = true; sb.append("keys:"); @@ -457452,14 +456210,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -457493,9 +456243,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -457520,17 +456267,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrOrderPage_argsStandardScheme getScheme() { - return new getKeysRecordsTimestrOrderPage_argsStandardScheme(); + public getKeysRecordsTimestrOrder_argsStandardScheme getScheme() { + return new getKeysRecordsTimestrOrder_argsStandardScheme(); } } - private static class getKeysRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -457543,13 +456290,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5050 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5050.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5051; - for (int _i5052 = 0; _i5052 < _list5050.size; ++_i5052) + org.apache.thrift.protocol.TList _list5014 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5014.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5015; + for (int _i5016 = 0; _i5016 < _list5014.size; ++_i5016) { - _elem5051 = iprot.readString(); - struct.keys.add(_elem5051); + _elem5015 = iprot.readString(); + struct.keys.add(_elem5015); } iprot.readListEnd(); } @@ -457561,13 +456308,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5053 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list5053.size); - long _elem5054; - for (int _i5055 = 0; _i5055 < _list5053.size; ++_i5055) + org.apache.thrift.protocol.TList _list5017 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list5017.size); + long _elem5018; + for (int _i5019 = 0; _i5019 < _list5017.size; ++_i5019) { - _elem5054 = iprot.readI64(); - struct.records.add(_elem5054); + _elem5018 = iprot.readI64(); + struct.records.add(_elem5018); } iprot.readListEnd(); } @@ -457593,16 +456340,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -457611,7 +456349,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -457620,7 +456358,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -457640,7 +456378,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -457648,9 +456386,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5056 : struct.keys) + for (java.lang.String _iter5020 : struct.keys) { - oprot.writeString(_iter5056); + oprot.writeString(_iter5020); } oprot.writeListEnd(); } @@ -457660,9 +456398,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter5057 : struct.records) + for (long _iter5021 : struct.records) { - oprot.writeI64(_iter5057); + oprot.writeI64(_iter5021); } oprot.writeListEnd(); } @@ -457678,11 +456416,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -457704,17 +456437,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrOrderPage_argsTupleScheme getScheme() { - return new getKeysRecordsTimestrOrderPage_argsTupleScheme(); + public getKeysRecordsTimestrOrder_argsTupleScheme getScheme() { + return new getKeysRecordsTimestrOrder_argsTupleScheme(); } } - private static class getKeysRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -457729,34 +456462,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5058 : struct.keys) + for (java.lang.String _iter5022 : struct.keys) { - oprot.writeString(_iter5058); + oprot.writeString(_iter5022); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter5059 : struct.records) + for (long _iter5023 : struct.records) { - oprot.writeI64(_iter5059); + oprot.writeI64(_iter5023); } } } @@ -457766,9 +456496,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -457781,31 +456508,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list5060 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5060.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5061; - for (int _i5062 = 0; _i5062 < _list5060.size; ++_i5062) + org.apache.thrift.protocol.TList _list5024 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5024.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5025; + for (int _i5026 = 0; _i5026 < _list5024.size; ++_i5026) { - _elem5061 = iprot.readString(); - struct.keys.add(_elem5061); + _elem5025 = iprot.readString(); + struct.keys.add(_elem5025); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list5063 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list5063.size); - long _elem5064; - for (int _i5065 = 0; _i5065 < _list5063.size; ++_i5065) + org.apache.thrift.protocol.TList _list5027 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list5027.size); + long _elem5028; + for (int _i5029 = 0; _i5029 < _list5027.size; ++_i5029) { - _elem5064 = iprot.readI64(); - struct.records.add(_elem5064); + _elem5028 = iprot.readI64(); + struct.records.add(_elem5028); } } struct.setRecordsIsSet(true); @@ -457820,21 +456547,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimest struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -457846,8 +456568,8 @@ private static S scheme(org.apache. } } - public static class getKeysRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrOrderPage_result"); + public static class getKeysRecordsTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -457855,8 +456577,8 @@ public static class getKeysRecordsTimestrOrderPage_result implements org.apache. private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -457957,13 +456679,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrOrder_result.class, metaDataMap); } - public getKeysRecordsTimestrOrderPage_result() { + public getKeysRecordsTimestrOrder_result() { } - public getKeysRecordsTimestrOrderPage_result( + public getKeysRecordsTimestrOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -457981,7 +456703,7 @@ public getKeysRecordsTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysRecordsTimestrOrderPage_result(getKeysRecordsTimestrOrderPage_result other) { + public getKeysRecordsTimestrOrder_result(getKeysRecordsTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -458023,8 +456745,8 @@ public getKeysRecordsTimestrOrderPage_result(getKeysRecordsTimestrOrderPage_resu } @Override - public getKeysRecordsTimestrOrderPage_result deepCopy() { - return new getKeysRecordsTimestrOrderPage_result(this); + public getKeysRecordsTimestrOrder_result deepCopy() { + return new getKeysRecordsTimestrOrder_result(this); } @Override @@ -458052,7 +456774,7 @@ public java.util.Map> success) { + public getKeysRecordsTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -458077,7 +456799,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -458102,7 +456824,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -458127,7 +456849,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysRecordsTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -458152,7 +456874,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysRecordsTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -458265,12 +456987,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysRecordsTimestrOrderPage_result) - return this.equals((getKeysRecordsTimestrOrderPage_result)that); + if (that instanceof getKeysRecordsTimestrOrder_result) + return this.equals((getKeysRecordsTimestrOrder_result)that); return false; } - public boolean equals(getKeysRecordsTimestrOrderPage_result that) { + public boolean equals(getKeysRecordsTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -458352,7 +457074,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysRecordsTimestrOrderPage_result other) { + public int compareTo(getKeysRecordsTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -458429,7 +457151,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -458496,17 +457218,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrOrderPage_resultStandardScheme getScheme() { - return new getKeysRecordsTimestrOrderPage_resultStandardScheme(); + public getKeysRecordsTimestrOrder_resultStandardScheme getScheme() { + return new getKeysRecordsTimestrOrder_resultStandardScheme(); } } - private static class getKeysRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -458519,28 +457241,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5066 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5066.size); - long _key5067; - @org.apache.thrift.annotation.Nullable java.util.Map _val5068; - for (int _i5069 = 0; _i5069 < _map5066.size; ++_i5069) + org.apache.thrift.protocol.TMap _map5030 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5030.size); + long _key5031; + @org.apache.thrift.annotation.Nullable java.util.Map _val5032; + for (int _i5033 = 0; _i5033 < _map5030.size; ++_i5033) { - _key5067 = iprot.readI64(); + _key5031 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5070 = iprot.readMapBegin(); - _val5068 = new java.util.LinkedHashMap(2*_map5070.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5071; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5072; - for (int _i5073 = 0; _i5073 < _map5070.size; ++_i5073) + org.apache.thrift.protocol.TMap _map5034 = iprot.readMapBegin(); + _val5032 = new java.util.LinkedHashMap(2*_map5034.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5035; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5036; + for (int _i5037 = 0; _i5037 < _map5034.size; ++_i5037) { - _key5071 = iprot.readString(); - _val5072 = new com.cinchapi.concourse.thrift.TObject(); - _val5072.read(iprot); - _val5068.put(_key5071, _val5072); + _key5035 = iprot.readString(); + _val5036 = new com.cinchapi.concourse.thrift.TObject(); + _val5036.read(iprot); + _val5032.put(_key5035, _val5036); } iprot.readMapEnd(); } - struct.success.put(_key5067, _val5068); + struct.success.put(_key5031, _val5032); } iprot.readMapEnd(); } @@ -458597,7 +457319,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -458605,15 +457327,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5074 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5038 : struct.success.entrySet()) { - oprot.writeI64(_iter5074.getKey()); + oprot.writeI64(_iter5038.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5074.getValue().size())); - for (java.util.Map.Entry _iter5075 : _iter5074.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5038.getValue().size())); + for (java.util.Map.Entry _iter5039 : _iter5038.getValue().entrySet()) { - oprot.writeString(_iter5075.getKey()); - _iter5075.getValue().write(oprot); + oprot.writeString(_iter5039.getKey()); + _iter5039.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -458648,17 +457370,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTime } - private static class getKeysRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysRecordsTimestrOrderPage_resultTupleScheme getScheme() { - return new getKeysRecordsTimestrOrderPage_resultTupleScheme(); + public getKeysRecordsTimestrOrder_resultTupleScheme getScheme() { + return new getKeysRecordsTimestrOrder_resultTupleScheme(); } } - private static class getKeysRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -458680,15 +457402,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5076 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5040 : struct.success.entrySet()) { - oprot.writeI64(_iter5076.getKey()); + oprot.writeI64(_iter5040.getKey()); { - oprot.writeI32(_iter5076.getValue().size()); - for (java.util.Map.Entry _iter5077 : _iter5076.getValue().entrySet()) + oprot.writeI32(_iter5040.getValue().size()); + for (java.util.Map.Entry _iter5041 : _iter5040.getValue().entrySet()) { - oprot.writeString(_iter5077.getKey()); - _iter5077.getValue().write(oprot); + oprot.writeString(_iter5041.getKey()); + _iter5041.getValue().write(oprot); } } } @@ -458709,32 +457431,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5078 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5078.size); - long _key5079; - @org.apache.thrift.annotation.Nullable java.util.Map _val5080; - for (int _i5081 = 0; _i5081 < _map5078.size; ++_i5081) + org.apache.thrift.protocol.TMap _map5042 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5042.size); + long _key5043; + @org.apache.thrift.annotation.Nullable java.util.Map _val5044; + for (int _i5045 = 0; _i5045 < _map5042.size; ++_i5045) { - _key5079 = iprot.readI64(); + _key5043 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5082 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5080 = new java.util.LinkedHashMap(2*_map5082.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5083; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5084; - for (int _i5085 = 0; _i5085 < _map5082.size; ++_i5085) + org.apache.thrift.protocol.TMap _map5046 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5044 = new java.util.LinkedHashMap(2*_map5046.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5047; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5048; + for (int _i5049 = 0; _i5049 < _map5046.size; ++_i5049) { - _key5083 = iprot.readString(); - _val5084 = new com.cinchapi.concourse.thrift.TObject(); - _val5084.read(iprot); - _val5080.put(_key5083, _val5084); + _key5047 = iprot.readString(); + _val5048 = new com.cinchapi.concourse.thrift.TObject(); + _val5048.read(iprot); + _val5044.put(_key5047, _val5048); } } - struct.success.put(_key5079, _val5080); + struct.success.put(_key5043, _val5044); } } struct.setSuccessIsSet(true); @@ -458767,31 +457489,40 @@ private static S scheme(org.apache. } } - public static class getKeyCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteria_args"); + public static class getKeysRecordsTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteria_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteria_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - CRITERIA((short)2, "criteria"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + KEYS((short)1, "keys"), + RECORDS((short)2, "records"), + TIMESTAMP((short)3, "timestamp"), + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -458807,15 +457538,21 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // CRITERIA - return CRITERIA; - case 3: // CREDS + case 1: // KEYS + return KEYS; + case 2: // RECORDS + return RECORDS; + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 4: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -458863,10 +457600,18 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -458874,22 +457619,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteria_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrOrderPage_args.class, metaDataMap); } - public getKeyCriteria_args() { + public getKeysRecordsTimestrOrderPage_args() { } - public getKeyCriteria_args( - java.lang.String key, - com.cinchapi.concourse.thrift.TCriteria criteria, + public getKeysRecordsTimestrOrderPage_args( + java.util.List keys, + java.util.List records, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.criteria = criteria; + this.keys = keys; + this.records = records; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -458898,12 +457649,23 @@ public getKeyCriteria_args( /** * Performs a deep copy on other. */ - public getKeyCriteria_args(getKeyCriteria_args other) { - if (other.isSetKey()) { - this.key = other.key; + public getKeysRecordsTimestrOrderPage_args(getKeysRecordsTimestrOrderPage_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; } - if (other.isSetCriteria()) { - this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -458917,66 +457679,176 @@ public getKeyCriteria_args(getKeyCriteria_args other) { } @Override - public getKeyCriteria_args deepCopy() { - return new getKeyCriteria_args(this); + public getKeysRecordsTimestrOrderPage_args deepCopy() { + return new getKeysRecordsTimestrOrderPage_args(this); } @Override public void clear() { - this.key = null; - this.criteria = null; + this.keys = null; + this.records = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public getKeyCriteria_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public getKeysRecordsTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; return this; } - public void unsetKey() { - this.key = null; + public void unsetKeys() { + this.keys = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void setKeyIsSet(boolean value) { + public void setKeysIsSet(boolean value) { if (!value) { - this.key = null; + this.keys = null; } } + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); + } + @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TCriteria getCriteria() { - return this.criteria; + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); } - public getKeyCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { - this.criteria = criteria; + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public getKeysRecordsTimestrOrderPage_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetCriteria() { - this.criteria = null; + public void unsetRecords() { + this.records = null; } - /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ - public boolean isSetCriteria() { - return this.criteria != null; + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setCriteriaIsSet(boolean value) { + public void setRecordsIsSet(boolean value) { if (!value) { - this.criteria = null; + this.records = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public getKeysRecordsTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeysRecordsTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysRecordsTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -458985,7 +457857,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysRecordsTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -459010,7 +457882,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysRecordsTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -459035,7 +457907,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysRecordsTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -459058,19 +457930,43 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case KEYS: if (value == null) { - unsetKey(); + unsetKeys(); } else { - setKey((java.lang.String)value); + setKeys((java.util.List)value); } break; - case CRITERIA: + case RECORDS: if (value == null) { - unsetCriteria(); + unsetRecords(); } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + setRecords((java.util.List)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -459105,11 +458001,20 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case KEYS: + return getKeys(); - case CRITERIA: - return getCriteria(); + case RECORDS: + return getRecords(); + + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -459132,10 +458037,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case CRITERIA: - return isSetCriteria(); + case KEYS: + return isSetKeys(); + case RECORDS: + return isSetRecords(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -459148,32 +458059,59 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteria_args) - return this.equals((getKeyCriteria_args)that); + if (that instanceof getKeysRecordsTimestrOrderPage_args) + return this.equals((getKeysRecordsTimestrOrderPage_args)that); return false; } - public boolean equals(getKeyCriteria_args that) { + public boolean equals(getKeysRecordsTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.key.equals(that.key)) + if (!this.keys.equals(that.keys)) return false; } - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (!this.criteria.equals(that.criteria)) + if (!this.records.equals(that.records)) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -459211,13 +458149,25 @@ public boolean equals(getKeyCriteria_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -459235,29 +458185,59 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteria_args other) { + public int compareTo(getKeysRecordsTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -459313,22 +458293,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteria_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrOrderPage_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); - sb.append("criteria:"); - if (this.criteria == null) { + sb.append("records:"); + if (this.records == null) { sb.append("null"); } else { - sb.append(this.criteria); + sb.append(this.records); + } + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -459362,8 +458366,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -459389,17 +458396,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteria_argsStandardScheme getScheme() { - return new getKeyCriteria_argsStandardScheme(); + public getKeysRecordsTimestrOrderPage_argsStandardScheme getScheme() { + return new getKeysRecordsTimestrOrderPage_argsStandardScheme(); } } - private static class getKeyCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -459409,24 +458416,69 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_args break; } switch (schemeField.id) { - case 1: // KEY + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list5050 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5050.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5051; + for (int _i5052 = 0; _i5052 < _list5050.size; ++_i5052) + { + _elem5051 = iprot.readString(); + struct.keys.add(_elem5051); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list5053 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list5053.size); + long _elem5054; + for (int _i5055 = 0; _i5055 < _list5053.size; ++_i5055) + { + _elem5054 = iprot.readI64(); + struct.records.add(_elem5054); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // TIMESTAMP if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CRITERIA + case 4: // ORDER if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -459435,7 +458487,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -459444,7 +458496,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -459464,18 +458516,47 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter5056 : struct.keys) + { + oprot.writeString(_iter5056); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter5057 : struct.records) + { + oprot.writeI64(_iter5057); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -459499,40 +458580,70 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteria_arg } - private static class getKeyCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteria_argsTupleScheme getScheme() { - return new getKeyCriteria_argsTupleScheme(); + public getKeysRecordsTimestrOrderPage_argsTupleScheme getScheme() { + return new getKeysRecordsTimestrOrderPage_argsTupleScheme(); } } - private static class getKeyCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetCriteria()) { + if (struct.isSetRecords()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetPage()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetCreds()) { + optionals.set(5); } - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter5058 : struct.keys) + { + oprot.writeString(_iter5058); + } + } + } + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter5059 : struct.records) + { + oprot.writeI64(_iter5059); + } + } + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -459546,29 +458657,60 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list5060 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5060.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5061; + for (int _i5062 = 0; _i5062 < _list5060.size; ++_i5062) + { + _elem5061 = iprot.readString(); + struct.keys.add(_elem5061); + } + } + struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + { + org.apache.thrift.protocol.TList _list5063 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list5063.size); + long _elem5064; + for (int _i5065 = 0; _i5065 < _list5063.size; ++_i5065) + { + _elem5064 = iprot.readI64(); + struct.records.add(_elem5064); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -459580,28 +458722,31 @@ private static S scheme(org.apache. } } - public static class getKeyCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteria_result"); + public static class getKeysRecordsTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysRecordsTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteria_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteria_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysRecordsTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysRecordsTimestrOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -459625,6 +458770,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -459674,47 +458821,64 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteria_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysRecordsTimestrOrderPage_result.class, metaDataMap); } - public getKeyCriteria_result() { + public getKeysRecordsTimestrOrderPage_result() { } - public getKeyCriteria_result( - java.util.Map success, + public getKeysRecordsTimestrOrderPage_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeyCriteria_result(getKeyCriteria_result other) { + public getKeysRecordsTimestrOrderPage_result(getKeysRecordsTimestrOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); - for (java.util.Map.Entry other_element : other.success.entrySet()) { + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { java.lang.Long other_element_key = other_element.getKey(); - com.cinchapi.concourse.thrift.TObject other_element_value = other_element.getValue(); + java.util.Map other_element_value = other_element.getValue(); java.lang.Long __this__success_copy_key = other_element_key; - com.cinchapi.concourse.thrift.TObject __this__success_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value); + java.util.Map __this__success_copy_value = new java.util.LinkedHashMap(other_element_value.size()); + for (java.util.Map.Entry other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + com.cinchapi.concourse.thrift.TObject other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -459727,13 +458891,16 @@ public getKeyCriteria_result(getKeyCriteria_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getKeyCriteria_result deepCopy() { - return new getKeyCriteria_result(this); + public getKeysRecordsTimestrOrderPage_result deepCopy() { + return new getKeysRecordsTimestrOrderPage_result(this); } @Override @@ -459742,25 +458909,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, com.cinchapi.concourse.thrift.TObject val) { + public void putToSuccess(long key, java.util.Map val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public getKeyCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeysRecordsTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -459785,7 +458953,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysRecordsTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -459810,7 +458978,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysRecordsTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -459831,11 +458999,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysRecordsTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -459855,6 +459023,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getKeysRecordsTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -459862,7 +459055,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map)value); + setSuccess((java.util.Map>)value); } break; @@ -459886,7 +459079,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -459909,6 +459110,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -459929,18 +459133,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteria_result) - return this.equals((getKeyCriteria_result)that); + if (that instanceof getKeysRecordsTimestrOrderPage_result) + return this.equals((getKeysRecordsTimestrOrderPage_result)that); return false; } - public boolean equals(getKeyCriteria_result that) { + public boolean equals(getKeysRecordsTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -459982,6 +459188,15 @@ public boolean equals(getKeyCriteria_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -460005,11 +459220,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getKeyCriteria_result other) { + public int compareTo(getKeysRecordsTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -460056,6 +459275,16 @@ public int compareTo(getKeyCriteria_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -460076,7 +459305,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteria_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysRecordsTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -460110,6 +459339,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -460135,17 +459372,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteria_resultStandardScheme getScheme() { - return new getKeyCriteria_resultStandardScheme(); + public getKeysRecordsTimestrOrderPage_resultStandardScheme getScheme() { + return new getKeysRecordsTimestrOrderPage_resultStandardScheme(); } } - private static class getKeyCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysRecordsTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -460158,16 +459395,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5086 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5086.size); - long _key5087; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5088; - for (int _i5089 = 0; _i5089 < _map5086.size; ++_i5089) + org.apache.thrift.protocol.TMap _map5066 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5066.size); + long _key5067; + @org.apache.thrift.annotation.Nullable java.util.Map _val5068; + for (int _i5069 = 0; _i5069 < _map5066.size; ++_i5069) { - _key5087 = iprot.readI64(); - _val5088 = new com.cinchapi.concourse.thrift.TObject(); - _val5088.read(iprot); - struct.success.put(_key5087, _val5088); + _key5067 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map5070 = iprot.readMapBegin(); + _val5068 = new java.util.LinkedHashMap(2*_map5070.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5071; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5072; + for (int _i5073 = 0; _i5073 < _map5070.size; ++_i5073) + { + _key5071 = iprot.readString(); + _val5072 = new com.cinchapi.concourse.thrift.TObject(); + _val5072.read(iprot); + _val5068.put(_key5071, _val5072); + } + iprot.readMapEnd(); + } + struct.success.put(_key5067, _val5068); } iprot.readMapEnd(); } @@ -460196,13 +459445,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_resu break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -460215,18 +459473,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5090 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry> _iter5074 : struct.success.entrySet()) { - oprot.writeI64(_iter5090.getKey()); - _iter5090.getValue().write(oprot); + oprot.writeI64(_iter5074.getKey()); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5074.getValue().size())); + for (java.util.Map.Entry _iter5075 : _iter5074.getValue().entrySet()) + { + oprot.writeString(_iter5075.getKey()); + _iter5075.getValue().write(oprot); + } + oprot.writeMapEnd(); + } } oprot.writeMapEnd(); } @@ -460247,23 +459513,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteria_res struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeyCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysRecordsTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteria_resultTupleScheme getScheme() { - return new getKeyCriteria_resultTupleScheme(); + public getKeysRecordsTimestrOrderPage_resultTupleScheme getScheme() { + return new getKeysRecordsTimestrOrderPage_resultTupleScheme(); } } - private static class getKeyCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysRecordsTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -460278,14 +459549,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_resu if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5091 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5076 : struct.success.entrySet()) { - oprot.writeI64(_iter5091.getKey()); - _iter5091.getValue().write(oprot); + oprot.writeI64(_iter5076.getKey()); + { + oprot.writeI32(_iter5076.getValue().size()); + for (java.util.Map.Entry _iter5077 : _iter5076.getValue().entrySet()) + { + oprot.writeString(_iter5077.getKey()); + _iter5077.getValue().write(oprot); + } + } } } } @@ -460298,24 +459579,38 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_resu if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysRecordsTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5092 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5092.size); - long _key5093; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5094; - for (int _i5095 = 0; _i5095 < _map5092.size; ++_i5095) + org.apache.thrift.protocol.TMap _map5078 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5078.size); + long _key5079; + @org.apache.thrift.annotation.Nullable java.util.Map _val5080; + for (int _i5081 = 0; _i5081 < _map5078.size; ++_i5081) { - _key5093 = iprot.readI64(); - _val5094 = new com.cinchapi.concourse.thrift.TObject(); - _val5094.read(iprot); - struct.success.put(_key5093, _val5094); + _key5079 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map5082 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5080 = new java.util.LinkedHashMap(2*_map5082.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5083; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5084; + for (int _i5085 = 0; _i5085 < _map5082.size; ++_i5085) + { + _key5083 = iprot.readString(); + _val5084 = new com.cinchapi.concourse.thrift.TObject(); + _val5084.read(iprot); + _val5080.put(_key5083, _val5084); + } + } + struct.success.put(_key5079, _val5080); } } struct.setSuccessIsSet(true); @@ -460331,10 +459626,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_resul struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -460343,22 +459643,20 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaPage_args"); + public static class getKeyCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteria_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteria_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteria_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -460367,10 +459665,9 @@ public static class getKeyCriteriaPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -460390,13 +459687,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // CRITERIA return CRITERIA; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -460448,8 +459743,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -460457,16 +459750,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteria_args.class, metaDataMap); } - public getKeyCriteriaPage_args() { + public getKeyCriteria_args() { } - public getKeyCriteriaPage_args( + public getKeyCriteria_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -460474,7 +459766,6 @@ public getKeyCriteriaPage_args( this(); this.key = key; this.criteria = criteria; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -460483,16 +459774,13 @@ public getKeyCriteriaPage_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaPage_args(getKeyCriteriaPage_args other) { + public getKeyCriteria_args(getKeyCriteria_args other) { if (other.isSetKey()) { this.key = other.key; } if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -460505,15 +459793,14 @@ public getKeyCriteriaPage_args(getKeyCriteriaPage_args other) { } @Override - public getKeyCriteriaPage_args deepCopy() { - return new getKeyCriteriaPage_args(this); + public getKeyCriteria_args deepCopy() { + return new getKeyCriteria_args(this); } @Override public void clear() { this.key = null; this.criteria = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -460524,7 +459811,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteria_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -460549,7 +459836,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -460569,37 +459856,12 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -460624,7 +459886,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -460649,7 +459911,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -460688,14 +459950,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -460733,9 +459987,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -460761,8 +460012,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case CRITERIA: return isSetCriteria(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -460775,12 +460024,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaPage_args) - return this.equals((getKeyCriteriaPage_args)that); + if (that instanceof getKeyCriteria_args) + return this.equals((getKeyCriteria_args)that); return false; } - public boolean equals(getKeyCriteriaPage_args that) { + public boolean equals(getKeyCriteria_args that) { if (that == null) return false; if (this == that) @@ -460804,15 +460053,6 @@ public boolean equals(getKeyCriteriaPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -460855,10 +460095,6 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -460875,7 +460111,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaPage_args other) { + public int compareTo(getKeyCriteria_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -460902,16 +460138,6 @@ public int compareTo(getKeyCriteriaPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -460963,7 +460189,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteria_args("); boolean first = true; sb.append("key:"); @@ -460982,14 +460208,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -461023,9 +460241,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -461050,17 +460265,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaPage_argsStandardScheme getScheme() { - return new getKeyCriteriaPage_argsStandardScheme(); + public getKeyCriteria_argsStandardScheme getScheme() { + return new getKeyCriteria_argsStandardScheme(); } } - private static class getKeyCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -461087,16 +460302,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -461105,7 +460311,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -461114,7 +460320,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -461134,7 +460340,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteria_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -461148,11 +460354,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaPage struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -461174,17 +460375,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaPage } - private static class getKeyCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaPage_argsTupleScheme getScheme() { - return new getKeyCriteriaPage_argsTupleScheme(); + public getKeyCriteria_argsTupleScheme getScheme() { + return new getKeyCriteria_argsTupleScheme(); } } - private static class getKeyCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -461193,28 +460394,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_ if (struct.isSetCriteria()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -461227,9 +460422,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -461240,21 +460435,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_a struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -461266,16 +460456,16 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaPage_result"); + public static class getKeyCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteria_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteria_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteria_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -461368,13 +460558,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteria_result.class, metaDataMap); } - public getKeyCriteriaPage_result() { + public getKeyCriteria_result() { } - public getKeyCriteriaPage_result( + public getKeyCriteria_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -461390,7 +460580,7 @@ public getKeyCriteriaPage_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaPage_result(getKeyCriteriaPage_result other) { + public getKeyCriteria_result(getKeyCriteria_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -461418,8 +460608,8 @@ public getKeyCriteriaPage_result(getKeyCriteriaPage_result other) { } @Override - public getKeyCriteriaPage_result deepCopy() { - return new getKeyCriteriaPage_result(this); + public getKeyCriteria_result deepCopy() { + return new getKeyCriteria_result(this); } @Override @@ -461446,7 +460636,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -461471,7 +460661,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -461496,7 +460686,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -461521,7 +460711,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -461621,12 +460811,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaPage_result) - return this.equals((getKeyCriteriaPage_result)that); + if (that instanceof getKeyCriteria_result) + return this.equals((getKeyCriteria_result)that); return false; } - public boolean equals(getKeyCriteriaPage_result that) { + public boolean equals(getKeyCriteria_result that) { if (that == null) return false; if (this == that) @@ -461695,7 +460885,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaPage_result other) { + public int compareTo(getKeyCriteria_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -461762,7 +460952,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteria_result("); boolean first = true; sb.append("success:"); @@ -461821,17 +461011,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaPage_resultStandardScheme getScheme() { - return new getKeyCriteriaPage_resultStandardScheme(); + public getKeyCriteria_resultStandardScheme getScheme() { + return new getKeyCriteria_resultStandardScheme(); } } - private static class getKeyCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -461844,16 +461034,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5096 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5096.size); - long _key5097; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5098; - for (int _i5099 = 0; _i5099 < _map5096.size; ++_i5099) + org.apache.thrift.protocol.TMap _map5086 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5086.size); + long _key5087; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5088; + for (int _i5089 = 0; _i5089 < _map5086.size; ++_i5089) { - _key5097 = iprot.readI64(); - _val5098 = new com.cinchapi.concourse.thrift.TObject(); - _val5098.read(iprot); - struct.success.put(_key5097, _val5098); + _key5087 = iprot.readI64(); + _val5088 = new com.cinchapi.concourse.thrift.TObject(); + _val5088.read(iprot); + struct.success.put(_key5087, _val5088); } iprot.readMapEnd(); } @@ -461901,7 +461091,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteria_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -461909,10 +461099,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaPage oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5100 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5090 : struct.success.entrySet()) { - oprot.writeI64(_iter5100.getKey()); - _iter5100.getValue().write(oprot); + oprot.writeI64(_iter5090.getKey()); + _iter5090.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -461939,17 +461129,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaPage } - private static class getKeyCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaPage_resultTupleScheme getScheme() { - return new getKeyCriteriaPage_resultTupleScheme(); + public getKeyCriteria_resultTupleScheme getScheme() { + return new getKeyCriteria_resultTupleScheme(); } } - private static class getKeyCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -461968,10 +461158,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5101 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5091 : struct.success.entrySet()) { - oprot.writeI64(_iter5101.getKey()); - _iter5101.getValue().write(oprot); + oprot.writeI64(_iter5091.getKey()); + _iter5091.getValue().write(oprot); } } } @@ -461987,21 +461177,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5102 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5102.size); - long _key5103; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5104; - for (int _i5105 = 0; _i5105 < _map5102.size; ++_i5105) + org.apache.thrift.protocol.TMap _map5092 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5092.size); + long _key5093; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5094; + for (int _i5095 = 0; _i5095 < _map5092.size; ++_i5095) { - _key5103 = iprot.readI64(); - _val5104 = new com.cinchapi.concourse.thrift.TObject(); - _val5104.read(iprot); - struct.success.put(_key5103, _val5104); + _key5093 = iprot.readI64(); + _val5094 = new com.cinchapi.concourse.thrift.TObject(); + _val5094.read(iprot); + struct.success.put(_key5093, _val5094); } } struct.setSuccessIsSet(true); @@ -462029,22 +461219,22 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaOrder_args"); + public static class getKeyCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -462053,7 +461243,7 @@ public static class getKeyCriteriaOrder_args implements org.apache.thrift.TBase< public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CRITERIA((short)2, "criteria"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -462076,8 +461266,8 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // CRITERIA return CRITERIA; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -462134,8 +461324,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -462143,16 +461333,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaPage_args.class, metaDataMap); } - public getKeyCriteriaOrder_args() { + public getKeyCriteriaPage_args() { } - public getKeyCriteriaOrder_args( + public getKeyCriteriaPage_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -462160,7 +461350,7 @@ public getKeyCriteriaOrder_args( this(); this.key = key; this.criteria = criteria; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -462169,15 +461359,15 @@ public getKeyCriteriaOrder_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaOrder_args(getKeyCriteriaOrder_args other) { + public getKeyCriteriaPage_args(getKeyCriteriaPage_args other) { if (other.isSetKey()) { this.key = other.key; } if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -462191,15 +461381,15 @@ public getKeyCriteriaOrder_args(getKeyCriteriaOrder_args other) { } @Override - public getKeyCriteriaOrder_args deepCopy() { - return new getKeyCriteriaOrder_args(this); + public getKeyCriteriaPage_args deepCopy() { + return new getKeyCriteriaPage_args(this); } @Override public void clear() { this.key = null; this.criteria = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -462210,7 +461400,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -462235,7 +461425,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -462256,27 +461446,27 @@ public void setCriteriaIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -462285,7 +461475,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -462310,7 +461500,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -462335,7 +461525,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -462374,11 +461564,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -462419,8 +461609,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -462447,8 +461637,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case CRITERIA: return isSetCriteria(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -462461,12 +461651,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaOrder_args) - return this.equals((getKeyCriteriaOrder_args)that); + if (that instanceof getKeyCriteriaPage_args) + return this.equals((getKeyCriteriaPage_args)that); return false; } - public boolean equals(getKeyCriteriaOrder_args that) { + public boolean equals(getKeyCriteriaPage_args that) { if (that == null) return false; if (this == that) @@ -462490,12 +461680,12 @@ public boolean equals(getKeyCriteriaOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -462541,9 +461731,9 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -462561,7 +461751,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaOrder_args other) { + public int compareTo(getKeyCriteriaPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -462588,12 +461778,12 @@ public int compareTo(getKeyCriteriaOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -462649,7 +461839,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaPage_args("); boolean first = true; sb.append("key:"); @@ -462668,11 +461858,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -462709,8 +461899,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -462736,17 +461926,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaOrder_argsStandardScheme getScheme() { - return new getKeyCriteriaOrder_argsStandardScheme(); + public getKeyCriteriaPage_argsStandardScheme getScheme() { + return new getKeyCriteriaPage_argsStandardScheme(); } } - private static class getKeyCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -462773,11 +461963,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -462820,7 +462010,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -462834,9 +462024,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrde struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -462860,17 +462050,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrde } - private static class getKeyCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaOrder_argsTupleScheme getScheme() { - return new getKeyCriteriaOrder_argsTupleScheme(); + public getKeyCriteriaPage_argsTupleScheme getScheme() { + return new getKeyCriteriaPage_argsTupleScheme(); } } - private static class getKeyCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -462879,7 +462069,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder if (struct.isSetCriteria()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -462898,8 +462088,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -462913,7 +462103,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -462926,9 +462116,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_ struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -462952,16 +462142,16 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaOrder_result"); + public static class getKeyCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -463054,13 +462244,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaPage_result.class, metaDataMap); } - public getKeyCriteriaOrder_result() { + public getKeyCriteriaPage_result() { } - public getKeyCriteriaOrder_result( + public getKeyCriteriaPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -463076,7 +462266,7 @@ public getKeyCriteriaOrder_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaOrder_result(getKeyCriteriaOrder_result other) { + public getKeyCriteriaPage_result(getKeyCriteriaPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -463104,8 +462294,8 @@ public getKeyCriteriaOrder_result(getKeyCriteriaOrder_result other) { } @Override - public getKeyCriteriaOrder_result deepCopy() { - return new getKeyCriteriaOrder_result(this); + public getKeyCriteriaPage_result deepCopy() { + return new getKeyCriteriaPage_result(this); } @Override @@ -463132,7 +462322,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -463157,7 +462347,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -463182,7 +462372,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -463207,7 +462397,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -463307,12 +462497,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaOrder_result) - return this.equals((getKeyCriteriaOrder_result)that); + if (that instanceof getKeyCriteriaPage_result) + return this.equals((getKeyCriteriaPage_result)that); return false; } - public boolean equals(getKeyCriteriaOrder_result that) { + public boolean equals(getKeyCriteriaPage_result that) { if (that == null) return false; if (this == that) @@ -463381,7 +462571,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaOrder_result other) { + public int compareTo(getKeyCriteriaPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -463448,7 +462638,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaPage_result("); boolean first = true; sb.append("success:"); @@ -463507,17 +462697,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaOrder_resultStandardScheme getScheme() { - return new getKeyCriteriaOrder_resultStandardScheme(); + public getKeyCriteriaPage_resultStandardScheme getScheme() { + return new getKeyCriteriaPage_resultStandardScheme(); } } - private static class getKeyCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -463530,16 +462720,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5106 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5106.size); - long _key5107; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5108; - for (int _i5109 = 0; _i5109 < _map5106.size; ++_i5109) + org.apache.thrift.protocol.TMap _map5096 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5096.size); + long _key5097; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5098; + for (int _i5099 = 0; _i5099 < _map5096.size; ++_i5099) { - _key5107 = iprot.readI64(); - _val5108 = new com.cinchapi.concourse.thrift.TObject(); - _val5108.read(iprot); - struct.success.put(_key5107, _val5108); + _key5097 = iprot.readI64(); + _val5098 = new com.cinchapi.concourse.thrift.TObject(); + _val5098.read(iprot); + struct.success.put(_key5097, _val5098); } iprot.readMapEnd(); } @@ -463587,7 +462777,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -463595,10 +462785,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrde oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5110 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5100 : struct.success.entrySet()) { - oprot.writeI64(_iter5110.getKey()); - _iter5110.getValue().write(oprot); + oprot.writeI64(_iter5100.getKey()); + _iter5100.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -463625,17 +462815,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrde } - private static class getKeyCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaOrder_resultTupleScheme getScheme() { - return new getKeyCriteriaOrder_resultTupleScheme(); + public getKeyCriteriaPage_resultTupleScheme getScheme() { + return new getKeyCriteriaPage_resultTupleScheme(); } } - private static class getKeyCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -463654,10 +462844,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5111 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5101 : struct.success.entrySet()) { - oprot.writeI64(_iter5111.getKey()); - _iter5111.getValue().write(oprot); + oprot.writeI64(_iter5101.getKey()); + _iter5101.getValue().write(oprot); } } } @@ -463673,21 +462863,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5112 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5112.size); - long _key5113; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5114; - for (int _i5115 = 0; _i5115 < _map5112.size; ++_i5115) + org.apache.thrift.protocol.TMap _map5102 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5102.size); + long _key5103; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5104; + for (int _i5105 = 0; _i5105 < _map5102.size; ++_i5105) { - _key5113 = iprot.readI64(); - _val5114 = new com.cinchapi.concourse.thrift.TObject(); - _val5114.read(iprot); - struct.success.put(_key5113, _val5114); + _key5103 = iprot.readI64(); + _val5104 = new com.cinchapi.concourse.thrift.TObject(); + _val5104.read(iprot); + struct.success.put(_key5103, _val5104); } } struct.setSuccessIsSet(true); @@ -463715,24 +462905,22 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaOrderPage_args"); + public static class getKeyCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -463742,10 +462930,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CRITERIA((short)2, "criteria"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -463767,13 +462954,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -463827,8 +463012,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -463836,17 +463019,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaOrder_args.class, metaDataMap); } - public getKeyCriteriaOrderPage_args() { + public getKeyCriteriaOrder_args() { } - public getKeyCriteriaOrderPage_args( + public getKeyCriteriaOrder_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -463855,7 +463037,6 @@ public getKeyCriteriaOrderPage_args( this.key = key; this.criteria = criteria; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -463864,7 +463045,7 @@ public getKeyCriteriaOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaOrderPage_args(getKeyCriteriaOrderPage_args other) { + public getKeyCriteriaOrder_args(getKeyCriteriaOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -463874,9 +463055,6 @@ public getKeyCriteriaOrderPage_args(getKeyCriteriaOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -463889,8 +463067,8 @@ public getKeyCriteriaOrderPage_args(getKeyCriteriaOrderPage_args other) { } @Override - public getKeyCriteriaOrderPage_args deepCopy() { - return new getKeyCriteriaOrderPage_args(this); + public getKeyCriteriaOrder_args deepCopy() { + return new getKeyCriteriaOrder_args(this); } @Override @@ -463898,7 +463076,6 @@ public void clear() { this.key = null; this.criteria = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -463909,7 +463086,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -463934,7 +463111,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -463959,7 +463136,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -463979,37 +463156,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -464034,7 +463186,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -464059,7 +463211,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -464106,14 +463258,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -464154,9 +463298,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -464184,8 +463325,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -464198,12 +463337,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaOrderPage_args) - return this.equals((getKeyCriteriaOrderPage_args)that); + if (that instanceof getKeyCriteriaOrder_args) + return this.equals((getKeyCriteriaOrder_args)that); return false; } - public boolean equals(getKeyCriteriaOrderPage_args that) { + public boolean equals(getKeyCriteriaOrder_args that) { if (that == null) return false; if (this == that) @@ -464236,15 +463375,6 @@ public boolean equals(getKeyCriteriaOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -464291,10 +463421,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -464311,7 +463437,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaOrderPage_args other) { + public int compareTo(getKeyCriteriaOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -464348,16 +463474,6 @@ public int compareTo(getKeyCriteriaOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -464409,7 +463525,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaOrder_args("); boolean first = true; sb.append("key:"); @@ -464436,14 +463552,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -464480,9 +463588,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -464507,17 +463612,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaOrderPage_argsStandardScheme getScheme() { - return new getKeyCriteriaOrderPage_argsStandardScheme(); + public getKeyCriteriaOrder_argsStandardScheme getScheme() { + return new getKeyCriteriaOrder_argsStandardScheme(); } } - private static class getKeyCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -464553,16 +463658,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -464571,7 +463667,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -464580,7 +463676,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -464600,7 +463696,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -464619,11 +463715,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrde struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -464645,17 +463736,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrde } - private static class getKeyCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaOrderPage_argsTupleScheme getScheme() { - return new getKeyCriteriaOrderPage_argsTupleScheme(); + public getKeyCriteriaOrder_argsTupleScheme getScheme() { + return new getKeyCriteriaOrder_argsTupleScheme(); } } - private static class getKeyCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -464667,19 +463758,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -464689,9 +463777,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -464704,9 +463789,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -464722,21 +463807,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderP struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -464748,16 +463828,16 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaOrderPage_result"); + public static class getKeyCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -464850,13 +463930,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaOrder_result.class, metaDataMap); } - public getKeyCriteriaOrderPage_result() { + public getKeyCriteriaOrder_result() { } - public getKeyCriteriaOrderPage_result( + public getKeyCriteriaOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -464872,7 +463952,7 @@ public getKeyCriteriaOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaOrderPage_result(getKeyCriteriaOrderPage_result other) { + public getKeyCriteriaOrder_result(getKeyCriteriaOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -464900,8 +463980,8 @@ public getKeyCriteriaOrderPage_result(getKeyCriteriaOrderPage_result other) { } @Override - public getKeyCriteriaOrderPage_result deepCopy() { - return new getKeyCriteriaOrderPage_result(this); + public getKeyCriteriaOrder_result deepCopy() { + return new getKeyCriteriaOrder_result(this); } @Override @@ -464928,7 +464008,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -464953,7 +464033,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -464978,7 +464058,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -465003,7 +464083,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -465103,12 +464183,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaOrderPage_result) - return this.equals((getKeyCriteriaOrderPage_result)that); + if (that instanceof getKeyCriteriaOrder_result) + return this.equals((getKeyCriteriaOrder_result)that); return false; } - public boolean equals(getKeyCriteriaOrderPage_result that) { + public boolean equals(getKeyCriteriaOrder_result that) { if (that == null) return false; if (this == that) @@ -465177,7 +464257,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaOrderPage_result other) { + public int compareTo(getKeyCriteriaOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -465244,7 +464324,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaOrder_result("); boolean first = true; sb.append("success:"); @@ -465303,17 +464383,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaOrderPage_resultStandardScheme getScheme() { - return new getKeyCriteriaOrderPage_resultStandardScheme(); + public getKeyCriteriaOrder_resultStandardScheme getScheme() { + return new getKeyCriteriaOrder_resultStandardScheme(); } } - private static class getKeyCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -465326,16 +464406,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5116 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5116.size); - long _key5117; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5118; - for (int _i5119 = 0; _i5119 < _map5116.size; ++_i5119) + org.apache.thrift.protocol.TMap _map5106 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5106.size); + long _key5107; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5108; + for (int _i5109 = 0; _i5109 < _map5106.size; ++_i5109) { - _key5117 = iprot.readI64(); - _val5118 = new com.cinchapi.concourse.thrift.TObject(); - _val5118.read(iprot); - struct.success.put(_key5117, _val5118); + _key5107 = iprot.readI64(); + _val5108 = new com.cinchapi.concourse.thrift.TObject(); + _val5108.read(iprot); + struct.success.put(_key5107, _val5108); } iprot.readMapEnd(); } @@ -465383,7 +464463,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -465391,10 +464471,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrde oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5120 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5110 : struct.success.entrySet()) { - oprot.writeI64(_iter5120.getKey()); - _iter5120.getValue().write(oprot); + oprot.writeI64(_iter5110.getKey()); + _iter5110.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -465421,17 +464501,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrde } - private static class getKeyCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaOrderPage_resultTupleScheme getScheme() { - return new getKeyCriteriaOrderPage_resultTupleScheme(); + public getKeyCriteriaOrder_resultTupleScheme getScheme() { + return new getKeyCriteriaOrder_resultTupleScheme(); } } - private static class getKeyCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -465450,10 +464530,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5121 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5111 : struct.success.entrySet()) { - oprot.writeI64(_iter5121.getKey()); - _iter5121.getValue().write(oprot); + oprot.writeI64(_iter5111.getKey()); + _iter5111.getValue().write(oprot); } } } @@ -465469,21 +464549,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5122 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5122.size); - long _key5123; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5124; - for (int _i5125 = 0; _i5125 < _map5122.size; ++_i5125) + org.apache.thrift.protocol.TMap _map5112 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5112.size); + long _key5113; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5114; + for (int _i5115 = 0; _i5115 < _map5112.size; ++_i5115) { - _key5123 = iprot.readI64(); - _val5124 = new com.cinchapi.concourse.thrift.TObject(); - _val5124.read(iprot); - struct.success.put(_key5123, _val5124); + _key5113 = iprot.readI64(); + _val5114 = new com.cinchapi.concourse.thrift.TObject(); + _val5114.read(iprot); + struct.success.put(_key5113, _val5114); } } struct.setSuccessIsSet(true); @@ -465511,28 +464591,37 @@ private static S scheme(org.apache. } } - public static class getCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteria_args"); + public static class getKeyCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaOrderPage_args"); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteria_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteria_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaOrderPage_argsTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CRITERIA((short)1, "criteria"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + KEY((short)1, "key"), + CRITERIA((short)2, "criteria"), + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -465548,13 +464637,19 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CRITERIA + case 1: // KEY + return KEY; + case 2: // CRITERIA return CRITERIA; - case 2: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 3: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -465602,8 +464697,14 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -465611,20 +464712,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteria_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaOrderPage_args.class, metaDataMap); } - public getCriteria_args() { + public getKeyCriteriaOrderPage_args() { } - public getCriteria_args( + public getKeyCriteriaOrderPage_args( + java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); + this.key = key; this.criteria = criteria; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -465633,10 +464740,19 @@ public getCriteria_args( /** * Performs a deep copy on other. */ - public getCriteria_args(getCriteria_args other) { + public getKeyCriteriaOrderPage_args(getKeyCriteriaOrderPage_args other) { + if (other.isSetKey()) { + this.key = other.key; + } if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -465649,24 +464765,52 @@ public getCriteria_args(getCriteria_args other) { } @Override - public getCriteria_args deepCopy() { - return new getCriteria_args(this); + public getKeyCriteriaOrderPage_args deepCopy() { + return new getKeyCriteriaOrderPage_args(this); } @Override public void clear() { + this.key = null; this.criteria = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } + @org.apache.thrift.annotation.Nullable + public java.lang.String getKey() { + return this.key; + } + + public getKeyCriteriaOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; + return this; + } + + public void unsetKey() { + this.key = null; + } + + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; + } + + public void setKeyIsSet(boolean value) { + if (!value) { + this.key = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -465686,12 +464830,62 @@ public void setCriteriaIsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeyCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -465716,7 +464910,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -465741,7 +464935,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -465764,6 +464958,14 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case KEY: + if (value == null) { + unsetKey(); + } else { + setKey((java.lang.String)value); + } + break; + case CRITERIA: if (value == null) { unsetCriteria(); @@ -465772,6 +464974,22 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -465803,9 +465021,18 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case KEY: + return getKey(); + case CRITERIA: return getCriteria(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -465827,8 +465054,14 @@ public boolean isSet(_Fields field) { } switch (field) { + case KEY: + return isSetKey(); case CRITERIA: return isSetCriteria(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -465841,17 +465074,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteria_args) - return this.equals((getCriteria_args)that); + if (that instanceof getKeyCriteriaOrderPage_args) + return this.equals((getKeyCriteriaOrderPage_args)that); return false; } - public boolean equals(getCriteria_args that) { + public boolean equals(getKeyCriteriaOrderPage_args that) { if (that == null) return false; if (this == that) return true; + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) + return false; + if (!this.key.equals(that.key)) + return false; + } + boolean this_present_criteria = true && this.isSetCriteria(); boolean that_present_criteria = true && that.isSetCriteria(); if (this_present_criteria || that_present_criteria) { @@ -465861,6 +465103,24 @@ public boolean equals(getCriteria_args that) { return false; } + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -465895,10 +465155,22 @@ public boolean equals(getCriteria_args that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -465915,13 +465187,23 @@ public int hashCode() { } @Override - public int compareTo(getCriteria_args other) { + public int compareTo(getKeyCriteriaOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; @@ -465932,6 +465214,26 @@ public int compareTo(getCriteria_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -465983,9 +465285,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteria_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaOrderPage_args("); boolean first = true; + sb.append("key:"); + if (this.key == null) { + sb.append("null"); + } else { + sb.append(this.key); + } + first = false; + if (!first) sb.append(", "); sb.append("criteria:"); if (this.criteria == null) { sb.append("null"); @@ -465994,6 +465304,22 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -466027,6 +465353,12 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -466051,17 +465383,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteria_argsStandardScheme getScheme() { - return new getCriteria_argsStandardScheme(); + public getKeyCriteriaOrderPage_argsStandardScheme getScheme() { + return new getKeyCriteriaOrderPage_argsStandardScheme(); } } - private static class getCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -466071,7 +465403,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_args st break; } switch (schemeField.id) { - case 1: // CRITERIA + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // CRITERIA if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); @@ -466080,7 +465420,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -466089,7 +465447,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -466098,7 +465456,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -466118,15 +465476,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); + oprot.writeFieldEnd(); + } if (struct.criteria != null) { oprot.writeFieldBegin(CRITERIA_FIELD_DESC); struct.criteria.write(oprot); oprot.writeFieldEnd(); } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -466148,35 +465521,53 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteria_args s } - private static class getCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteria_argsTupleScheme getScheme() { - return new getCriteria_argsTupleScheme(); + public getKeyCriteriaOrderPage_argsTupleScheme getScheme() { + return new getKeyCriteriaOrderPage_argsTupleScheme(); } } - private static class getCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCriteria()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetCriteria()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetPage()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetCreds()) { + optionals.set(4); + } + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); + if (struct.isSetKey()) { + oprot.writeString(struct.key); + } if (struct.isSetCriteria()) { struct.criteria.write(oprot); } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -466189,25 +465580,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteria_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); + } + if (incoming.get(1)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); struct.setCriteriaIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -466219,18 +465624,18 @@ private static S scheme(org.apache. } } - public static class getCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteria_result"); + public static class getKeyCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteria_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteria_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -466313,9 +465718,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -466323,14 +465726,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteria_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaOrderPage_result.class, metaDataMap); } - public getCriteria_result() { + public getKeyCriteriaOrderPage_result() { } - public getCriteria_result( - java.util.Map> success, + public getKeyCriteriaOrderPage_result( + java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -466345,28 +465748,17 @@ public getCriteria_result( /** * Performs a deep copy on other. */ - public getCriteria_result(getCriteria_result other) { + public getKeyCriteriaOrderPage_result(getKeyCriteriaOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); + for (java.util.Map.Entry other_element : other.success.entrySet()) { java.lang.Long other_element_key = other_element.getKey(); - java.util.Map other_element_value = other_element.getValue(); + com.cinchapi.concourse.thrift.TObject other_element_value = other_element.getValue(); java.lang.Long __this__success_copy_key = other_element_key; - java.util.Map __this__success_copy_value = new java.util.LinkedHashMap(other_element_value.size()); - for (java.util.Map.Entry other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - com.cinchapi.concourse.thrift.TObject other_element_value_element_value = other_element_value_element.getValue(); - - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; - - com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value); - - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } + com.cinchapi.concourse.thrift.TObject __this__success_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value); __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -466384,8 +465776,8 @@ public getCriteria_result(getCriteria_result other) { } @Override - public getCriteria_result deepCopy() { - return new getCriteria_result(this); + public getKeyCriteriaOrderPage_result deepCopy() { + return new getKeyCriteriaOrderPage_result(this); } @Override @@ -466400,19 +465792,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map val) { + public void putToSuccess(long key, com.cinchapi.concourse.thrift.TObject val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map getSuccess() { return this.success; } - public getCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public getKeyCriteriaOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -466437,7 +465829,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -466462,7 +465854,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -466487,7 +465879,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -466514,7 +465906,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map)value); } break; @@ -466587,12 +465979,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteria_result) - return this.equals((getCriteria_result)that); + if (that instanceof getKeyCriteriaOrderPage_result) + return this.equals((getKeyCriteriaOrderPage_result)that); return false; } - public boolean equals(getCriteria_result that) { + public boolean equals(getKeyCriteriaOrderPage_result that) { if (that == null) return false; if (this == that) @@ -466661,7 +466053,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteria_result other) { + public int compareTo(getKeyCriteriaOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -466728,7 +466120,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteria_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaOrderPage_result("); boolean first = true; sb.append("success:"); @@ -466787,17 +466179,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteria_resultStandardScheme getScheme() { - return new getCriteria_resultStandardScheme(); + public getKeyCriteriaOrderPage_resultStandardScheme getScheme() { + return new getKeyCriteriaOrderPage_resultStandardScheme(); } } - private static class getCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -466810,28 +466202,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5126 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5126.size); - long _key5127; - @org.apache.thrift.annotation.Nullable java.util.Map _val5128; - for (int _i5129 = 0; _i5129 < _map5126.size; ++_i5129) + org.apache.thrift.protocol.TMap _map5116 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5116.size); + long _key5117; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5118; + for (int _i5119 = 0; _i5119 < _map5116.size; ++_i5119) { - _key5127 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map5130 = iprot.readMapBegin(); - _val5128 = new java.util.LinkedHashMap(2*_map5130.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5131; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5132; - for (int _i5133 = 0; _i5133 < _map5130.size; ++_i5133) - { - _key5131 = iprot.readString(); - _val5132 = new com.cinchapi.concourse.thrift.TObject(); - _val5132.read(iprot); - _val5128.put(_key5131, _val5132); - } - iprot.readMapEnd(); - } - struct.success.put(_key5127, _val5128); + _key5117 = iprot.readI64(); + _val5118 = new com.cinchapi.concourse.thrift.TObject(); + _val5118.read(iprot); + struct.success.put(_key5117, _val5118); } iprot.readMapEnd(); } @@ -466879,26 +466259,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5134 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); + for (java.util.Map.Entry _iter5120 : struct.success.entrySet()) { - oprot.writeI64(_iter5134.getKey()); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5134.getValue().size())); - for (java.util.Map.Entry _iter5135 : _iter5134.getValue().entrySet()) - { - oprot.writeString(_iter5135.getKey()); - _iter5135.getValue().write(oprot); - } - oprot.writeMapEnd(); - } + oprot.writeI64(_iter5120.getKey()); + _iter5120.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -466925,17 +466297,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteria_result } - private static class getCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteria_resultTupleScheme getScheme() { - return new getCriteria_resultTupleScheme(); + public getKeyCriteriaOrderPage_resultTupleScheme getScheme() { + return new getKeyCriteriaOrderPage_resultTupleScheme(); } } - private static class getCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -466954,17 +466326,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteria_result if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5136 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5121 : struct.success.entrySet()) { - oprot.writeI64(_iter5136.getKey()); - { - oprot.writeI32(_iter5136.getValue().size()); - for (java.util.Map.Entry _iter5137 : _iter5136.getValue().entrySet()) - { - oprot.writeString(_iter5137.getKey()); - _iter5137.getValue().write(oprot); - } - } + oprot.writeI64(_iter5121.getKey()); + _iter5121.getValue().write(oprot); } } } @@ -466980,32 +466345,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteria_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5138 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5138.size); - long _key5139; - @org.apache.thrift.annotation.Nullable java.util.Map _val5140; - for (int _i5141 = 0; _i5141 < _map5138.size; ++_i5141) + org.apache.thrift.protocol.TMap _map5122 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5122.size); + long _key5123; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5124; + for (int _i5125 = 0; _i5125 < _map5122.size; ++_i5125) { - _key5139 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map5142 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5140 = new java.util.LinkedHashMap(2*_map5142.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5143; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5144; - for (int _i5145 = 0; _i5145 < _map5142.size; ++_i5145) - { - _key5143 = iprot.readString(); - _val5144 = new com.cinchapi.concourse.thrift.TObject(); - _val5144.read(iprot); - _val5140.put(_key5143, _val5144); - } - } - struct.success.put(_key5139, _val5140); + _key5123 = iprot.readI64(); + _val5124 = new com.cinchapi.concourse.thrift.TObject(); + _val5124.read(iprot); + struct.success.put(_key5123, _val5124); } } struct.setSuccessIsSet(true); @@ -467033,20 +466387,18 @@ private static S scheme(org.apache. } } - public static class getCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaPage_args"); + public static class getCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteria_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteria_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteria_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -467054,10 +466406,9 @@ public static class getCriteriaPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -467075,13 +466426,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // CRITERIA return CRITERIA; - case 2: // PAGE - return PAGE; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -467131,8 +466480,6 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -467140,22 +466487,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteria_args.class, metaDataMap); } - public getCriteriaPage_args() { + public getCriteria_args() { } - public getCriteriaPage_args( + public getCriteria_args( com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.criteria = criteria; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -467164,13 +466509,10 @@ public getCriteriaPage_args( /** * Performs a deep copy on other. */ - public getCriteriaPage_args(getCriteriaPage_args other) { + public getCriteria_args(getCriteria_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -467183,14 +466525,13 @@ public getCriteriaPage_args(getCriteriaPage_args other) { } @Override - public getCriteriaPage_args deepCopy() { - return new getCriteriaPage_args(this); + public getCriteria_args deepCopy() { + return new getCriteria_args(this); } @Override public void clear() { this.criteria = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -467201,7 +466542,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -467221,37 +466562,12 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -467276,7 +466592,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -467301,7 +466617,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -467332,14 +466648,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -467374,9 +466682,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -467400,8 +466705,6 @@ public boolean isSet(_Fields field) { switch (field) { case CRITERIA: return isSetCriteria(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -467414,12 +466717,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaPage_args) - return this.equals((getCriteriaPage_args)that); + if (that instanceof getCriteria_args) + return this.equals((getCriteria_args)that); return false; } - public boolean equals(getCriteriaPage_args that) { + public boolean equals(getCriteria_args that) { if (that == null) return false; if (this == that) @@ -467434,15 +466737,6 @@ public boolean equals(getCriteriaPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -467481,10 +466775,6 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -467501,7 +466791,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaPage_args other) { + public int compareTo(getCriteria_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -467518,16 +466808,6 @@ public int compareTo(getCriteriaPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -467579,7 +466859,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteria_args("); boolean first = true; sb.append("criteria:"); @@ -467590,14 +466870,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -467631,9 +466903,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -467658,17 +466927,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaPage_argsStandardScheme getScheme() { - return new getCriteriaPage_argsStandardScheme(); + public getCriteria_argsStandardScheme getScheme() { + return new getCriteria_argsStandardScheme(); } } - private static class getCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -467687,16 +466956,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -467705,7 +466965,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -467714,7 +466974,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -467734,7 +466994,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteria_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -467743,11 +467003,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaPage_ar struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -467769,41 +467024,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaPage_ar } - private static class getCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaPage_argsTupleScheme getScheme() { - return new getCriteriaPage_argsTupleScheme(); + public getCriteria_argsTupleScheme getScheme() { + return new getCriteria_argsTupleScheme(); } } - private static class getCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetPage()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -467816,30 +467065,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); struct.setCriteriaIsSet(true); } if (incoming.get(1)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -467851,16 +467095,16 @@ private static S scheme(org.apache. } } - public static class getCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaPage_result"); + public static class getCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteria_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteria_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteria_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -467955,13 +467199,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteria_result.class, metaDataMap); } - public getCriteriaPage_result() { + public getCriteria_result() { } - public getCriteriaPage_result( + public getCriteria_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -467977,7 +467221,7 @@ public getCriteriaPage_result( /** * Performs a deep copy on other. */ - public getCriteriaPage_result(getCriteriaPage_result other) { + public getCriteria_result(getCriteria_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -468016,8 +467260,8 @@ public getCriteriaPage_result(getCriteriaPage_result other) { } @Override - public getCriteriaPage_result deepCopy() { - return new getCriteriaPage_result(this); + public getCriteria_result deepCopy() { + return new getCriteria_result(this); } @Override @@ -468044,7 +467288,7 @@ public java.util.Map> success) { + public getCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -468069,7 +467313,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -468094,7 +467338,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -468119,7 +467363,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -468219,12 +467463,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaPage_result) - return this.equals((getCriteriaPage_result)that); + if (that instanceof getCriteria_result) + return this.equals((getCriteria_result)that); return false; } - public boolean equals(getCriteriaPage_result that) { + public boolean equals(getCriteria_result that) { if (that == null) return false; if (this == that) @@ -468293,7 +467537,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaPage_result other) { + public int compareTo(getCriteria_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -468360,7 +467604,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteria_result("); boolean first = true; sb.append("success:"); @@ -468419,17 +467663,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaPage_resultStandardScheme getScheme() { - return new getCriteriaPage_resultStandardScheme(); + public getCriteria_resultStandardScheme getScheme() { + return new getCriteria_resultStandardScheme(); } } - private static class getCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -468442,28 +467686,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5146 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5146.size); - long _key5147; - @org.apache.thrift.annotation.Nullable java.util.Map _val5148; - for (int _i5149 = 0; _i5149 < _map5146.size; ++_i5149) + org.apache.thrift.protocol.TMap _map5126 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5126.size); + long _key5127; + @org.apache.thrift.annotation.Nullable java.util.Map _val5128; + for (int _i5129 = 0; _i5129 < _map5126.size; ++_i5129) { - _key5147 = iprot.readI64(); + _key5127 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5150 = iprot.readMapBegin(); - _val5148 = new java.util.LinkedHashMap(2*_map5150.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5151; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5152; - for (int _i5153 = 0; _i5153 < _map5150.size; ++_i5153) + org.apache.thrift.protocol.TMap _map5130 = iprot.readMapBegin(); + _val5128 = new java.util.LinkedHashMap(2*_map5130.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5131; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5132; + for (int _i5133 = 0; _i5133 < _map5130.size; ++_i5133) { - _key5151 = iprot.readString(); - _val5152 = new com.cinchapi.concourse.thrift.TObject(); - _val5152.read(iprot); - _val5148.put(_key5151, _val5152); + _key5131 = iprot.readString(); + _val5132 = new com.cinchapi.concourse.thrift.TObject(); + _val5132.read(iprot); + _val5128.put(_key5131, _val5132); } iprot.readMapEnd(); } - struct.success.put(_key5147, _val5148); + struct.success.put(_key5127, _val5128); } iprot.readMapEnd(); } @@ -468511,7 +467755,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteria_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -468519,15 +467763,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaPage_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5154 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5134 : struct.success.entrySet()) { - oprot.writeI64(_iter5154.getKey()); + oprot.writeI64(_iter5134.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5154.getValue().size())); - for (java.util.Map.Entry _iter5155 : _iter5154.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5134.getValue().size())); + for (java.util.Map.Entry _iter5135 : _iter5134.getValue().entrySet()) { - oprot.writeString(_iter5155.getKey()); - _iter5155.getValue().write(oprot); + oprot.writeString(_iter5135.getKey()); + _iter5135.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -468557,17 +467801,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaPage_re } - private static class getCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaPage_resultTupleScheme getScheme() { - return new getCriteriaPage_resultTupleScheme(); + public getCriteria_resultTupleScheme getScheme() { + return new getCriteria_resultTupleScheme(); } } - private static class getCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -468586,15 +467830,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5156 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5136 : struct.success.entrySet()) { - oprot.writeI64(_iter5156.getKey()); + oprot.writeI64(_iter5136.getKey()); { - oprot.writeI32(_iter5156.getValue().size()); - for (java.util.Map.Entry _iter5157 : _iter5156.getValue().entrySet()) + oprot.writeI32(_iter5136.getValue().size()); + for (java.util.Map.Entry _iter5137 : _iter5136.getValue().entrySet()) { - oprot.writeString(_iter5157.getKey()); - _iter5157.getValue().write(oprot); + oprot.writeString(_iter5137.getKey()); + _iter5137.getValue().write(oprot); } } } @@ -468612,32 +467856,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_res } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5158 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5158.size); - long _key5159; - @org.apache.thrift.annotation.Nullable java.util.Map _val5160; - for (int _i5161 = 0; _i5161 < _map5158.size; ++_i5161) + org.apache.thrift.protocol.TMap _map5138 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5138.size); + long _key5139; + @org.apache.thrift.annotation.Nullable java.util.Map _val5140; + for (int _i5141 = 0; _i5141 < _map5138.size; ++_i5141) { - _key5159 = iprot.readI64(); + _key5139 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5162 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5160 = new java.util.LinkedHashMap(2*_map5162.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5163; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5164; - for (int _i5165 = 0; _i5165 < _map5162.size; ++_i5165) + org.apache.thrift.protocol.TMap _map5142 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5140 = new java.util.LinkedHashMap(2*_map5142.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5143; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5144; + for (int _i5145 = 0; _i5145 < _map5142.size; ++_i5145) { - _key5163 = iprot.readString(); - _val5164 = new com.cinchapi.concourse.thrift.TObject(); - _val5164.read(iprot); - _val5160.put(_key5163, _val5164); + _key5143 = iprot.readString(); + _val5144 = new com.cinchapi.concourse.thrift.TObject(); + _val5144.read(iprot); + _val5140.put(_key5143, _val5144); } } - struct.success.put(_key5159, _val5160); + struct.success.put(_key5139, _val5140); } } struct.setSuccessIsSet(true); @@ -468665,20 +467909,20 @@ private static S scheme(org.apache. } } - public static class getCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaOrder_args"); + public static class getCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaPage_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -468686,7 +467930,7 @@ public static class getCriteriaOrder_args implements org.apache.thrift.TBase tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -468772,22 +468016,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaPage_args.class, metaDataMap); } - public getCriteriaOrder_args() { + public getCriteriaPage_args() { } - public getCriteriaOrder_args( + public getCriteriaPage_args( com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.criteria = criteria; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -468796,12 +468040,12 @@ public getCriteriaOrder_args( /** * Performs a deep copy on other. */ - public getCriteriaOrder_args(getCriteriaOrder_args other) { + public getCriteriaPage_args(getCriteriaPage_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -468815,14 +468059,14 @@ public getCriteriaOrder_args(getCriteriaOrder_args other) { } @Override - public getCriteriaOrder_args deepCopy() { - return new getCriteriaOrder_args(this); + public getCriteriaPage_args deepCopy() { + return new getCriteriaPage_args(this); } @Override public void clear() { this.criteria = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -468833,7 +468077,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -468854,27 +468098,27 @@ public void setCriteriaIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -468883,7 +468127,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -468908,7 +468152,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -468933,7 +468177,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -468964,11 +468208,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -469006,8 +468250,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -469032,8 +468276,8 @@ public boolean isSet(_Fields field) { switch (field) { case CRITERIA: return isSetCriteria(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -469046,12 +468290,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaOrder_args) - return this.equals((getCriteriaOrder_args)that); + if (that instanceof getCriteriaPage_args) + return this.equals((getCriteriaPage_args)that); return false; } - public boolean equals(getCriteriaOrder_args that) { + public boolean equals(getCriteriaPage_args that) { if (that == null) return false; if (this == that) @@ -469066,12 +468310,12 @@ public boolean equals(getCriteriaOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -469113,9 +468357,9 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -469133,7 +468377,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaOrder_args other) { + public int compareTo(getCriteriaPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -469150,12 +468394,12 @@ public int compareTo(getCriteriaOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -469211,7 +468455,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaPage_args("); boolean first = true; sb.append("criteria:"); @@ -469222,11 +468466,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -469263,8 +468507,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -469290,17 +468534,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaOrder_argsStandardScheme getScheme() { - return new getCriteriaOrder_argsStandardScheme(); + public getCriteriaPage_argsStandardScheme getScheme() { + return new getCriteriaPage_argsStandardScheme(); } } - private static class getCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -469319,11 +468563,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrder_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // ORDER + case 2: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -469366,7 +468610,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrder_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -469375,9 +468619,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrder_a struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -469401,23 +468645,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrder_a } - private static class getCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaOrder_argsTupleScheme getScheme() { - return new getCriteriaOrder_argsTupleScheme(); + public getCriteriaPage_argsTupleScheme getScheme() { + return new getCriteriaPage_argsTupleScheme(); } } - private static class getCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -469433,8 +468677,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_ar if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -469448,7 +468692,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -469457,9 +468701,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_arg struct.setCriteriaIsSet(true); } if (incoming.get(1)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -469483,16 +468727,16 @@ private static S scheme(org.apache. } } - public static class getCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaOrder_result"); + public static class getCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -469587,13 +468831,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaPage_result.class, metaDataMap); } - public getCriteriaOrder_result() { + public getCriteriaPage_result() { } - public getCriteriaOrder_result( + public getCriteriaPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -469609,7 +468853,7 @@ public getCriteriaOrder_result( /** * Performs a deep copy on other. */ - public getCriteriaOrder_result(getCriteriaOrder_result other) { + public getCriteriaPage_result(getCriteriaPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -469648,8 +468892,8 @@ public getCriteriaOrder_result(getCriteriaOrder_result other) { } @Override - public getCriteriaOrder_result deepCopy() { - return new getCriteriaOrder_result(this); + public getCriteriaPage_result deepCopy() { + return new getCriteriaPage_result(this); } @Override @@ -469676,7 +468920,7 @@ public java.util.Map> success) { + public getCriteriaPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -469701,7 +468945,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -469726,7 +468970,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -469751,7 +468995,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -469851,12 +469095,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaOrder_result) - return this.equals((getCriteriaOrder_result)that); + if (that instanceof getCriteriaPage_result) + return this.equals((getCriteriaPage_result)that); return false; } - public boolean equals(getCriteriaOrder_result that) { + public boolean equals(getCriteriaPage_result that) { if (that == null) return false; if (this == that) @@ -469925,7 +469169,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaOrder_result other) { + public int compareTo(getCriteriaPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -469992,7 +469236,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaPage_result("); boolean first = true; sb.append("success:"); @@ -470051,17 +469295,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaOrder_resultStandardScheme getScheme() { - return new getCriteriaOrder_resultStandardScheme(); + public getCriteriaPage_resultStandardScheme getScheme() { + return new getCriteriaPage_resultStandardScheme(); } } - private static class getCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -470074,28 +469318,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrder_re case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5166 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5166.size); - long _key5167; - @org.apache.thrift.annotation.Nullable java.util.Map _val5168; - for (int _i5169 = 0; _i5169 < _map5166.size; ++_i5169) + org.apache.thrift.protocol.TMap _map5146 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5146.size); + long _key5147; + @org.apache.thrift.annotation.Nullable java.util.Map _val5148; + for (int _i5149 = 0; _i5149 < _map5146.size; ++_i5149) { - _key5167 = iprot.readI64(); + _key5147 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5170 = iprot.readMapBegin(); - _val5168 = new java.util.LinkedHashMap(2*_map5170.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5171; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5172; - for (int _i5173 = 0; _i5173 < _map5170.size; ++_i5173) + org.apache.thrift.protocol.TMap _map5150 = iprot.readMapBegin(); + _val5148 = new java.util.LinkedHashMap(2*_map5150.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5151; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5152; + for (int _i5153 = 0; _i5153 < _map5150.size; ++_i5153) { - _key5171 = iprot.readString(); - _val5172 = new com.cinchapi.concourse.thrift.TObject(); - _val5172.read(iprot); - _val5168.put(_key5171, _val5172); + _key5151 = iprot.readString(); + _val5152 = new com.cinchapi.concourse.thrift.TObject(); + _val5152.read(iprot); + _val5148.put(_key5151, _val5152); } iprot.readMapEnd(); } - struct.success.put(_key5167, _val5168); + struct.success.put(_key5147, _val5148); } iprot.readMapEnd(); } @@ -470143,7 +469387,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrder_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -470151,15 +469395,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrder_r oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5174 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5154 : struct.success.entrySet()) { - oprot.writeI64(_iter5174.getKey()); + oprot.writeI64(_iter5154.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5174.getValue().size())); - for (java.util.Map.Entry _iter5175 : _iter5174.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5154.getValue().size())); + for (java.util.Map.Entry _iter5155 : _iter5154.getValue().entrySet()) { - oprot.writeString(_iter5175.getKey()); - _iter5175.getValue().write(oprot); + oprot.writeString(_iter5155.getKey()); + _iter5155.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -470189,17 +469433,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrder_r } - private static class getCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaOrder_resultTupleScheme getScheme() { - return new getCriteriaOrder_resultTupleScheme(); + public getCriteriaPage_resultTupleScheme getScheme() { + return new getCriteriaPage_resultTupleScheme(); } } - private static class getCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -470218,15 +469462,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_re if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5176 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5156 : struct.success.entrySet()) { - oprot.writeI64(_iter5176.getKey()); + oprot.writeI64(_iter5156.getKey()); { - oprot.writeI32(_iter5176.getValue().size()); - for (java.util.Map.Entry _iter5177 : _iter5176.getValue().entrySet()) + oprot.writeI32(_iter5156.getValue().size()); + for (java.util.Map.Entry _iter5157 : _iter5156.getValue().entrySet()) { - oprot.writeString(_iter5177.getKey()); - _iter5177.getValue().write(oprot); + oprot.writeString(_iter5157.getKey()); + _iter5157.getValue().write(oprot); } } } @@ -470244,32 +469488,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5178 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5178.size); - long _key5179; - @org.apache.thrift.annotation.Nullable java.util.Map _val5180; - for (int _i5181 = 0; _i5181 < _map5178.size; ++_i5181) + org.apache.thrift.protocol.TMap _map5158 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5158.size); + long _key5159; + @org.apache.thrift.annotation.Nullable java.util.Map _val5160; + for (int _i5161 = 0; _i5161 < _map5158.size; ++_i5161) { - _key5179 = iprot.readI64(); + _key5159 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5182 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5180 = new java.util.LinkedHashMap(2*_map5182.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5183; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5184; - for (int _i5185 = 0; _i5185 < _map5182.size; ++_i5185) + org.apache.thrift.protocol.TMap _map5162 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5160 = new java.util.LinkedHashMap(2*_map5162.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5163; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5164; + for (int _i5165 = 0; _i5165 < _map5162.size; ++_i5165) { - _key5183 = iprot.readString(); - _val5184 = new com.cinchapi.concourse.thrift.TObject(); - _val5184.read(iprot); - _val5180.put(_key5183, _val5184); + _key5163 = iprot.readString(); + _val5164 = new com.cinchapi.concourse.thrift.TObject(); + _val5164.read(iprot); + _val5160.put(_key5163, _val5164); } } - struct.success.put(_key5179, _val5180); + struct.success.put(_key5159, _val5160); } } struct.setSuccessIsSet(true); @@ -470297,22 +469541,20 @@ private static S scheme(org.apache. } } - public static class getCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaOrderPage_args"); + public static class getCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaOrder_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -470321,10 +469563,9 @@ public static class getCriteriaOrderPage_args implements org.apache.thrift.TBase public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), ORDER((short)2, "order"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -470344,13 +469585,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 2: // ORDER return ORDER; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -470402,8 +469641,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -470411,16 +469648,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaOrder_args.class, metaDataMap); } - public getCriteriaOrderPage_args() { + public getCriteriaOrder_args() { } - public getCriteriaOrderPage_args( + public getCriteriaOrder_args( com.cinchapi.concourse.thrift.TCriteria criteria, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -470428,7 +469664,6 @@ public getCriteriaOrderPage_args( this(); this.criteria = criteria; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -470437,16 +469672,13 @@ public getCriteriaOrderPage_args( /** * Performs a deep copy on other. */ - public getCriteriaOrderPage_args(getCriteriaOrderPage_args other) { + public getCriteriaOrder_args(getCriteriaOrder_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -470459,15 +469691,14 @@ public getCriteriaOrderPage_args(getCriteriaOrderPage_args other) { } @Override - public getCriteriaOrderPage_args deepCopy() { - return new getCriteriaOrderPage_args(this); + public getCriteriaOrder_args deepCopy() { + return new getCriteriaOrder_args(this); } @Override public void clear() { this.criteria = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -470478,7 +469709,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -470503,7 +469734,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -470523,37 +469754,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -470578,7 +469784,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -470603,7 +469809,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -470642,14 +469848,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -470687,9 +469885,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -470715,8 +469910,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -470729,12 +469922,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaOrderPage_args) - return this.equals((getCriteriaOrderPage_args)that); + if (that instanceof getCriteriaOrder_args) + return this.equals((getCriteriaOrder_args)that); return false; } - public boolean equals(getCriteriaOrderPage_args that) { + public boolean equals(getCriteriaOrder_args that) { if (that == null) return false; if (this == that) @@ -470758,15 +469951,6 @@ public boolean equals(getCriteriaOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -470809,10 +469993,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -470829,7 +470009,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaOrderPage_args other) { + public int compareTo(getCriteriaOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -470856,16 +470036,6 @@ public int compareTo(getCriteriaOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -470917,7 +470087,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaOrder_args("); boolean first = true; sb.append("criteria:"); @@ -470936,14 +470106,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -470980,9 +470142,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -471007,17 +470166,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaOrderPage_argsStandardScheme getScheme() { - return new getCriteriaOrderPage_argsStandardScheme(); + public getCriteriaOrder_argsStandardScheme getScheme() { + return new getCriteriaOrder_argsStandardScheme(); } } - private static class getCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -471045,16 +470204,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -471063,7 +470213,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -471072,7 +470222,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -471092,7 +470242,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPag } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -471106,11 +470256,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrderPa struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -471132,17 +470277,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrderPa } - private static class getCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaOrderPage_argsTupleScheme getScheme() { - return new getCriteriaOrderPage_argsTupleScheme(); + public getCriteriaOrder_argsTupleScheme getScheme() { + return new getCriteriaOrder_argsTupleScheme(); } } - private static class getCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -471151,28 +470296,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPag if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -471185,9 +470324,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPag } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); @@ -471199,21 +470338,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage struct.setOrderIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -471225,16 +470359,16 @@ private static S scheme(org.apache. } } - public static class getCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaOrderPage_result"); + public static class getCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -471329,13 +470463,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaOrder_result.class, metaDataMap); } - public getCriteriaOrderPage_result() { + public getCriteriaOrder_result() { } - public getCriteriaOrderPage_result( + public getCriteriaOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -471351,7 +470485,7 @@ public getCriteriaOrderPage_result( /** * Performs a deep copy on other. */ - public getCriteriaOrderPage_result(getCriteriaOrderPage_result other) { + public getCriteriaOrder_result(getCriteriaOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -471390,8 +470524,8 @@ public getCriteriaOrderPage_result(getCriteriaOrderPage_result other) { } @Override - public getCriteriaOrderPage_result deepCopy() { - return new getCriteriaOrderPage_result(this); + public getCriteriaOrder_result deepCopy() { + return new getCriteriaOrder_result(this); } @Override @@ -471418,7 +470552,7 @@ public java.util.Map> success) { + public getCriteriaOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -471443,7 +470577,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -471468,7 +470602,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -471493,7 +470627,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -471593,12 +470727,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaOrderPage_result) - return this.equals((getCriteriaOrderPage_result)that); + if (that instanceof getCriteriaOrder_result) + return this.equals((getCriteriaOrder_result)that); return false; } - public boolean equals(getCriteriaOrderPage_result that) { + public boolean equals(getCriteriaOrder_result that) { if (that == null) return false; if (this == that) @@ -471667,7 +470801,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaOrderPage_result other) { + public int compareTo(getCriteriaOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -471734,7 +470868,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaOrder_result("); boolean first = true; sb.append("success:"); @@ -471793,17 +470927,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaOrderPage_resultStandardScheme getScheme() { - return new getCriteriaOrderPage_resultStandardScheme(); + public getCriteriaOrder_resultStandardScheme getScheme() { + return new getCriteriaOrder_resultStandardScheme(); } } - private static class getCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -471816,28 +470950,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPag case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5186 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5186.size); - long _key5187; - @org.apache.thrift.annotation.Nullable java.util.Map _val5188; - for (int _i5189 = 0; _i5189 < _map5186.size; ++_i5189) + org.apache.thrift.protocol.TMap _map5166 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5166.size); + long _key5167; + @org.apache.thrift.annotation.Nullable java.util.Map _val5168; + for (int _i5169 = 0; _i5169 < _map5166.size; ++_i5169) { - _key5187 = iprot.readI64(); + _key5167 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5190 = iprot.readMapBegin(); - _val5188 = new java.util.LinkedHashMap(2*_map5190.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5191; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5192; - for (int _i5193 = 0; _i5193 < _map5190.size; ++_i5193) + org.apache.thrift.protocol.TMap _map5170 = iprot.readMapBegin(); + _val5168 = new java.util.LinkedHashMap(2*_map5170.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5171; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5172; + for (int _i5173 = 0; _i5173 < _map5170.size; ++_i5173) { - _key5191 = iprot.readString(); - _val5192 = new com.cinchapi.concourse.thrift.TObject(); - _val5192.read(iprot); - _val5188.put(_key5191, _val5192); + _key5171 = iprot.readString(); + _val5172 = new com.cinchapi.concourse.thrift.TObject(); + _val5172.read(iprot); + _val5168.put(_key5171, _val5172); } iprot.readMapEnd(); } - struct.success.put(_key5187, _val5188); + struct.success.put(_key5167, _val5168); } iprot.readMapEnd(); } @@ -471885,7 +471019,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPag } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -471893,15 +471027,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrderPa oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5194 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5174 : struct.success.entrySet()) { - oprot.writeI64(_iter5194.getKey()); + oprot.writeI64(_iter5174.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5194.getValue().size())); - for (java.util.Map.Entry _iter5195 : _iter5194.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5174.getValue().size())); + for (java.util.Map.Entry _iter5175 : _iter5174.getValue().entrySet()) { - oprot.writeString(_iter5195.getKey()); - _iter5195.getValue().write(oprot); + oprot.writeString(_iter5175.getKey()); + _iter5175.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -471931,17 +471065,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrderPa } - private static class getCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaOrderPage_resultTupleScheme getScheme() { - return new getCriteriaOrderPage_resultTupleScheme(); + public getCriteriaOrder_resultTupleScheme getScheme() { + return new getCriteriaOrder_resultTupleScheme(); } } - private static class getCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -471960,15 +471094,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPag if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5196 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5176 : struct.success.entrySet()) { - oprot.writeI64(_iter5196.getKey()); + oprot.writeI64(_iter5176.getKey()); { - oprot.writeI32(_iter5196.getValue().size()); - for (java.util.Map.Entry _iter5197 : _iter5196.getValue().entrySet()) + oprot.writeI32(_iter5176.getValue().size()); + for (java.util.Map.Entry _iter5177 : _iter5176.getValue().entrySet()) { - oprot.writeString(_iter5197.getKey()); - _iter5197.getValue().write(oprot); + oprot.writeString(_iter5177.getKey()); + _iter5177.getValue().write(oprot); } } } @@ -471986,32 +471120,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPag } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5198 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5198.size); - long _key5199; - @org.apache.thrift.annotation.Nullable java.util.Map _val5200; - for (int _i5201 = 0; _i5201 < _map5198.size; ++_i5201) + org.apache.thrift.protocol.TMap _map5178 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5178.size); + long _key5179; + @org.apache.thrift.annotation.Nullable java.util.Map _val5180; + for (int _i5181 = 0; _i5181 < _map5178.size; ++_i5181) { - _key5199 = iprot.readI64(); + _key5179 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5202 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5200 = new java.util.LinkedHashMap(2*_map5202.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5203; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5204; - for (int _i5205 = 0; _i5205 < _map5202.size; ++_i5205) + org.apache.thrift.protocol.TMap _map5182 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5180 = new java.util.LinkedHashMap(2*_map5182.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5183; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5184; + for (int _i5185 = 0; _i5185 < _map5182.size; ++_i5185) { - _key5203 = iprot.readString(); - _val5204 = new com.cinchapi.concourse.thrift.TObject(); - _val5204.read(iprot); - _val5200.put(_key5203, _val5204); + _key5183 = iprot.readString(); + _val5184 = new com.cinchapi.concourse.thrift.TObject(); + _val5184.read(iprot); + _val5180.put(_key5183, _val5184); } } - struct.success.put(_key5199, _val5200); + struct.success.put(_key5179, _val5180); } } struct.setSuccessIsSet(true); @@ -472039,28 +471173,34 @@ private static S scheme(org.apache. } } - public static class getCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCcl_args"); + public static class getCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaOrderPage_args"); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCcl_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCcl_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CCL((short)1, "ccl"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + CRITERIA((short)1, "criteria"), + ORDER((short)2, "order"), + PAGE((short)3, "page"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -472076,13 +471216,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CCL - return CCL; - case 2: // CREDS + case 1: // CRITERIA + return CRITERIA; + case 2: // ORDER + return ORDER; + case 3: // PAGE + return PAGE; + case 4: // CREDS return CREDS; - case 3: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -472130,8 +471274,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -472139,20 +471287,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCcl_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaOrderPage_args.class, metaDataMap); } - public getCcl_args() { + public getCriteriaOrderPage_args() { } - public getCcl_args( - java.lang.String ccl, + public getCriteriaOrderPage_args( + com.cinchapi.concourse.thrift.TCriteria criteria, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.ccl = ccl; + this.criteria = criteria; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -472161,9 +471313,15 @@ public getCcl_args( /** * Performs a deep copy on other. */ - public getCcl_args(getCcl_args other) { - if (other.isSetCcl()) { - this.ccl = other.ccl; + public getCriteriaOrderPage_args(getCriteriaOrderPage_args other) { + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -472177,40 +471335,92 @@ public getCcl_args(getCcl_args other) { } @Override - public getCcl_args deepCopy() { - return new getCcl_args(this); + public getCriteriaOrderPage_args deepCopy() { + return new getCriteriaOrderPage_args(this); } @Override public void clear() { - this.ccl = null; + this.criteria = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public getCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public getCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -472219,7 +471429,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -472244,7 +471454,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -472269,7 +471479,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -472292,11 +471502,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -472331,8 +471557,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -472355,8 +471587,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -472369,23 +471605,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCcl_args) - return this.equals((getCcl_args)that); + if (that instanceof getCriteriaOrderPage_args) + return this.equals((getCriteriaOrderPage_args)that); return false; } - public boolean equals(getCcl_args that) { + public boolean equals(getCriteriaOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -472423,9 +471677,17 @@ public boolean equals(getCcl_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -472443,19 +471705,39 @@ public int hashCode() { } @Override - public int compareTo(getCcl_args other) { + public int compareTo(getCriteriaOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -472511,14 +471793,30 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCcl_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaOrderPage_args("); boolean first = true; - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -472552,6 +471850,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -472576,17 +471883,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCcl_argsStandardScheme getScheme() { - return new getCcl_argsStandardScheme(); + public getCriteriaOrderPage_argsStandardScheme getScheme() { + return new getCriteriaOrderPage_argsStandardScheme(); } } - private static class getCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -472596,15 +471903,34 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_args struct) break; } switch (schemeField.id) { - case 1: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 1: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 2: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -472613,7 +471939,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_args struct) org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -472622,7 +471948,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_args struct) org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -472642,13 +471968,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_args struct) } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -472672,34 +472008,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCcl_args struct } - private static class getCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCcl_argsTupleScheme getScheme() { - return new getCcl_argsTupleScheme(); + public getCriteriaOrderPage_argsTupleScheme getScheme() { + return new getCriteriaOrderPage_argsTupleScheme(); } } - private static class getCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetTransaction()) { + optionals.set(4); + } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -472713,24 +472061,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCcl_args struct) } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(1)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(2)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -472742,31 +472101,28 @@ private static S scheme(org.apache. } } - public static class getCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCcl_result"); + public static class getCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCcl_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCcl_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -472790,8 +472146,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -472849,35 +472203,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCcl_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaOrderPage_result.class, metaDataMap); } - public getCcl_result() { + public getCriteriaOrderPage_result() { } - public getCcl_result( + public getCriteriaOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getCcl_result(getCcl_result other) { + public getCriteriaOrderPage_result(getCriteriaOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -472911,16 +472261,13 @@ public getCcl_result(getCcl_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getCcl_result deepCopy() { - return new getCcl_result(this); + public getCriteriaOrderPage_result deepCopy() { + return new getCriteriaOrderPage_result(this); } @Override @@ -472929,7 +472276,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -472948,7 +472294,7 @@ public java.util.Map> success) { + public getCriteriaOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -472973,7 +472319,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -472998,7 +472344,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -473019,11 +472365,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -473043,31 +472389,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -473099,15 +472420,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -473130,9 +472443,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -473153,20 +472463,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCcl_result) - return this.equals((getCcl_result)that); + if (that instanceof getCriteriaOrderPage_result) + return this.equals((getCriteriaOrderPage_result)that); return false; } - public boolean equals(getCcl_result that) { + public boolean equals(getCriteriaOrderPage_result that) { if (that == null) return false; if (this == that) @@ -473208,15 +472516,6 @@ public boolean equals(getCcl_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -473240,15 +472539,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getCcl_result other) { + public int compareTo(getCriteriaOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -473295,16 +472590,6 @@ public int compareTo(getCcl_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -473325,7 +472610,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCcl_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaOrderPage_result("); boolean first = true; sb.append("success:"); @@ -473359,14 +472644,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -473392,17 +472669,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCcl_resultStandardScheme getScheme() { - return new getCcl_resultStandardScheme(); + public getCriteriaOrderPage_resultStandardScheme getScheme() { + return new getCriteriaOrderPage_resultStandardScheme(); } } - private static class getCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -473415,28 +472692,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5206 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5206.size); - long _key5207; - @org.apache.thrift.annotation.Nullable java.util.Map _val5208; - for (int _i5209 = 0; _i5209 < _map5206.size; ++_i5209) + org.apache.thrift.protocol.TMap _map5186 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5186.size); + long _key5187; + @org.apache.thrift.annotation.Nullable java.util.Map _val5188; + for (int _i5189 = 0; _i5189 < _map5186.size; ++_i5189) { - _key5207 = iprot.readI64(); + _key5187 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5210 = iprot.readMapBegin(); - _val5208 = new java.util.LinkedHashMap(2*_map5210.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5211; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5212; - for (int _i5213 = 0; _i5213 < _map5210.size; ++_i5213) + org.apache.thrift.protocol.TMap _map5190 = iprot.readMapBegin(); + _val5188 = new java.util.LinkedHashMap(2*_map5190.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5191; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5192; + for (int _i5193 = 0; _i5193 < _map5190.size; ++_i5193) { - _key5211 = iprot.readString(); - _val5212 = new com.cinchapi.concourse.thrift.TObject(); - _val5212.read(iprot); - _val5208.put(_key5211, _val5212); + _key5191 = iprot.readString(); + _val5192 = new com.cinchapi.concourse.thrift.TObject(); + _val5192.read(iprot); + _val5188.put(_key5191, _val5192); } iprot.readMapEnd(); } - struct.success.put(_key5207, _val5208); + struct.success.put(_key5187, _val5188); } iprot.readMapEnd(); } @@ -473465,22 +472742,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_result struc break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -473493,7 +472761,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_result struc } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -473501,15 +472769,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCcl_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5214 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5194 : struct.success.entrySet()) { - oprot.writeI64(_iter5214.getKey()); + oprot.writeI64(_iter5194.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5214.getValue().size())); - for (java.util.Map.Entry _iter5215 : _iter5214.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5194.getValue().size())); + for (java.util.Map.Entry _iter5195 : _iter5194.getValue().entrySet()) { - oprot.writeString(_iter5215.getKey()); - _iter5215.getValue().write(oprot); + oprot.writeString(_iter5195.getKey()); + _iter5195.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -473533,28 +472801,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCcl_result stru struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCcl_resultTupleScheme getScheme() { - return new getCcl_resultTupleScheme(); + public getCriteriaOrderPage_resultTupleScheme getScheme() { + return new getCriteriaOrderPage_resultTupleScheme(); } } - private static class getCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -473569,22 +472832,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCcl_result struc if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5216 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5196 : struct.success.entrySet()) { - oprot.writeI64(_iter5216.getKey()); + oprot.writeI64(_iter5196.getKey()); { - oprot.writeI32(_iter5216.getValue().size()); - for (java.util.Map.Entry _iter5217 : _iter5216.getValue().entrySet()) + oprot.writeI32(_iter5196.getValue().size()); + for (java.util.Map.Entry _iter5197 : _iter5196.getValue().entrySet()) { - oprot.writeString(_iter5217.getKey()); - _iter5217.getValue().write(oprot); + oprot.writeString(_iter5197.getKey()); + _iter5197.getValue().write(oprot); } } } @@ -473599,38 +472859,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCcl_result struc if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5218 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5218.size); - long _key5219; - @org.apache.thrift.annotation.Nullable java.util.Map _val5220; - for (int _i5221 = 0; _i5221 < _map5218.size; ++_i5221) + org.apache.thrift.protocol.TMap _map5198 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5198.size); + long _key5199; + @org.apache.thrift.annotation.Nullable java.util.Map _val5200; + for (int _i5201 = 0; _i5201 < _map5198.size; ++_i5201) { - _key5219 = iprot.readI64(); + _key5199 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5222 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5220 = new java.util.LinkedHashMap(2*_map5222.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5223; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5224; - for (int _i5225 = 0; _i5225 < _map5222.size; ++_i5225) + org.apache.thrift.protocol.TMap _map5202 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5200 = new java.util.LinkedHashMap(2*_map5202.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5203; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5204; + for (int _i5205 = 0; _i5205 < _map5202.size; ++_i5205) { - _key5223 = iprot.readString(); - _val5224 = new com.cinchapi.concourse.thrift.TObject(); - _val5224.read(iprot); - _val5220.put(_key5223, _val5224); + _key5203 = iprot.readString(); + _val5204 = new com.cinchapi.concourse.thrift.TObject(); + _val5204.read(iprot); + _val5200.put(_key5203, _val5204); } } - struct.success.put(_key5219, _val5220); + struct.success.put(_key5199, _val5200); } } struct.setSuccessIsSet(true); @@ -473646,15 +472903,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCcl_result struct struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -473663,20 +472915,18 @@ private static S scheme(org.apache. } } - public static class getCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclPage_args"); + public static class getCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCcl_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCcl_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCcl_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -473684,10 +472934,9 @@ public static class getCclPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -473705,13 +472954,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // CCL return CCL; - case 2: // PAGE - return PAGE; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -473761,8 +473008,6 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -473770,22 +473015,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCcl_args.class, metaDataMap); } - public getCclPage_args() { + public getCcl_args() { } - public getCclPage_args( + public getCcl_args( java.lang.String ccl, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.ccl = ccl; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -473794,13 +473037,10 @@ public getCclPage_args( /** * Performs a deep copy on other. */ - public getCclPage_args(getCclPage_args other) { + public getCcl_args(getCcl_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -473813,14 +473053,13 @@ public getCclPage_args(getCclPage_args other) { } @Override - public getCclPage_args deepCopy() { - return new getCclPage_args(this); + public getCcl_args deepCopy() { + return new getCcl_args(this); } @Override public void clear() { this.ccl = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -473831,7 +473070,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -473851,37 +473090,12 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -473906,7 +473120,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -473931,7 +473145,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -473962,14 +473176,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -474004,9 +473210,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -474030,8 +473233,6 @@ public boolean isSet(_Fields field) { switch (field) { case CCL: return isSetCcl(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -474044,12 +473245,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclPage_args) - return this.equals((getCclPage_args)that); + if (that instanceof getCcl_args) + return this.equals((getCcl_args)that); return false; } - public boolean equals(getCclPage_args that) { + public boolean equals(getCcl_args that) { if (that == null) return false; if (this == that) @@ -474064,15 +473265,6 @@ public boolean equals(getCclPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -474111,10 +473303,6 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -474131,7 +473319,7 @@ public int hashCode() { } @Override - public int compareTo(getCclPage_args other) { + public int compareTo(getCcl_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -474148,16 +473336,6 @@ public int compareTo(getCclPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -474209,7 +473387,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCcl_args("); boolean first = true; sb.append("ccl:"); @@ -474220,14 +473398,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -474258,9 +473428,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -474285,17 +473452,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclPage_argsStandardScheme getScheme() { - return new getCclPage_argsStandardScheme(); + public getCcl_argsStandardScheme getScheme() { + return new getCcl_argsStandardScheme(); } } - private static class getCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -474313,16 +473480,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -474331,7 +473489,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -474340,7 +473498,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -474360,7 +473518,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_args str } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCcl_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -474369,11 +473527,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclPage_args st oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -474395,41 +473548,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclPage_args st } - private static class getCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclPage_argsTupleScheme getScheme() { - return new getCclPage_argsTupleScheme(); + public getCcl_argsTupleScheme getScheme() { + return new getCcl_argsTupleScheme(); } } - private static class getCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { optionals.set(0); } - if (struct.isSetPage()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -474442,29 +473589,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclPage_args str } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); } if (incoming.get(1)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -474476,8 +473618,8 @@ private static S scheme(org.apache. } } - public static class getCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclPage_result"); + public static class getCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCcl_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -474485,8 +473627,8 @@ public static class getCclPage_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -474587,13 +473729,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCcl_result.class, metaDataMap); } - public getCclPage_result() { + public getCcl_result() { } - public getCclPage_result( + public getCcl_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -474611,7 +473753,7 @@ public getCclPage_result( /** * Performs a deep copy on other. */ - public getCclPage_result(getCclPage_result other) { + public getCcl_result(getCcl_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -474653,8 +473795,8 @@ public getCclPage_result(getCclPage_result other) { } @Override - public getCclPage_result deepCopy() { - return new getCclPage_result(this); + public getCcl_result deepCopy() { + return new getCcl_result(this); } @Override @@ -474682,7 +473824,7 @@ public java.util.Map> success) { + public getCcl_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -474707,7 +473849,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -474732,7 +473874,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -474757,7 +473899,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -474782,7 +473924,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -474895,12 +474037,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclPage_result) - return this.equals((getCclPage_result)that); + if (that instanceof getCcl_result) + return this.equals((getCcl_result)that); return false; } - public boolean equals(getCclPage_result that) { + public boolean equals(getCcl_result that) { if (that == null) return false; if (this == that) @@ -474982,7 +474124,7 @@ public int hashCode() { } @Override - public int compareTo(getCclPage_result other) { + public int compareTo(getCcl_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -475059,7 +474201,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCcl_result("); boolean first = true; sb.append("success:"); @@ -475126,17 +474268,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclPage_resultStandardScheme getScheme() { - return new getCclPage_resultStandardScheme(); + public getCcl_resultStandardScheme getScheme() { + return new getCcl_resultStandardScheme(); } } - private static class getCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -475149,28 +474291,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5226 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5226.size); - long _key5227; - @org.apache.thrift.annotation.Nullable java.util.Map _val5228; - for (int _i5229 = 0; _i5229 < _map5226.size; ++_i5229) + org.apache.thrift.protocol.TMap _map5206 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5206.size); + long _key5207; + @org.apache.thrift.annotation.Nullable java.util.Map _val5208; + for (int _i5209 = 0; _i5209 < _map5206.size; ++_i5209) { - _key5227 = iprot.readI64(); + _key5207 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5230 = iprot.readMapBegin(); - _val5228 = new java.util.LinkedHashMap(2*_map5230.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5231; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5232; - for (int _i5233 = 0; _i5233 < _map5230.size; ++_i5233) + org.apache.thrift.protocol.TMap _map5210 = iprot.readMapBegin(); + _val5208 = new java.util.LinkedHashMap(2*_map5210.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5211; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5212; + for (int _i5213 = 0; _i5213 < _map5210.size; ++_i5213) { - _key5231 = iprot.readString(); - _val5232 = new com.cinchapi.concourse.thrift.TObject(); - _val5232.read(iprot); - _val5228.put(_key5231, _val5232); + _key5211 = iprot.readString(); + _val5212 = new com.cinchapi.concourse.thrift.TObject(); + _val5212.read(iprot); + _val5208.put(_key5211, _val5212); } iprot.readMapEnd(); } - struct.success.put(_key5227, _val5228); + struct.success.put(_key5207, _val5208); } iprot.readMapEnd(); } @@ -475227,7 +474369,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_result s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCcl_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -475235,15 +474377,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclPage_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5234 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5214 : struct.success.entrySet()) { - oprot.writeI64(_iter5234.getKey()); + oprot.writeI64(_iter5214.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5234.getValue().size())); - for (java.util.Map.Entry _iter5235 : _iter5234.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5214.getValue().size())); + for (java.util.Map.Entry _iter5215 : _iter5214.getValue().entrySet()) { - oprot.writeString(_iter5235.getKey()); - _iter5235.getValue().write(oprot); + oprot.writeString(_iter5215.getKey()); + _iter5215.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -475278,17 +474420,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclPage_result } - private static class getCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclPage_resultTupleScheme getScheme() { - return new getCclPage_resultTupleScheme(); + public getCcl_resultTupleScheme getScheme() { + return new getCcl_resultTupleScheme(); } } - private static class getCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -475310,15 +474452,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclPage_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5236 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5216 : struct.success.entrySet()) { - oprot.writeI64(_iter5236.getKey()); + oprot.writeI64(_iter5216.getKey()); { - oprot.writeI32(_iter5236.getValue().size()); - for (java.util.Map.Entry _iter5237 : _iter5236.getValue().entrySet()) + oprot.writeI32(_iter5216.getValue().size()); + for (java.util.Map.Entry _iter5217 : _iter5216.getValue().entrySet()) { - oprot.writeString(_iter5237.getKey()); - _iter5237.getValue().write(oprot); + oprot.writeString(_iter5217.getKey()); + _iter5217.getValue().write(oprot); } } } @@ -475339,32 +474481,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclPage_result s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5238 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5238.size); - long _key5239; - @org.apache.thrift.annotation.Nullable java.util.Map _val5240; - for (int _i5241 = 0; _i5241 < _map5238.size; ++_i5241) + org.apache.thrift.protocol.TMap _map5218 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5218.size); + long _key5219; + @org.apache.thrift.annotation.Nullable java.util.Map _val5220; + for (int _i5221 = 0; _i5221 < _map5218.size; ++_i5221) { - _key5239 = iprot.readI64(); + _key5219 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5242 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5240 = new java.util.LinkedHashMap(2*_map5242.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5243; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5244; - for (int _i5245 = 0; _i5245 < _map5242.size; ++_i5245) + org.apache.thrift.protocol.TMap _map5222 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5220 = new java.util.LinkedHashMap(2*_map5222.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5223; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5224; + for (int _i5225 = 0; _i5225 < _map5222.size; ++_i5225) { - _key5243 = iprot.readString(); - _val5244 = new com.cinchapi.concourse.thrift.TObject(); - _val5244.read(iprot); - _val5240.put(_key5243, _val5244); + _key5223 = iprot.readString(); + _val5224 = new com.cinchapi.concourse.thrift.TObject(); + _val5224.read(iprot); + _val5220.put(_key5223, _val5224); } } - struct.success.put(_key5239, _val5240); + struct.success.put(_key5219, _val5220); } } struct.setSuccessIsSet(true); @@ -475397,20 +474539,20 @@ private static S scheme(org.apache. } } - public static class getCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclOrder_args"); + public static class getCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclPage_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -475418,7 +474560,7 @@ public static class getCclOrder_args implements org.apache.thrift.TBase tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -475504,22 +474646,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclPage_args.class, metaDataMap); } - public getCclOrder_args() { + public getCclPage_args() { } - public getCclOrder_args( + public getCclPage_args( java.lang.String ccl, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.ccl = ccl; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -475528,12 +474670,12 @@ public getCclOrder_args( /** * Performs a deep copy on other. */ - public getCclOrder_args(getCclOrder_args other) { + public getCclPage_args(getCclPage_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -475547,14 +474689,14 @@ public getCclOrder_args(getCclOrder_args other) { } @Override - public getCclOrder_args deepCopy() { - return new getCclOrder_args(this); + public getCclPage_args deepCopy() { + return new getCclPage_args(this); } @Override public void clear() { this.ccl = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -475565,7 +474707,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -475586,27 +474728,27 @@ public void setCclIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -475615,7 +474757,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -475640,7 +474782,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -475665,7 +474807,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -475696,11 +474838,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -475738,8 +474880,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -475764,8 +474906,8 @@ public boolean isSet(_Fields field) { switch (field) { case CCL: return isSetCcl(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -475778,12 +474920,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclOrder_args) - return this.equals((getCclOrder_args)that); + if (that instanceof getCclPage_args) + return this.equals((getCclPage_args)that); return false; } - public boolean equals(getCclOrder_args that) { + public boolean equals(getCclPage_args that) { if (that == null) return false; if (this == that) @@ -475798,12 +474940,12 @@ public boolean equals(getCclOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -475845,9 +474987,9 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -475865,7 +475007,7 @@ public int hashCode() { } @Override - public int compareTo(getCclOrder_args other) { + public int compareTo(getCclPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -475882,12 +475024,12 @@ public int compareTo(getCclOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -475943,7 +475085,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclPage_args("); boolean first = true; sb.append("ccl:"); @@ -475954,11 +475096,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -475992,8 +475134,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -476019,17 +475161,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclOrder_argsStandardScheme getScheme() { - return new getCclOrder_argsStandardScheme(); + public getCclPage_argsStandardScheme getScheme() { + return new getCclPage_argsStandardScheme(); } } - private static class getCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -476047,11 +475189,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrder_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // ORDER + case 2: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -476094,7 +475236,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrder_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -476103,9 +475245,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrder_args s oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -476129,23 +475271,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrder_args s } - private static class getCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclOrder_argsTupleScheme getScheme() { - return new getCclOrder_argsTupleScheme(); + public getCclPage_argsTupleScheme getScheme() { + return new getCclPage_argsTupleScheme(); } } - private static class getCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { optionals.set(0); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -476161,8 +475303,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrder_args st if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -476176,7 +475318,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrder_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -476184,9 +475326,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrder_args str struct.setCclIsSet(true); } if (incoming.get(1)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -476210,8 +475352,8 @@ private static S scheme(org.apache. } } - public static class getCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclOrder_result"); + public static class getCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -476219,8 +475361,8 @@ public static class getCclOrder_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -476321,13 +475463,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclPage_result.class, metaDataMap); } - public getCclOrder_result() { + public getCclPage_result() { } - public getCclOrder_result( + public getCclPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -476345,7 +475487,7 @@ public getCclOrder_result( /** * Performs a deep copy on other. */ - public getCclOrder_result(getCclOrder_result other) { + public getCclPage_result(getCclPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -476387,8 +475529,8 @@ public getCclOrder_result(getCclOrder_result other) { } @Override - public getCclOrder_result deepCopy() { - return new getCclOrder_result(this); + public getCclPage_result deepCopy() { + return new getCclPage_result(this); } @Override @@ -476416,7 +475558,7 @@ public java.util.Map> success) { + public getCclPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -476441,7 +475583,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -476466,7 +475608,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -476491,7 +475633,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -476516,7 +475658,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -476629,12 +475771,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclOrder_result) - return this.equals((getCclOrder_result)that); + if (that instanceof getCclPage_result) + return this.equals((getCclPage_result)that); return false; } - public boolean equals(getCclOrder_result that) { + public boolean equals(getCclPage_result that) { if (that == null) return false; if (this == that) @@ -476716,7 +475858,7 @@ public int hashCode() { } @Override - public int compareTo(getCclOrder_result other) { + public int compareTo(getCclPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -476793,7 +475935,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclPage_result("); boolean first = true; sb.append("success:"); @@ -476860,17 +476002,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclOrder_resultStandardScheme getScheme() { - return new getCclOrder_resultStandardScheme(); + public getCclPage_resultStandardScheme getScheme() { + return new getCclPage_resultStandardScheme(); } } - private static class getCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -476883,28 +476025,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrder_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5246 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5246.size); - long _key5247; - @org.apache.thrift.annotation.Nullable java.util.Map _val5248; - for (int _i5249 = 0; _i5249 < _map5246.size; ++_i5249) + org.apache.thrift.protocol.TMap _map5226 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5226.size); + long _key5227; + @org.apache.thrift.annotation.Nullable java.util.Map _val5228; + for (int _i5229 = 0; _i5229 < _map5226.size; ++_i5229) { - _key5247 = iprot.readI64(); + _key5227 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5250 = iprot.readMapBegin(); - _val5248 = new java.util.LinkedHashMap(2*_map5250.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5251; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5252; - for (int _i5253 = 0; _i5253 < _map5250.size; ++_i5253) + org.apache.thrift.protocol.TMap _map5230 = iprot.readMapBegin(); + _val5228 = new java.util.LinkedHashMap(2*_map5230.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5231; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5232; + for (int _i5233 = 0; _i5233 < _map5230.size; ++_i5233) { - _key5251 = iprot.readString(); - _val5252 = new com.cinchapi.concourse.thrift.TObject(); - _val5252.read(iprot); - _val5248.put(_key5251, _val5252); + _key5231 = iprot.readString(); + _val5232 = new com.cinchapi.concourse.thrift.TObject(); + _val5232.read(iprot); + _val5228.put(_key5231, _val5232); } iprot.readMapEnd(); } - struct.success.put(_key5247, _val5248); + struct.success.put(_key5227, _val5228); } iprot.readMapEnd(); } @@ -476961,7 +476103,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrder_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -476969,15 +476111,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrder_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5254 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5234 : struct.success.entrySet()) { - oprot.writeI64(_iter5254.getKey()); + oprot.writeI64(_iter5234.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5254.getValue().size())); - for (java.util.Map.Entry _iter5255 : _iter5254.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5234.getValue().size())); + for (java.util.Map.Entry _iter5235 : _iter5234.getValue().entrySet()) { - oprot.writeString(_iter5255.getKey()); - _iter5255.getValue().write(oprot); + oprot.writeString(_iter5235.getKey()); + _iter5235.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -477012,17 +476154,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrder_result } - private static class getCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclOrder_resultTupleScheme getScheme() { - return new getCclOrder_resultTupleScheme(); + public getCclPage_resultTupleScheme getScheme() { + return new getCclPage_resultTupleScheme(); } } - private static class getCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -477044,15 +476186,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrder_result if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5256 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5236 : struct.success.entrySet()) { - oprot.writeI64(_iter5256.getKey()); + oprot.writeI64(_iter5236.getKey()); { - oprot.writeI32(_iter5256.getValue().size()); - for (java.util.Map.Entry _iter5257 : _iter5256.getValue().entrySet()) + oprot.writeI32(_iter5236.getValue().size()); + for (java.util.Map.Entry _iter5237 : _iter5236.getValue().entrySet()) { - oprot.writeString(_iter5257.getKey()); - _iter5257.getValue().write(oprot); + oprot.writeString(_iter5237.getKey()); + _iter5237.getValue().write(oprot); } } } @@ -477073,32 +476215,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrder_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5258 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5258.size); - long _key5259; - @org.apache.thrift.annotation.Nullable java.util.Map _val5260; - for (int _i5261 = 0; _i5261 < _map5258.size; ++_i5261) + org.apache.thrift.protocol.TMap _map5238 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5238.size); + long _key5239; + @org.apache.thrift.annotation.Nullable java.util.Map _val5240; + for (int _i5241 = 0; _i5241 < _map5238.size; ++_i5241) { - _key5259 = iprot.readI64(); + _key5239 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5262 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5260 = new java.util.LinkedHashMap(2*_map5262.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5263; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5264; - for (int _i5265 = 0; _i5265 < _map5262.size; ++_i5265) + org.apache.thrift.protocol.TMap _map5242 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5240 = new java.util.LinkedHashMap(2*_map5242.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5243; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5244; + for (int _i5245 = 0; _i5245 < _map5242.size; ++_i5245) { - _key5263 = iprot.readString(); - _val5264 = new com.cinchapi.concourse.thrift.TObject(); - _val5264.read(iprot); - _val5260.put(_key5263, _val5264); + _key5243 = iprot.readString(); + _val5244 = new com.cinchapi.concourse.thrift.TObject(); + _val5244.read(iprot); + _val5240.put(_key5243, _val5244); } } - struct.success.put(_key5259, _val5260); + struct.success.put(_key5239, _val5240); } } struct.setSuccessIsSet(true); @@ -477131,22 +476273,20 @@ private static S scheme(org.apache. } } - public static class getCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclOrderPage_args"); + public static class getCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclOrder_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -477155,10 +476295,9 @@ public static class getCclOrderPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -477178,13 +476317,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 2: // ORDER return ORDER; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -477236,8 +476373,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -477245,16 +476380,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclOrder_args.class, metaDataMap); } - public getCclOrderPage_args() { + public getCclOrder_args() { } - public getCclOrderPage_args( + public getCclOrder_args( java.lang.String ccl, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -477262,7 +476396,6 @@ public getCclOrderPage_args( this(); this.ccl = ccl; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -477271,16 +476404,13 @@ public getCclOrderPage_args( /** * Performs a deep copy on other. */ - public getCclOrderPage_args(getCclOrderPage_args other) { + public getCclOrder_args(getCclOrder_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -477293,15 +476423,14 @@ public getCclOrderPage_args(getCclOrderPage_args other) { } @Override - public getCclOrderPage_args deepCopy() { - return new getCclOrderPage_args(this); + public getCclOrder_args deepCopy() { + return new getCclOrder_args(this); } @Override public void clear() { this.ccl = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -477312,7 +476441,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -477337,7 +476466,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -477357,37 +476486,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -477412,7 +476516,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -477437,7 +476541,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -477476,14 +476580,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -477521,9 +476617,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -477549,8 +476642,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -477563,12 +476654,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclOrderPage_args) - return this.equals((getCclOrderPage_args)that); + if (that instanceof getCclOrder_args) + return this.equals((getCclOrder_args)that); return false; } - public boolean equals(getCclOrderPage_args that) { + public boolean equals(getCclOrder_args that) { if (that == null) return false; if (this == that) @@ -477592,15 +476683,6 @@ public boolean equals(getCclOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -477643,10 +476725,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -477663,7 +476741,7 @@ public int hashCode() { } @Override - public int compareTo(getCclOrderPage_args other) { + public int compareTo(getCclOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -477690,16 +476768,6 @@ public int compareTo(getCclOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -477751,7 +476819,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclOrder_args("); boolean first = true; sb.append("ccl:"); @@ -477770,14 +476838,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -477811,9 +476871,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -477838,17 +476895,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclOrderPage_argsStandardScheme getScheme() { - return new getCclOrderPage_argsStandardScheme(); + public getCclOrder_argsStandardScheme getScheme() { + return new getCclOrder_argsStandardScheme(); } } - private static class getCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -477875,16 +476932,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -477893,7 +476941,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -477902,7 +476950,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -477922,7 +476970,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -477936,11 +476984,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrderPage_ar struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -477962,17 +477005,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrderPage_ar } - private static class getCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclOrderPage_argsTupleScheme getScheme() { - return new getCclOrderPage_argsTupleScheme(); + public getCclOrder_argsTupleScheme getScheme() { + return new getCclOrder_argsTupleScheme(); } } - private static class getCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -477981,28 +477024,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_arg if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -478015,9 +477052,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); @@ -478028,21 +477065,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_args struct.setOrderIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -478054,8 +477086,8 @@ private static S scheme(org.apache. } } - public static class getCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclOrderPage_result"); + public static class getCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -478063,8 +477095,8 @@ public static class getCclOrderPage_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -478165,13 +477197,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclOrder_result.class, metaDataMap); } - public getCclOrderPage_result() { + public getCclOrder_result() { } - public getCclOrderPage_result( + public getCclOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -478189,7 +477221,7 @@ public getCclOrderPage_result( /** * Performs a deep copy on other. */ - public getCclOrderPage_result(getCclOrderPage_result other) { + public getCclOrder_result(getCclOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -478231,8 +477263,8 @@ public getCclOrderPage_result(getCclOrderPage_result other) { } @Override - public getCclOrderPage_result deepCopy() { - return new getCclOrderPage_result(this); + public getCclOrder_result deepCopy() { + return new getCclOrder_result(this); } @Override @@ -478260,7 +477292,7 @@ public java.util.Map> success) { + public getCclOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -478285,7 +477317,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -478310,7 +477342,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -478335,7 +477367,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -478360,7 +477392,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -478473,12 +477505,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclOrderPage_result) - return this.equals((getCclOrderPage_result)that); + if (that instanceof getCclOrder_result) + return this.equals((getCclOrder_result)that); return false; } - public boolean equals(getCclOrderPage_result that) { + public boolean equals(getCclOrder_result that) { if (that == null) return false; if (this == that) @@ -478560,7 +477592,7 @@ public int hashCode() { } @Override - public int compareTo(getCclOrderPage_result other) { + public int compareTo(getCclOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -478637,7 +477669,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclOrder_result("); boolean first = true; sb.append("success:"); @@ -478704,17 +477736,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclOrderPage_resultStandardScheme getScheme() { - return new getCclOrderPage_resultStandardScheme(); + public getCclOrder_resultStandardScheme getScheme() { + return new getCclOrder_resultStandardScheme(); } } - private static class getCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -478727,28 +477759,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5266 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5266.size); - long _key5267; - @org.apache.thrift.annotation.Nullable java.util.Map _val5268; - for (int _i5269 = 0; _i5269 < _map5266.size; ++_i5269) + org.apache.thrift.protocol.TMap _map5246 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5246.size); + long _key5247; + @org.apache.thrift.annotation.Nullable java.util.Map _val5248; + for (int _i5249 = 0; _i5249 < _map5246.size; ++_i5249) { - _key5267 = iprot.readI64(); + _key5247 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5270 = iprot.readMapBegin(); - _val5268 = new java.util.LinkedHashMap(2*_map5270.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5271; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5272; - for (int _i5273 = 0; _i5273 < _map5270.size; ++_i5273) + org.apache.thrift.protocol.TMap _map5250 = iprot.readMapBegin(); + _val5248 = new java.util.LinkedHashMap(2*_map5250.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5251; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5252; + for (int _i5253 = 0; _i5253 < _map5250.size; ++_i5253) { - _key5271 = iprot.readString(); - _val5272 = new com.cinchapi.concourse.thrift.TObject(); - _val5272.read(iprot); - _val5268.put(_key5271, _val5272); + _key5251 = iprot.readString(); + _val5252 = new com.cinchapi.concourse.thrift.TObject(); + _val5252.read(iprot); + _val5248.put(_key5251, _val5252); } iprot.readMapEnd(); } - struct.success.put(_key5267, _val5268); + struct.success.put(_key5247, _val5248); } iprot.readMapEnd(); } @@ -478805,7 +477837,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -478813,15 +477845,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrderPage_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5274 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5254 : struct.success.entrySet()) { - oprot.writeI64(_iter5274.getKey()); + oprot.writeI64(_iter5254.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5274.getValue().size())); - for (java.util.Map.Entry _iter5275 : _iter5274.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5254.getValue().size())); + for (java.util.Map.Entry _iter5255 : _iter5254.getValue().entrySet()) { - oprot.writeString(_iter5275.getKey()); - _iter5275.getValue().write(oprot); + oprot.writeString(_iter5255.getKey()); + _iter5255.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -478856,17 +477888,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrderPage_re } - private static class getCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclOrderPage_resultTupleScheme getScheme() { - return new getCclOrderPage_resultTupleScheme(); + public getCclOrder_resultTupleScheme getScheme() { + return new getCclOrder_resultTupleScheme(); } } - private static class getCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -478888,15 +477920,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5276 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5256 : struct.success.entrySet()) { - oprot.writeI64(_iter5276.getKey()); + oprot.writeI64(_iter5256.getKey()); { - oprot.writeI32(_iter5276.getValue().size()); - for (java.util.Map.Entry _iter5277 : _iter5276.getValue().entrySet()) + oprot.writeI32(_iter5256.getValue().size()); + for (java.util.Map.Entry _iter5257 : _iter5256.getValue().entrySet()) { - oprot.writeString(_iter5277.getKey()); - _iter5277.getValue().write(oprot); + oprot.writeString(_iter5257.getKey()); + _iter5257.getValue().write(oprot); } } } @@ -478917,32 +477949,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_res } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5278 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5278.size); - long _key5279; - @org.apache.thrift.annotation.Nullable java.util.Map _val5280; - for (int _i5281 = 0; _i5281 < _map5278.size; ++_i5281) + org.apache.thrift.protocol.TMap _map5258 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5258.size); + long _key5259; + @org.apache.thrift.annotation.Nullable java.util.Map _val5260; + for (int _i5261 = 0; _i5261 < _map5258.size; ++_i5261) { - _key5279 = iprot.readI64(); + _key5259 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5282 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5280 = new java.util.LinkedHashMap(2*_map5282.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5283; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5284; - for (int _i5285 = 0; _i5285 < _map5282.size; ++_i5285) + org.apache.thrift.protocol.TMap _map5262 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5260 = new java.util.LinkedHashMap(2*_map5262.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5263; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5264; + for (int _i5265 = 0; _i5265 < _map5262.size; ++_i5265) { - _key5283 = iprot.readString(); - _val5284 = new com.cinchapi.concourse.thrift.TObject(); - _val5284.read(iprot); - _val5280.put(_key5283, _val5284); + _key5263 = iprot.readString(); + _val5264 = new com.cinchapi.concourse.thrift.TObject(); + _val5264.read(iprot); + _val5260.put(_key5263, _val5264); } } - struct.success.put(_key5279, _val5280); + struct.success.put(_key5259, _val5260); } } struct.setSuccessIsSet(true); @@ -478975,31 +478007,34 @@ private static S scheme(org.apache. } } - public static class getCriteriaTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTime_args"); + public static class getCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclOrderPage_args"); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CRITERIA((short)1, "criteria"), - TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + CCL((short)1, "ccl"), + ORDER((short)2, "order"), + PAGE((short)3, "page"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -479015,15 +478050,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CRITERIA - return CRITERIA; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // CREDS + case 1: // CCL + return CCL; + case 2: // ORDER + return ORDER; + case 3: // PAGE + return PAGE; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -479068,15 +478105,15 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -479084,23 +478121,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclOrderPage_args.class, metaDataMap); } - public getCriteriaTime_args() { + public getCclOrderPage_args() { } - public getCriteriaTime_args( - com.cinchapi.concourse.thrift.TCriteria criteria, - long timestamp, + public getCclOrderPage_args( + java.lang.String ccl, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.criteria = criteria; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.ccl = ccl; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -479109,12 +478147,16 @@ public getCriteriaTime_args( /** * Performs a deep copy on other. */ - public getCriteriaTime_args(getCriteriaTime_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetCriteria()) { - this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + public getCclOrderPage_args(getCclOrderPage_args other) { + if (other.isSetCcl()) { + this.ccl = other.ccl; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -479127,66 +478169,93 @@ public getCriteriaTime_args(getCriteriaTime_args other) { } @Override - public getCriteriaTime_args deepCopy() { - return new getCriteriaTime_args(this); + public getCclOrderPage_args deepCopy() { + return new getCclOrderPage_args(this); } @Override public void clear() { - this.criteria = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.ccl = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TCriteria getCriteria() { - return this.criteria; + public java.lang.String getCcl() { + return this.ccl; } - public getCriteriaTime_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { - this.criteria = criteria; + public getCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetCriteria() { - this.criteria = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ - public boolean isSetCriteria() { - return this.criteria != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setCriteriaIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.criteria = null; + this.ccl = null; } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public getCriteriaTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public getCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -479194,7 +478263,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -479219,7 +478288,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -479244,7 +478313,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -479267,19 +478336,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CRITERIA: + case CCL: if (value == null) { - unsetCriteria(); + unsetCcl(); } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + setCcl((java.lang.String)value); } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -479314,11 +478391,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CRITERIA: - return getCriteria(); + case CCL: + return getCcl(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -479341,10 +478421,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case CRITERIA: - return isSetCriteria(); - case TIMESTAMP: - return isSetTimestamp(); + case CCL: + return isSetCcl(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -479357,32 +478439,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTime_args) - return this.equals((getCriteriaTime_args)that); + if (that instanceof getCclOrderPage_args) + return this.equals((getCclOrderPage_args)that); return false; } - public boolean equals(getCriteriaTime_args that) { + public boolean equals(getCclOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.criteria.equals(that.criteria)) + if (!this.ccl.equals(that.ccl)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -479420,11 +478511,17 @@ public boolean equals(getCriteriaTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -479442,29 +478539,39 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTime_args other) { + public int compareTo(getCclOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -479520,19 +478627,31 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclOrderPage_args("); boolean first = true; - sb.append("criteria:"); - if (this.criteria == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.criteria); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -479565,8 +478684,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -479586,25 +478708,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getCriteriaTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTime_argsStandardScheme getScheme() { - return new getCriteriaTime_argsStandardScheme(); + public getCclOrderPage_argsStandardScheme getScheme() { + return new getCclOrderPage_argsStandardScheme(); } } - private static class getCriteriaTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -479614,24 +478734,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_arg break; } switch (schemeField.id) { - case 1: // CRITERIA + case 1: // CCL + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // ORDER if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 3: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -479640,7 +478769,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -479649,7 +478778,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -479669,18 +478798,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -479702,40 +478838,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTime_ar } - private static class getCriteriaTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTime_argsTupleScheme getScheme() { - return new getCriteriaTime_argsTupleScheme(); + public getCclOrderPage_argsTupleScheme getScheme() { + return new getCclOrderPage_argsTupleScheme(); } } - private static class getCriteriaTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCriteria()) { + if (struct.isSetCcl()) { optionals.set(0); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); + if (struct.isSetEnvironment()) { + optionals.set(5); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeBitSet(optionals, 6); + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -479749,29 +478891,34 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(2)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -479783,28 +478930,31 @@ private static S scheme(org.apache. } } - public static class getCriteriaTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTime_result"); + public static class getCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -479828,6 +478978,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -479885,31 +479037,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclOrderPage_result.class, metaDataMap); } - public getCriteriaTime_result() { + public getCclOrderPage_result() { } - public getCriteriaTime_result( + public getCclOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getCriteriaTime_result(getCriteriaTime_result other) { + public getCclOrderPage_result(getCclOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -479943,13 +479099,16 @@ public getCriteriaTime_result(getCriteriaTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getCriteriaTime_result deepCopy() { - return new getCriteriaTime_result(this); + public getCclOrderPage_result deepCopy() { + return new getCclOrderPage_result(this); } @Override @@ -479958,6 +479117,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -479976,7 +479136,7 @@ public java.util.Map> success) { + public getCclOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -480001,7 +479161,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -480026,7 +479186,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -480047,11 +479207,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCriteriaTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -480071,6 +479231,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -480102,7 +479287,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -480125,6 +479318,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -480145,18 +479341,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTime_result) - return this.equals((getCriteriaTime_result)that); + if (that instanceof getCclOrderPage_result) + return this.equals((getCclOrderPage_result)that); return false; } - public boolean equals(getCriteriaTime_result that) { + public boolean equals(getCclOrderPage_result that) { if (that == null) return false; if (this == that) @@ -480198,6 +479396,15 @@ public boolean equals(getCriteriaTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -480221,11 +479428,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getCriteriaTime_result other) { + public int compareTo(getCclOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -480272,6 +479483,16 @@ public int compareTo(getCriteriaTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -480292,7 +479513,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclOrderPage_result("); boolean first = true; sb.append("success:"); @@ -480326,6 +479547,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -480351,17 +479580,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTime_resultStandardScheme getScheme() { - return new getCriteriaTime_resultStandardScheme(); + public getCclOrderPage_resultStandardScheme getScheme() { + return new getCclOrderPage_resultStandardScheme(); } } - private static class getCriteriaTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -480374,28 +479603,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5286 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5286.size); - long _key5287; - @org.apache.thrift.annotation.Nullable java.util.Map _val5288; - for (int _i5289 = 0; _i5289 < _map5286.size; ++_i5289) + org.apache.thrift.protocol.TMap _map5266 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5266.size); + long _key5267; + @org.apache.thrift.annotation.Nullable java.util.Map _val5268; + for (int _i5269 = 0; _i5269 < _map5266.size; ++_i5269) { - _key5287 = iprot.readI64(); + _key5267 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5290 = iprot.readMapBegin(); - _val5288 = new java.util.LinkedHashMap(2*_map5290.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5291; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5292; - for (int _i5293 = 0; _i5293 < _map5290.size; ++_i5293) + org.apache.thrift.protocol.TMap _map5270 = iprot.readMapBegin(); + _val5268 = new java.util.LinkedHashMap(2*_map5270.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5271; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5272; + for (int _i5273 = 0; _i5273 < _map5270.size; ++_i5273) { - _key5291 = iprot.readString(); - _val5292 = new com.cinchapi.concourse.thrift.TObject(); - _val5292.read(iprot); - _val5288.put(_key5291, _val5292); + _key5271 = iprot.readString(); + _val5272 = new com.cinchapi.concourse.thrift.TObject(); + _val5272.read(iprot); + _val5268.put(_key5271, _val5272); } iprot.readMapEnd(); } - struct.success.put(_key5287, _val5288); + struct.success.put(_key5267, _val5268); } iprot.readMapEnd(); } @@ -480424,13 +479653,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_res break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -480443,7 +479681,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -480451,15 +479689,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTime_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5294 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5274 : struct.success.entrySet()) { - oprot.writeI64(_iter5294.getKey()); + oprot.writeI64(_iter5274.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5294.getValue().size())); - for (java.util.Map.Entry _iter5295 : _iter5294.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5274.getValue().size())); + for (java.util.Map.Entry _iter5275 : _iter5274.getValue().entrySet()) { - oprot.writeString(_iter5295.getKey()); - _iter5295.getValue().write(oprot); + oprot.writeString(_iter5275.getKey()); + _iter5275.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -480483,23 +479721,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTime_re struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getCriteriaTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTime_resultTupleScheme getScheme() { - return new getCriteriaTime_resultTupleScheme(); + public getCclOrderPage_resultTupleScheme getScheme() { + return new getCclOrderPage_resultTupleScheme(); } } - private static class getCriteriaTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -480514,19 +479757,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_res if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5296 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5276 : struct.success.entrySet()) { - oprot.writeI64(_iter5296.getKey()); + oprot.writeI64(_iter5276.getKey()); { - oprot.writeI32(_iter5296.getValue().size()); - for (java.util.Map.Entry _iter5297 : _iter5296.getValue().entrySet()) + oprot.writeI32(_iter5276.getValue().size()); + for (java.util.Map.Entry _iter5277 : _iter5276.getValue().entrySet()) { - oprot.writeString(_iter5297.getKey()); - _iter5297.getValue().write(oprot); + oprot.writeString(_iter5277.getKey()); + _iter5277.getValue().write(oprot); } } } @@ -480541,35 +479787,38 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_res if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5298 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5298.size); - long _key5299; - @org.apache.thrift.annotation.Nullable java.util.Map _val5300; - for (int _i5301 = 0; _i5301 < _map5298.size; ++_i5301) + org.apache.thrift.protocol.TMap _map5278 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5278.size); + long _key5279; + @org.apache.thrift.annotation.Nullable java.util.Map _val5280; + for (int _i5281 = 0; _i5281 < _map5278.size; ++_i5281) { - _key5299 = iprot.readI64(); + _key5279 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5302 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5300 = new java.util.LinkedHashMap(2*_map5302.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5303; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5304; - for (int _i5305 = 0; _i5305 < _map5302.size; ++_i5305) + org.apache.thrift.protocol.TMap _map5282 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5280 = new java.util.LinkedHashMap(2*_map5282.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5283; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5284; + for (int _i5285 = 0; _i5285 < _map5282.size; ++_i5285) { - _key5303 = iprot.readString(); - _val5304 = new com.cinchapi.concourse.thrift.TObject(); - _val5304.read(iprot); - _val5300.put(_key5303, _val5304); + _key5283 = iprot.readString(); + _val5284 = new com.cinchapi.concourse.thrift.TObject(); + _val5284.read(iprot); + _val5280.put(_key5283, _val5284); } } - struct.success.put(_key5299, _val5300); + struct.success.put(_key5279, _val5280); } } struct.setSuccessIsSet(true); @@ -480585,10 +479834,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_resu struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -480597,22 +479851,20 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimePage_args"); + public static class getCriteriaTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTime_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -480621,10 +479873,9 @@ public static class getCriteriaTimePage_args implements org.apache.thrift.TBase< public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), TIMESTAMP((short)2, "timestamp"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -480644,13 +479895,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -480704,8 +479953,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -480713,16 +479960,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTime_args.class, metaDataMap); } - public getCriteriaTimePage_args() { + public getCriteriaTime_args() { } - public getCriteriaTimePage_args( + public getCriteriaTime_args( com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -480731,7 +479977,6 @@ public getCriteriaTimePage_args( this.criteria = criteria; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -480740,15 +479985,12 @@ public getCriteriaTimePage_args( /** * Performs a deep copy on other. */ - public getCriteriaTimePage_args(getCriteriaTimePage_args other) { + public getCriteriaTime_args(getCriteriaTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -480761,8 +480003,8 @@ public getCriteriaTimePage_args(getCriteriaTimePage_args other) { } @Override - public getCriteriaTimePage_args deepCopy() { - return new getCriteriaTimePage_args(this); + public getCriteriaTime_args deepCopy() { + return new getCriteriaTime_args(this); } @Override @@ -480770,7 +480012,6 @@ public void clear() { this.criteria = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -480781,7 +480022,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaTimePage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaTime_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -480805,7 +480046,7 @@ public long getTimestamp() { return this.timestamp; } - public getCriteriaTimePage_args setTimestamp(long timestamp) { + public getCriteriaTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -480824,37 +480065,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCriteriaTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -480879,7 +480095,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -480904,7 +480120,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -480943,14 +480159,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -480988,9 +480196,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -481016,8 +480221,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -481030,12 +480233,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimePage_args) - return this.equals((getCriteriaTimePage_args)that); + if (that instanceof getCriteriaTime_args) + return this.equals((getCriteriaTime_args)that); return false; } - public boolean equals(getCriteriaTimePage_args that) { + public boolean equals(getCriteriaTime_args that) { if (that == null) return false; if (this == that) @@ -481059,15 +480262,6 @@ public boolean equals(getCriteriaTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -481108,10 +480302,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -481128,7 +480318,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimePage_args other) { + public int compareTo(getCriteriaTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -481155,16 +480345,6 @@ public int compareTo(getCriteriaTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -481216,7 +480396,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTime_args("); boolean first = true; sb.append("criteria:"); @@ -481231,14 +480411,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -481272,9 +480444,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -481301,17 +480470,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimePage_argsStandardScheme getScheme() { - return new getCriteriaTimePage_argsStandardScheme(); + public getCriteriaTime_argsStandardScheme getScheme() { + return new getCriteriaTime_argsStandardScheme(); } } - private static class getCriteriaTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -481338,16 +480507,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -481356,7 +480516,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -481365,7 +480525,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -481385,7 +480545,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -481397,11 +480557,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimePag oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -481423,17 +480578,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimePag } - private static class getCriteriaTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimePage_argsTupleScheme getScheme() { - return new getCriteriaTimePage_argsTupleScheme(); + public getCriteriaTime_argsTupleScheme getScheme() { + return new getCriteriaTime_argsTupleScheme(); } } - private static class getCriteriaTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -481442,28 +480597,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -481476,9 +480625,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); @@ -481489,21 +480638,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_ struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -481515,16 +480659,16 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimePage_result"); + public static class getCriteriaTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -481619,13 +480763,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTime_result.class, metaDataMap); } - public getCriteriaTimePage_result() { + public getCriteriaTime_result() { } - public getCriteriaTimePage_result( + public getCriteriaTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -481641,7 +480785,7 @@ public getCriteriaTimePage_result( /** * Performs a deep copy on other. */ - public getCriteriaTimePage_result(getCriteriaTimePage_result other) { + public getCriteriaTime_result(getCriteriaTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -481680,8 +480824,8 @@ public getCriteriaTimePage_result(getCriteriaTimePage_result other) { } @Override - public getCriteriaTimePage_result deepCopy() { - return new getCriteriaTimePage_result(this); + public getCriteriaTime_result deepCopy() { + return new getCriteriaTime_result(this); } @Override @@ -481708,7 +480852,7 @@ public java.util.Map> success) { + public getCriteriaTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -481733,7 +480877,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -481758,7 +480902,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -481783,7 +480927,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCriteriaTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getCriteriaTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -481883,12 +481027,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimePage_result) - return this.equals((getCriteriaTimePage_result)that); + if (that instanceof getCriteriaTime_result) + return this.equals((getCriteriaTime_result)that); return false; } - public boolean equals(getCriteriaTimePage_result that) { + public boolean equals(getCriteriaTime_result that) { if (that == null) return false; if (this == that) @@ -481957,7 +481101,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimePage_result other) { + public int compareTo(getCriteriaTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -482024,7 +481168,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTime_result("); boolean first = true; sb.append("success:"); @@ -482083,17 +481227,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimePage_resultStandardScheme getScheme() { - return new getCriteriaTimePage_resultStandardScheme(); + public getCriteriaTime_resultStandardScheme getScheme() { + return new getCriteriaTime_resultStandardScheme(); } } - private static class getCriteriaTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -482106,28 +481250,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5306 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5306.size); - long _key5307; - @org.apache.thrift.annotation.Nullable java.util.Map _val5308; - for (int _i5309 = 0; _i5309 < _map5306.size; ++_i5309) + org.apache.thrift.protocol.TMap _map5286 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5286.size); + long _key5287; + @org.apache.thrift.annotation.Nullable java.util.Map _val5288; + for (int _i5289 = 0; _i5289 < _map5286.size; ++_i5289) { - _key5307 = iprot.readI64(); + _key5287 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5310 = iprot.readMapBegin(); - _val5308 = new java.util.LinkedHashMap(2*_map5310.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5311; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5312; - for (int _i5313 = 0; _i5313 < _map5310.size; ++_i5313) + org.apache.thrift.protocol.TMap _map5290 = iprot.readMapBegin(); + _val5288 = new java.util.LinkedHashMap(2*_map5290.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5291; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5292; + for (int _i5293 = 0; _i5293 < _map5290.size; ++_i5293) { - _key5311 = iprot.readString(); - _val5312 = new com.cinchapi.concourse.thrift.TObject(); - _val5312.read(iprot); - _val5308.put(_key5311, _val5312); + _key5291 = iprot.readString(); + _val5292 = new com.cinchapi.concourse.thrift.TObject(); + _val5292.read(iprot); + _val5288.put(_key5291, _val5292); } iprot.readMapEnd(); } - struct.success.put(_key5307, _val5308); + struct.success.put(_key5287, _val5288); } iprot.readMapEnd(); } @@ -482175,7 +481319,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -482183,15 +481327,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimePag oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5314 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5294 : struct.success.entrySet()) { - oprot.writeI64(_iter5314.getKey()); + oprot.writeI64(_iter5294.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5314.getValue().size())); - for (java.util.Map.Entry _iter5315 : _iter5314.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5294.getValue().size())); + for (java.util.Map.Entry _iter5295 : _iter5294.getValue().entrySet()) { - oprot.writeString(_iter5315.getKey()); - _iter5315.getValue().write(oprot); + oprot.writeString(_iter5295.getKey()); + _iter5295.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -482221,17 +481365,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimePag } - private static class getCriteriaTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimePage_resultTupleScheme getScheme() { - return new getCriteriaTimePage_resultTupleScheme(); + public getCriteriaTime_resultTupleScheme getScheme() { + return new getCriteriaTime_resultTupleScheme(); } } - private static class getCriteriaTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -482250,15 +481394,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5316 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5296 : struct.success.entrySet()) { - oprot.writeI64(_iter5316.getKey()); + oprot.writeI64(_iter5296.getKey()); { - oprot.writeI32(_iter5316.getValue().size()); - for (java.util.Map.Entry _iter5317 : _iter5316.getValue().entrySet()) + oprot.writeI32(_iter5296.getValue().size()); + for (java.util.Map.Entry _iter5297 : _iter5296.getValue().entrySet()) { - oprot.writeString(_iter5317.getKey()); - _iter5317.getValue().write(oprot); + oprot.writeString(_iter5297.getKey()); + _iter5297.getValue().write(oprot); } } } @@ -482276,32 +481420,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5318 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5318.size); - long _key5319; - @org.apache.thrift.annotation.Nullable java.util.Map _val5320; - for (int _i5321 = 0; _i5321 < _map5318.size; ++_i5321) + org.apache.thrift.protocol.TMap _map5298 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5298.size); + long _key5299; + @org.apache.thrift.annotation.Nullable java.util.Map _val5300; + for (int _i5301 = 0; _i5301 < _map5298.size; ++_i5301) { - _key5319 = iprot.readI64(); + _key5299 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5322 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5320 = new java.util.LinkedHashMap(2*_map5322.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5323; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5324; - for (int _i5325 = 0; _i5325 < _map5322.size; ++_i5325) + org.apache.thrift.protocol.TMap _map5302 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5300 = new java.util.LinkedHashMap(2*_map5302.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5303; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5304; + for (int _i5305 = 0; _i5305 < _map5302.size; ++_i5305) { - _key5323 = iprot.readString(); - _val5324 = new com.cinchapi.concourse.thrift.TObject(); - _val5324.read(iprot); - _val5320.put(_key5323, _val5324); + _key5303 = iprot.readString(); + _val5304 = new com.cinchapi.concourse.thrift.TObject(); + _val5304.read(iprot); + _val5300.put(_key5303, _val5304); } } - struct.success.put(_key5319, _val5320); + struct.success.put(_key5299, _val5300); } } struct.setSuccessIsSet(true); @@ -482329,22 +481473,22 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimeOrder_args"); + public static class getCriteriaTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimePage_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -482353,7 +481497,7 @@ public static class getCriteriaTimeOrder_args implements org.apache.thrift.TBase public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), TIMESTAMP((short)2, "timestamp"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -482376,8 +481520,8 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -482436,8 +481580,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -482445,16 +481589,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimePage_args.class, metaDataMap); } - public getCriteriaTimeOrder_args() { + public getCriteriaTimePage_args() { } - public getCriteriaTimeOrder_args( + public getCriteriaTimePage_args( com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -482463,7 +481607,7 @@ public getCriteriaTimeOrder_args( this.criteria = criteria; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -482472,14 +481616,14 @@ public getCriteriaTimeOrder_args( /** * Performs a deep copy on other. */ - public getCriteriaTimeOrder_args(getCriteriaTimeOrder_args other) { + public getCriteriaTimePage_args(getCriteriaTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -482493,8 +481637,8 @@ public getCriteriaTimeOrder_args(getCriteriaTimeOrder_args other) { } @Override - public getCriteriaTimeOrder_args deepCopy() { - return new getCriteriaTimeOrder_args(this); + public getCriteriaTimePage_args deepCopy() { + return new getCriteriaTimePage_args(this); } @Override @@ -482502,7 +481646,7 @@ public void clear() { this.criteria = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -482513,7 +481657,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaTimeOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaTimePage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -482537,7 +481681,7 @@ public long getTimestamp() { return this.timestamp; } - public getCriteriaTimeOrder_args setTimestamp(long timestamp) { + public getCriteriaTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -482557,27 +481701,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getCriteriaTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getCriteriaTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -482586,7 +481730,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -482611,7 +481755,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -482636,7 +481780,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -482675,11 +481819,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -482720,8 +481864,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -482748,8 +481892,8 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -482762,12 +481906,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimeOrder_args) - return this.equals((getCriteriaTimeOrder_args)that); + if (that instanceof getCriteriaTimePage_args) + return this.equals((getCriteriaTimePage_args)that); return false; } - public boolean equals(getCriteriaTimeOrder_args that) { + public boolean equals(getCriteriaTimePage_args that) { if (that == null) return false; if (this == that) @@ -482791,12 +481935,12 @@ public boolean equals(getCriteriaTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -482840,9 +481984,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -482860,7 +482004,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimeOrder_args other) { + public int compareTo(getCriteriaTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -482887,12 +482031,12 @@ public int compareTo(getCriteriaTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -482948,7 +482092,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimePage_args("); boolean first = true; sb.append("criteria:"); @@ -482963,11 +482107,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -483004,8 +482148,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -483033,17 +482177,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimeOrder_argsStandardScheme getScheme() { - return new getCriteriaTimeOrder_argsStandardScheme(); + public getCriteriaTimePage_argsStandardScheme getScheme() { + return new getCriteriaTimePage_argsStandardScheme(); } } - private static class getCriteriaTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -483070,11 +482214,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -483117,7 +482261,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -483129,9 +482273,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrd oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -483155,17 +482299,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrd } - private static class getCriteriaTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimeOrder_argsTupleScheme getScheme() { - return new getCriteriaTimeOrder_argsTupleScheme(); + public getCriteriaTimePage_argsTupleScheme getScheme() { + return new getCriteriaTimePage_argsTupleScheme(); } } - private static class getCriteriaTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -483174,7 +482318,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -483193,8 +482337,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -483208,7 +482352,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -483221,9 +482365,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -483247,16 +482391,16 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimeOrder_result"); + public static class getCriteriaTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -483351,13 +482495,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimePage_result.class, metaDataMap); } - public getCriteriaTimeOrder_result() { + public getCriteriaTimePage_result() { } - public getCriteriaTimeOrder_result( + public getCriteriaTimePage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -483373,7 +482517,7 @@ public getCriteriaTimeOrder_result( /** * Performs a deep copy on other. */ - public getCriteriaTimeOrder_result(getCriteriaTimeOrder_result other) { + public getCriteriaTimePage_result(getCriteriaTimePage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -483412,8 +482556,8 @@ public getCriteriaTimeOrder_result(getCriteriaTimeOrder_result other) { } @Override - public getCriteriaTimeOrder_result deepCopy() { - return new getCriteriaTimeOrder_result(this); + public getCriteriaTimePage_result deepCopy() { + return new getCriteriaTimePage_result(this); } @Override @@ -483440,7 +482584,7 @@ public java.util.Map> success) { + public getCriteriaTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -483465,7 +482609,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -483490,7 +482634,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -483515,7 +482659,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCriteriaTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getCriteriaTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -483615,12 +482759,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimeOrder_result) - return this.equals((getCriteriaTimeOrder_result)that); + if (that instanceof getCriteriaTimePage_result) + return this.equals((getCriteriaTimePage_result)that); return false; } - public boolean equals(getCriteriaTimeOrder_result that) { + public boolean equals(getCriteriaTimePage_result that) { if (that == null) return false; if (this == that) @@ -483689,7 +482833,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimeOrder_result other) { + public int compareTo(getCriteriaTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -483756,7 +482900,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimePage_result("); boolean first = true; sb.append("success:"); @@ -483815,17 +482959,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimeOrder_resultStandardScheme getScheme() { - return new getCriteriaTimeOrder_resultStandardScheme(); + public getCriteriaTimePage_resultStandardScheme getScheme() { + return new getCriteriaTimePage_resultStandardScheme(); } } - private static class getCriteriaTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -483838,28 +482982,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5326 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5326.size); - long _key5327; - @org.apache.thrift.annotation.Nullable java.util.Map _val5328; - for (int _i5329 = 0; _i5329 < _map5326.size; ++_i5329) + org.apache.thrift.protocol.TMap _map5306 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5306.size); + long _key5307; + @org.apache.thrift.annotation.Nullable java.util.Map _val5308; + for (int _i5309 = 0; _i5309 < _map5306.size; ++_i5309) { - _key5327 = iprot.readI64(); + _key5307 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5330 = iprot.readMapBegin(); - _val5328 = new java.util.LinkedHashMap(2*_map5330.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5331; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5332; - for (int _i5333 = 0; _i5333 < _map5330.size; ++_i5333) + org.apache.thrift.protocol.TMap _map5310 = iprot.readMapBegin(); + _val5308 = new java.util.LinkedHashMap(2*_map5310.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5311; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5312; + for (int _i5313 = 0; _i5313 < _map5310.size; ++_i5313) { - _key5331 = iprot.readString(); - _val5332 = new com.cinchapi.concourse.thrift.TObject(); - _val5332.read(iprot); - _val5328.put(_key5331, _val5332); + _key5311 = iprot.readString(); + _val5312 = new com.cinchapi.concourse.thrift.TObject(); + _val5312.read(iprot); + _val5308.put(_key5311, _val5312); } iprot.readMapEnd(); } - struct.success.put(_key5327, _val5328); + struct.success.put(_key5307, _val5308); } iprot.readMapEnd(); } @@ -483907,7 +483051,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -483915,15 +483059,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrd oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5334 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5314 : struct.success.entrySet()) { - oprot.writeI64(_iter5334.getKey()); + oprot.writeI64(_iter5314.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5334.getValue().size())); - for (java.util.Map.Entry _iter5335 : _iter5334.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5314.getValue().size())); + for (java.util.Map.Entry _iter5315 : _iter5314.getValue().entrySet()) { - oprot.writeString(_iter5335.getKey()); - _iter5335.getValue().write(oprot); + oprot.writeString(_iter5315.getKey()); + _iter5315.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -483953,17 +483097,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrd } - private static class getCriteriaTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimeOrder_resultTupleScheme getScheme() { - return new getCriteriaTimeOrder_resultTupleScheme(); + public getCriteriaTimePage_resultTupleScheme getScheme() { + return new getCriteriaTimePage_resultTupleScheme(); } } - private static class getCriteriaTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -483982,15 +483126,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5336 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5316 : struct.success.entrySet()) { - oprot.writeI64(_iter5336.getKey()); + oprot.writeI64(_iter5316.getKey()); { - oprot.writeI32(_iter5336.getValue().size()); - for (java.util.Map.Entry _iter5337 : _iter5336.getValue().entrySet()) + oprot.writeI32(_iter5316.getValue().size()); + for (java.util.Map.Entry _iter5317 : _iter5316.getValue().entrySet()) { - oprot.writeString(_iter5337.getKey()); - _iter5337.getValue().write(oprot); + oprot.writeString(_iter5317.getKey()); + _iter5317.getValue().write(oprot); } } } @@ -484008,32 +483152,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5338 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5338.size); - long _key5339; - @org.apache.thrift.annotation.Nullable java.util.Map _val5340; - for (int _i5341 = 0; _i5341 < _map5338.size; ++_i5341) + org.apache.thrift.protocol.TMap _map5318 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5318.size); + long _key5319; + @org.apache.thrift.annotation.Nullable java.util.Map _val5320; + for (int _i5321 = 0; _i5321 < _map5318.size; ++_i5321) { - _key5339 = iprot.readI64(); + _key5319 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5342 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5340 = new java.util.LinkedHashMap(2*_map5342.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5343; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5344; - for (int _i5345 = 0; _i5345 < _map5342.size; ++_i5345) + org.apache.thrift.protocol.TMap _map5322 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5320 = new java.util.LinkedHashMap(2*_map5322.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5323; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5324; + for (int _i5325 = 0; _i5325 < _map5322.size; ++_i5325) { - _key5343 = iprot.readString(); - _val5344 = new com.cinchapi.concourse.thrift.TObject(); - _val5344.read(iprot); - _val5340.put(_key5343, _val5344); + _key5323 = iprot.readString(); + _val5324 = new com.cinchapi.concourse.thrift.TObject(); + _val5324.read(iprot); + _val5320.put(_key5323, _val5324); } } - struct.success.put(_key5339, _val5340); + struct.success.put(_key5319, _val5320); } } struct.setSuccessIsSet(true); @@ -484061,24 +483205,22 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimeOrderPage_args"); + public static class getCriteriaTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimeOrder_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -484088,10 +483230,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), TIMESTAMP((short)2, "timestamp"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -484113,13 +483254,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -484175,8 +483314,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -484184,17 +483321,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimeOrder_args.class, metaDataMap); } - public getCriteriaTimeOrderPage_args() { + public getCriteriaTimeOrder_args() { } - public getCriteriaTimeOrderPage_args( + public getCriteriaTimeOrder_args( com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -484204,7 +483340,6 @@ public getCriteriaTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -484213,7 +483348,7 @@ public getCriteriaTimeOrderPage_args( /** * Performs a deep copy on other. */ - public getCriteriaTimeOrderPage_args(getCriteriaTimeOrderPage_args other) { + public getCriteriaTimeOrder_args(getCriteriaTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); @@ -484222,9 +483357,6 @@ public getCriteriaTimeOrderPage_args(getCriteriaTimeOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -484237,8 +483369,8 @@ public getCriteriaTimeOrderPage_args(getCriteriaTimeOrderPage_args other) { } @Override - public getCriteriaTimeOrderPage_args deepCopy() { - return new getCriteriaTimeOrderPage_args(this); + public getCriteriaTimeOrder_args deepCopy() { + return new getCriteriaTimeOrder_args(this); } @Override @@ -484247,7 +483379,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -484258,7 +483389,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaTimeOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaTimeOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -484282,7 +483413,7 @@ public long getTimestamp() { return this.timestamp; } - public getCriteriaTimeOrderPage_args setTimestamp(long timestamp) { + public getCriteriaTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -484306,7 +483437,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getCriteriaTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getCriteriaTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -484326,37 +483457,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCriteriaTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -484381,7 +483487,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -484406,7 +483512,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -484453,14 +483559,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -484501,9 +483599,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -484531,8 +483626,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -484545,12 +483638,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimeOrderPage_args) - return this.equals((getCriteriaTimeOrderPage_args)that); + if (that instanceof getCriteriaTimeOrder_args) + return this.equals((getCriteriaTimeOrder_args)that); return false; } - public boolean equals(getCriteriaTimeOrderPage_args that) { + public boolean equals(getCriteriaTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -484583,15 +483676,6 @@ public boolean equals(getCriteriaTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -484636,10 +483720,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -484656,7 +483736,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimeOrderPage_args other) { + public int compareTo(getCriteriaTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -484693,16 +483773,6 @@ public int compareTo(getCriteriaTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -484754,7 +483824,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimeOrder_args("); boolean first = true; sb.append("criteria:"); @@ -484777,14 +483847,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -484821,9 +483883,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -484850,17 +483909,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimeOrderPage_argsStandardScheme getScheme() { - return new getCriteriaTimeOrderPage_argsStandardScheme(); + public getCriteriaTimeOrder_argsStandardScheme getScheme() { + return new getCriteriaTimeOrder_argsStandardScheme(); } } - private static class getCriteriaTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -484896,16 +483955,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -484914,7 +483964,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -484923,7 +483973,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -484943,7 +483993,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -484960,11 +484010,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrd struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -484986,17 +484031,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrd } - private static class getCriteriaTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimeOrderPage_argsTupleScheme getScheme() { - return new getCriteriaTimeOrderPage_argsTupleScheme(); + public getCriteriaTimeOrder_argsTupleScheme getScheme() { + return new getCriteriaTimeOrder_argsTupleScheme(); } } - private static class getCriteriaTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -485008,19 +484053,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } @@ -485030,9 +484072,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -485045,9 +484084,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); @@ -485063,21 +484102,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -485089,16 +484123,16 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimeOrderPage_result"); + public static class getCriteriaTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -485193,13 +484227,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimeOrder_result.class, metaDataMap); } - public getCriteriaTimeOrderPage_result() { + public getCriteriaTimeOrder_result() { } - public getCriteriaTimeOrderPage_result( + public getCriteriaTimeOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -485215,7 +484249,7 @@ public getCriteriaTimeOrderPage_result( /** * Performs a deep copy on other. */ - public getCriteriaTimeOrderPage_result(getCriteriaTimeOrderPage_result other) { + public getCriteriaTimeOrder_result(getCriteriaTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -485254,8 +484288,8 @@ public getCriteriaTimeOrderPage_result(getCriteriaTimeOrderPage_result other) { } @Override - public getCriteriaTimeOrderPage_result deepCopy() { - return new getCriteriaTimeOrderPage_result(this); + public getCriteriaTimeOrder_result deepCopy() { + return new getCriteriaTimeOrder_result(this); } @Override @@ -485282,7 +484316,7 @@ public java.util.Map> success) { + public getCriteriaTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -485307,7 +484341,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -485332,7 +484366,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -485357,7 +484391,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCriteriaTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getCriteriaTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -485457,12 +484491,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimeOrderPage_result) - return this.equals((getCriteriaTimeOrderPage_result)that); + if (that instanceof getCriteriaTimeOrder_result) + return this.equals((getCriteriaTimeOrder_result)that); return false; } - public boolean equals(getCriteriaTimeOrderPage_result that) { + public boolean equals(getCriteriaTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -485531,7 +484565,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimeOrderPage_result other) { + public int compareTo(getCriteriaTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -485598,7 +484632,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -485657,17 +484691,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimeOrderPage_resultStandardScheme getScheme() { - return new getCriteriaTimeOrderPage_resultStandardScheme(); + public getCriteriaTimeOrder_resultStandardScheme getScheme() { + return new getCriteriaTimeOrder_resultStandardScheme(); } } - private static class getCriteriaTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -485680,28 +484714,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5346 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5346.size); - long _key5347; - @org.apache.thrift.annotation.Nullable java.util.Map _val5348; - for (int _i5349 = 0; _i5349 < _map5346.size; ++_i5349) + org.apache.thrift.protocol.TMap _map5326 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5326.size); + long _key5327; + @org.apache.thrift.annotation.Nullable java.util.Map _val5328; + for (int _i5329 = 0; _i5329 < _map5326.size; ++_i5329) { - _key5347 = iprot.readI64(); + _key5327 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5350 = iprot.readMapBegin(); - _val5348 = new java.util.LinkedHashMap(2*_map5350.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5351; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5352; - for (int _i5353 = 0; _i5353 < _map5350.size; ++_i5353) + org.apache.thrift.protocol.TMap _map5330 = iprot.readMapBegin(); + _val5328 = new java.util.LinkedHashMap(2*_map5330.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5331; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5332; + for (int _i5333 = 0; _i5333 < _map5330.size; ++_i5333) { - _key5351 = iprot.readString(); - _val5352 = new com.cinchapi.concourse.thrift.TObject(); - _val5352.read(iprot); - _val5348.put(_key5351, _val5352); + _key5331 = iprot.readString(); + _val5332 = new com.cinchapi.concourse.thrift.TObject(); + _val5332.read(iprot); + _val5328.put(_key5331, _val5332); } iprot.readMapEnd(); } - struct.success.put(_key5347, _val5348); + struct.success.put(_key5327, _val5328); } iprot.readMapEnd(); } @@ -485749,7 +484783,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrde } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -485757,15 +484791,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrd oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5354 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5334 : struct.success.entrySet()) { - oprot.writeI64(_iter5354.getKey()); + oprot.writeI64(_iter5334.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5354.getValue().size())); - for (java.util.Map.Entry _iter5355 : _iter5354.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5334.getValue().size())); + for (java.util.Map.Entry _iter5335 : _iter5334.getValue().entrySet()) { - oprot.writeString(_iter5355.getKey()); - _iter5355.getValue().write(oprot); + oprot.writeString(_iter5335.getKey()); + _iter5335.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -485795,17 +484829,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrd } - private static class getCriteriaTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimeOrderPage_resultTupleScheme getScheme() { - return new getCriteriaTimeOrderPage_resultTupleScheme(); + public getCriteriaTimeOrder_resultTupleScheme getScheme() { + return new getCriteriaTimeOrder_resultTupleScheme(); } } - private static class getCriteriaTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -485824,15 +484858,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5356 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5336 : struct.success.entrySet()) { - oprot.writeI64(_iter5356.getKey()); + oprot.writeI64(_iter5336.getKey()); { - oprot.writeI32(_iter5356.getValue().size()); - for (java.util.Map.Entry _iter5357 : _iter5356.getValue().entrySet()) + oprot.writeI32(_iter5336.getValue().size()); + for (java.util.Map.Entry _iter5337 : _iter5336.getValue().entrySet()) { - oprot.writeString(_iter5357.getKey()); - _iter5357.getValue().write(oprot); + oprot.writeString(_iter5337.getKey()); + _iter5337.getValue().write(oprot); } } } @@ -485850,32 +484884,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrde } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5358 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5358.size); - long _key5359; - @org.apache.thrift.annotation.Nullable java.util.Map _val5360; - for (int _i5361 = 0; _i5361 < _map5358.size; ++_i5361) + org.apache.thrift.protocol.TMap _map5338 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5338.size); + long _key5339; + @org.apache.thrift.annotation.Nullable java.util.Map _val5340; + for (int _i5341 = 0; _i5341 < _map5338.size; ++_i5341) { - _key5359 = iprot.readI64(); + _key5339 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5362 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5360 = new java.util.LinkedHashMap(2*_map5362.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5363; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5364; - for (int _i5365 = 0; _i5365 < _map5362.size; ++_i5365) + org.apache.thrift.protocol.TMap _map5342 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5340 = new java.util.LinkedHashMap(2*_map5342.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5343; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5344; + for (int _i5345 = 0; _i5345 < _map5342.size; ++_i5345) { - _key5363 = iprot.readString(); - _val5364 = new com.cinchapi.concourse.thrift.TObject(); - _val5364.read(iprot); - _val5360.put(_key5363, _val5364); + _key5343 = iprot.readString(); + _val5344 = new com.cinchapi.concourse.thrift.TObject(); + _val5344.read(iprot); + _val5340.put(_key5343, _val5344); } } - struct.success.put(_key5359, _val5360); + struct.success.put(_key5339, _val5340); } } struct.setSuccessIsSet(true); @@ -485903,20 +484937,24 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestr_args"); + public static class getCriteriaTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -485925,9 +484963,11 @@ public static class getCriteriaTimestr_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -485947,11 +484987,15 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -485996,13 +485040,19 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -486010,15 +485060,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimeOrderPage_args.class, metaDataMap); } - public getCriteriaTimestr_args() { + public getCriteriaTimeOrderPage_args() { } - public getCriteriaTimestr_args( + public getCriteriaTimeOrderPage_args( com.cinchapi.concourse.thrift.TCriteria criteria, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -486026,6 +485078,9 @@ public getCriteriaTimestr_args( this(); this.criteria = criteria; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -486034,12 +485089,17 @@ public getCriteriaTimestr_args( /** * Performs a deep copy on other. */ - public getCriteriaTimestr_args(getCriteriaTimestr_args other) { + public getCriteriaTimeOrderPage_args(getCriteriaTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -486053,14 +485113,17 @@ public getCriteriaTimestr_args(getCriteriaTimestr_args other) { } @Override - public getCriteriaTimestr_args deepCopy() { - return new getCriteriaTimestr_args(this); + public getCriteriaTimeOrderPage_args deepCopy() { + return new getCriteriaTimeOrderPage_args(this); } @Override public void clear() { this.criteria = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -486071,7 +485134,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaTimestr_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaTimeOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -486091,28 +485154,76 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getCriteriaTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getCriteriaTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getCriteriaTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getCriteriaTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -486121,7 +485232,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -486146,7 +485257,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -486171,7 +485282,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -486206,7 +485317,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -486247,6 +485374,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -486272,6 +485405,10 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -486284,12 +485421,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimestr_args) - return this.equals((getCriteriaTimestr_args)that); + if (that instanceof getCriteriaTimeOrderPage_args) + return this.equals((getCriteriaTimeOrderPage_args)that); return false; } - public boolean equals(getCriteriaTimestr_args that) { + public boolean equals(getCriteriaTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -486304,12 +485441,30 @@ public boolean equals(getCriteriaTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -486351,9 +485506,15 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -486371,7 +485532,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimestr_args other) { + public int compareTo(getCriteriaTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -486398,6 +485559,26 @@ public int compareTo(getCriteriaTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -486449,7 +485630,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimeOrderPage_args("); boolean first = true; sb.append("criteria:"); @@ -486461,10 +485642,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -486501,6 +485694,12 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -486519,23 +485718,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getCriteriaTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestr_argsStandardScheme getScheme() { - return new getCriteriaTimestr_argsStandardScheme(); + public getCriteriaTimeOrderPage_argsStandardScheme getScheme() { + return new getCriteriaTimeOrderPage_argsStandardScheme(); } } - private static class getCriteriaTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -486555,14 +485756,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_ } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -486571,7 +485790,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -486580,7 +485799,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -486600,7 +485819,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -486609,9 +485828,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -486635,17 +485862,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr } - private static class getCriteriaTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestr_argsTupleScheme getScheme() { - return new getCriteriaTimestr_argsTupleScheme(); + public getCriteriaTimeOrderPage_argsTupleScheme getScheme() { + return new getCriteriaTimeOrderPage_argsTupleScheme(); } } - private static class getCriteriaTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -486654,21 +485881,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_ if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -486682,29 +485921,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); struct.setCriteriaIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -486716,31 +485965,28 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestr_result"); + public static class getCriteriaTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -486764,8 +486010,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -486823,35 +486067,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimeOrderPage_result.class, metaDataMap); } - public getCriteriaTimestr_result() { + public getCriteriaTimeOrderPage_result() { } - public getCriteriaTimestr_result( + public getCriteriaTimeOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getCriteriaTimestr_result(getCriteriaTimestr_result other) { + public getCriteriaTimeOrderPage_result(getCriteriaTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -486885,16 +486125,13 @@ public getCriteriaTimestr_result(getCriteriaTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getCriteriaTimestr_result deepCopy() { - return new getCriteriaTimestr_result(this); + public getCriteriaTimeOrderPage_result deepCopy() { + return new getCriteriaTimeOrderPage_result(this); } @Override @@ -486903,7 +486140,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -486922,7 +486158,7 @@ public java.util.Map> success) { + public getCriteriaTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -486947,7 +486183,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -486972,7 +486208,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -486993,11 +486229,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getCriteriaTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCriteriaTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -487017,31 +486253,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getCriteriaTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -487073,15 +486284,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -487104,9 +486307,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -487127,20 +486327,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimestr_result) - return this.equals((getCriteriaTimestr_result)that); + if (that instanceof getCriteriaTimeOrderPage_result) + return this.equals((getCriteriaTimeOrderPage_result)that); return false; } - public boolean equals(getCriteriaTimestr_result that) { + public boolean equals(getCriteriaTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -487182,15 +486380,6 @@ public boolean equals(getCriteriaTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -487214,15 +486403,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getCriteriaTimestr_result other) { + public int compareTo(getCriteriaTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -487269,16 +486454,6 @@ public int compareTo(getCriteriaTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -487299,7 +486474,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -487333,14 +486508,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -487366,17 +486533,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestr_resultStandardScheme getScheme() { - return new getCriteriaTimestr_resultStandardScheme(); + public getCriteriaTimeOrderPage_resultStandardScheme getScheme() { + return new getCriteriaTimeOrderPage_resultStandardScheme(); } } - private static class getCriteriaTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -487389,28 +486556,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5366 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5366.size); - long _key5367; - @org.apache.thrift.annotation.Nullable java.util.Map _val5368; - for (int _i5369 = 0; _i5369 < _map5366.size; ++_i5369) + org.apache.thrift.protocol.TMap _map5346 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5346.size); + long _key5347; + @org.apache.thrift.annotation.Nullable java.util.Map _val5348; + for (int _i5349 = 0; _i5349 < _map5346.size; ++_i5349) { - _key5367 = iprot.readI64(); + _key5347 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5370 = iprot.readMapBegin(); - _val5368 = new java.util.LinkedHashMap(2*_map5370.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5371; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5372; - for (int _i5373 = 0; _i5373 < _map5370.size; ++_i5373) + org.apache.thrift.protocol.TMap _map5350 = iprot.readMapBegin(); + _val5348 = new java.util.LinkedHashMap(2*_map5350.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5351; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5352; + for (int _i5353 = 0; _i5353 < _map5350.size; ++_i5353) { - _key5371 = iprot.readString(); - _val5372 = new com.cinchapi.concourse.thrift.TObject(); - _val5372.read(iprot); - _val5368.put(_key5371, _val5372); + _key5351 = iprot.readString(); + _val5352 = new com.cinchapi.concourse.thrift.TObject(); + _val5352.read(iprot); + _val5348.put(_key5351, _val5352); } iprot.readMapEnd(); } - struct.success.put(_key5367, _val5368); + struct.success.put(_key5347, _val5348); } iprot.readMapEnd(); } @@ -487439,22 +486606,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_ break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -487467,7 +486625,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -487475,15 +486633,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5374 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5354 : struct.success.entrySet()) { - oprot.writeI64(_iter5374.getKey()); + oprot.writeI64(_iter5354.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5374.getValue().size())); - for (java.util.Map.Entry _iter5375 : _iter5374.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5354.getValue().size())); + for (java.util.Map.Entry _iter5355 : _iter5354.getValue().entrySet()) { - oprot.writeString(_iter5375.getKey()); - _iter5375.getValue().write(oprot); + oprot.writeString(_iter5355.getKey()); + _iter5355.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -487507,28 +486665,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getCriteriaTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestr_resultTupleScheme getScheme() { - return new getCriteriaTimestr_resultTupleScheme(); + public getCriteriaTimeOrderPage_resultTupleScheme getScheme() { + return new getCriteriaTimeOrderPage_resultTupleScheme(); } } - private static class getCriteriaTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -487543,22 +486696,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_ if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5376 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5356 : struct.success.entrySet()) { - oprot.writeI64(_iter5376.getKey()); + oprot.writeI64(_iter5356.getKey()); { - oprot.writeI32(_iter5376.getValue().size()); - for (java.util.Map.Entry _iter5377 : _iter5376.getValue().entrySet()) + oprot.writeI32(_iter5356.getValue().size()); + for (java.util.Map.Entry _iter5357 : _iter5356.getValue().entrySet()) { - oprot.writeString(_iter5377.getKey()); - _iter5377.getValue().write(oprot); + oprot.writeString(_iter5357.getKey()); + _iter5357.getValue().write(oprot); } } } @@ -487573,38 +486723,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_ if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5378 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5378.size); - long _key5379; - @org.apache.thrift.annotation.Nullable java.util.Map _val5380; - for (int _i5381 = 0; _i5381 < _map5378.size; ++_i5381) + org.apache.thrift.protocol.TMap _map5358 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5358.size); + long _key5359; + @org.apache.thrift.annotation.Nullable java.util.Map _val5360; + for (int _i5361 = 0; _i5361 < _map5358.size; ++_i5361) { - _key5379 = iprot.readI64(); + _key5359 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5382 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5380 = new java.util.LinkedHashMap(2*_map5382.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5383; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5384; - for (int _i5385 = 0; _i5385 < _map5382.size; ++_i5385) + org.apache.thrift.protocol.TMap _map5362 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5360 = new java.util.LinkedHashMap(2*_map5362.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5363; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5364; + for (int _i5365 = 0; _i5365 < _map5362.size; ++_i5365) { - _key5383 = iprot.readString(); - _val5384 = new com.cinchapi.concourse.thrift.TObject(); - _val5384.read(iprot); - _val5380.put(_key5383, _val5384); + _key5363 = iprot.readString(); + _val5364 = new com.cinchapi.concourse.thrift.TObject(); + _val5364.read(iprot); + _val5360.put(_key5363, _val5364); } } - struct.success.put(_key5379, _val5380); + struct.success.put(_key5359, _val5360); } } struct.setSuccessIsSet(true); @@ -487620,15 +486767,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_r struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -487637,22 +486779,20 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrPage_args"); + public static class getCriteriaTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestr_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -487661,10 +486801,9 @@ public static class getCriteriaTimestrPage_args implements org.apache.thrift.TBa public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), TIMESTAMP((short)2, "timestamp"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -487684,13 +486823,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -487742,8 +486879,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -487751,16 +486886,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestr_args.class, metaDataMap); } - public getCriteriaTimestrPage_args() { + public getCriteriaTimestr_args() { } - public getCriteriaTimestrPage_args( + public getCriteriaTimestr_args( com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -487768,7 +486902,6 @@ public getCriteriaTimestrPage_args( this(); this.criteria = criteria; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -487777,16 +486910,13 @@ public getCriteriaTimestrPage_args( /** * Performs a deep copy on other. */ - public getCriteriaTimestrPage_args(getCriteriaTimestrPage_args other) { + public getCriteriaTimestr_args(getCriteriaTimestr_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -487799,15 +486929,14 @@ public getCriteriaTimestrPage_args(getCriteriaTimestrPage_args other) { } @Override - public getCriteriaTimestrPage_args deepCopy() { - return new getCriteriaTimestrPage_args(this); + public getCriteriaTimestr_args deepCopy() { + return new getCriteriaTimestr_args(this); } @Override public void clear() { this.criteria = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -487818,7 +486947,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaTimestrPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaTimestr_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -487843,7 +486972,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getCriteriaTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getCriteriaTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -487863,37 +486992,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCriteriaTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -487918,7 +487022,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -487943,7 +487047,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -487982,14 +487086,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -488027,9 +487123,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -488055,8 +487148,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -488069,12 +487160,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimestrPage_args) - return this.equals((getCriteriaTimestrPage_args)that); + if (that instanceof getCriteriaTimestr_args) + return this.equals((getCriteriaTimestr_args)that); return false; } - public boolean equals(getCriteriaTimestrPage_args that) { + public boolean equals(getCriteriaTimestr_args that) { if (that == null) return false; if (this == that) @@ -488098,15 +487189,6 @@ public boolean equals(getCriteriaTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -488149,10 +487231,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -488169,7 +487247,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimestrPage_args other) { + public int compareTo(getCriteriaTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -488196,16 +487274,6 @@ public int compareTo(getCriteriaTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -488257,7 +487325,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestr_args("); boolean first = true; sb.append("criteria:"); @@ -488276,14 +487344,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -488317,9 +487377,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -488344,17 +487401,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrPage_argsStandardScheme getScheme() { - return new getCriteriaTimestrPage_argsStandardScheme(); + public getCriteriaTimestr_argsStandardScheme getScheme() { + return new getCriteriaTimestr_argsStandardScheme(); } } - private static class getCriteriaTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -488381,16 +487438,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -488399,7 +487447,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -488408,7 +487456,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -488428,7 +487476,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -488442,11 +487490,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -488468,17 +487511,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr } - private static class getCriteriaTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrPage_argsTupleScheme getScheme() { - return new getCriteriaTimestrPage_argsTupleScheme(); + public getCriteriaTimestr_argsTupleScheme getScheme() { + return new getCriteriaTimestr_argsTupleScheme(); } } - private static class getCriteriaTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -488487,28 +487530,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrP if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -488521,9 +487558,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); @@ -488534,21 +487571,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPa struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -488560,8 +487592,8 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrPage_result"); + public static class getCriteriaTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -488569,8 +487601,8 @@ public static class getCriteriaTimestrPage_result implements org.apache.thrift.T private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -488671,13 +487703,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestr_result.class, metaDataMap); } - public getCriteriaTimestrPage_result() { + public getCriteriaTimestr_result() { } - public getCriteriaTimestrPage_result( + public getCriteriaTimestr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -488695,7 +487727,7 @@ public getCriteriaTimestrPage_result( /** * Performs a deep copy on other. */ - public getCriteriaTimestrPage_result(getCriteriaTimestrPage_result other) { + public getCriteriaTimestr_result(getCriteriaTimestr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -488737,8 +487769,8 @@ public getCriteriaTimestrPage_result(getCriteriaTimestrPage_result other) { } @Override - public getCriteriaTimestrPage_result deepCopy() { - return new getCriteriaTimestrPage_result(this); + public getCriteriaTimestr_result deepCopy() { + return new getCriteriaTimestr_result(this); } @Override @@ -488766,7 +487798,7 @@ public java.util.Map> success) { + public getCriteriaTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -488791,7 +487823,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -488816,7 +487848,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -488841,7 +487873,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCriteriaTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCriteriaTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -488866,7 +487898,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCriteriaTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCriteriaTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -488979,12 +488011,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimestrPage_result) - return this.equals((getCriteriaTimestrPage_result)that); + if (that instanceof getCriteriaTimestr_result) + return this.equals((getCriteriaTimestr_result)that); return false; } - public boolean equals(getCriteriaTimestrPage_result that) { + public boolean equals(getCriteriaTimestr_result that) { if (that == null) return false; if (this == that) @@ -489066,7 +488098,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimestrPage_result other) { + public int compareTo(getCriteriaTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -489143,7 +488175,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestr_result("); boolean first = true; sb.append("success:"); @@ -489210,17 +488242,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrPage_resultStandardScheme getScheme() { - return new getCriteriaTimestrPage_resultStandardScheme(); + public getCriteriaTimestr_resultStandardScheme getScheme() { + return new getCriteriaTimestr_resultStandardScheme(); } } - private static class getCriteriaTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -489233,28 +488265,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrP case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5386 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5386.size); - long _key5387; - @org.apache.thrift.annotation.Nullable java.util.Map _val5388; - for (int _i5389 = 0; _i5389 < _map5386.size; ++_i5389) + org.apache.thrift.protocol.TMap _map5366 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5366.size); + long _key5367; + @org.apache.thrift.annotation.Nullable java.util.Map _val5368; + for (int _i5369 = 0; _i5369 < _map5366.size; ++_i5369) { - _key5387 = iprot.readI64(); + _key5367 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5390 = iprot.readMapBegin(); - _val5388 = new java.util.LinkedHashMap(2*_map5390.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5391; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5392; - for (int _i5393 = 0; _i5393 < _map5390.size; ++_i5393) + org.apache.thrift.protocol.TMap _map5370 = iprot.readMapBegin(); + _val5368 = new java.util.LinkedHashMap(2*_map5370.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5371; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5372; + for (int _i5373 = 0; _i5373 < _map5370.size; ++_i5373) { - _key5391 = iprot.readString(); - _val5392 = new com.cinchapi.concourse.thrift.TObject(); - _val5392.read(iprot); - _val5388.put(_key5391, _val5392); + _key5371 = iprot.readString(); + _val5372 = new com.cinchapi.concourse.thrift.TObject(); + _val5372.read(iprot); + _val5368.put(_key5371, _val5372); } iprot.readMapEnd(); } - struct.success.put(_key5387, _val5388); + struct.success.put(_key5367, _val5368); } iprot.readMapEnd(); } @@ -489311,7 +488343,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -489319,15 +488351,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5394 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5374 : struct.success.entrySet()) { - oprot.writeI64(_iter5394.getKey()); + oprot.writeI64(_iter5374.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5394.getValue().size())); - for (java.util.Map.Entry _iter5395 : _iter5394.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5374.getValue().size())); + for (java.util.Map.Entry _iter5375 : _iter5374.getValue().entrySet()) { - oprot.writeString(_iter5395.getKey()); - _iter5395.getValue().write(oprot); + oprot.writeString(_iter5375.getKey()); + _iter5375.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -489362,17 +488394,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr } - private static class getCriteriaTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrPage_resultTupleScheme getScheme() { - return new getCriteriaTimestrPage_resultTupleScheme(); + public getCriteriaTimestr_resultTupleScheme getScheme() { + return new getCriteriaTimestr_resultTupleScheme(); } } - private static class getCriteriaTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -489394,15 +488426,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrP if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5396 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5376 : struct.success.entrySet()) { - oprot.writeI64(_iter5396.getKey()); + oprot.writeI64(_iter5376.getKey()); { - oprot.writeI32(_iter5396.getValue().size()); - for (java.util.Map.Entry _iter5397 : _iter5396.getValue().entrySet()) + oprot.writeI32(_iter5376.getValue().size()); + for (java.util.Map.Entry _iter5377 : _iter5376.getValue().entrySet()) { - oprot.writeString(_iter5397.getKey()); - _iter5397.getValue().write(oprot); + oprot.writeString(_iter5377.getKey()); + _iter5377.getValue().write(oprot); } } } @@ -489423,32 +488455,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5398 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5398.size); - long _key5399; - @org.apache.thrift.annotation.Nullable java.util.Map _val5400; - for (int _i5401 = 0; _i5401 < _map5398.size; ++_i5401) + org.apache.thrift.protocol.TMap _map5378 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5378.size); + long _key5379; + @org.apache.thrift.annotation.Nullable java.util.Map _val5380; + for (int _i5381 = 0; _i5381 < _map5378.size; ++_i5381) { - _key5399 = iprot.readI64(); + _key5379 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5402 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5400 = new java.util.LinkedHashMap(2*_map5402.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5403; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5404; - for (int _i5405 = 0; _i5405 < _map5402.size; ++_i5405) + org.apache.thrift.protocol.TMap _map5382 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5380 = new java.util.LinkedHashMap(2*_map5382.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5383; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5384; + for (int _i5385 = 0; _i5385 < _map5382.size; ++_i5385) { - _key5403 = iprot.readString(); - _val5404 = new com.cinchapi.concourse.thrift.TObject(); - _val5404.read(iprot); - _val5400.put(_key5403, _val5404); + _key5383 = iprot.readString(); + _val5384 = new com.cinchapi.concourse.thrift.TObject(); + _val5384.read(iprot); + _val5380.put(_key5383, _val5384); } } - struct.success.put(_key5399, _val5400); + struct.success.put(_key5379, _val5380); } } struct.setSuccessIsSet(true); @@ -489481,22 +488513,22 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrOrder_args"); + public static class getCriteriaTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrPage_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -489505,7 +488537,7 @@ public static class getCriteriaTimestrOrder_args implements org.apache.thrift.TB public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), TIMESTAMP((short)2, "timestamp"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -489528,8 +488560,8 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -489586,8 +488618,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -489595,16 +488627,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrPage_args.class, metaDataMap); } - public getCriteriaTimestrOrder_args() { + public getCriteriaTimestrPage_args() { } - public getCriteriaTimestrOrder_args( + public getCriteriaTimestrPage_args( com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -489612,7 +488644,7 @@ public getCriteriaTimestrOrder_args( this(); this.criteria = criteria; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -489621,15 +488653,15 @@ public getCriteriaTimestrOrder_args( /** * Performs a deep copy on other. */ - public getCriteriaTimestrOrder_args(getCriteriaTimestrOrder_args other) { + public getCriteriaTimestrPage_args(getCriteriaTimestrPage_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -489643,15 +488675,15 @@ public getCriteriaTimestrOrder_args(getCriteriaTimestrOrder_args other) { } @Override - public getCriteriaTimestrOrder_args deepCopy() { - return new getCriteriaTimestrOrder_args(this); + public getCriteriaTimestrPage_args deepCopy() { + return new getCriteriaTimestrPage_args(this); } @Override public void clear() { this.criteria = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -489662,7 +488694,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaTimestrOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaTimestrPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -489687,7 +488719,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getCriteriaTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getCriteriaTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -489708,27 +488740,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getCriteriaTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getCriteriaTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -489737,7 +488769,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -489762,7 +488794,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -489787,7 +488819,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -489826,11 +488858,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -489871,8 +488903,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -489899,8 +488931,8 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -489913,12 +488945,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimestrOrder_args) - return this.equals((getCriteriaTimestrOrder_args)that); + if (that instanceof getCriteriaTimestrPage_args) + return this.equals((getCriteriaTimestrPage_args)that); return false; } - public boolean equals(getCriteriaTimestrOrder_args that) { + public boolean equals(getCriteriaTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -489942,12 +488974,12 @@ public boolean equals(getCriteriaTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -489993,9 +489025,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -490013,7 +489045,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimestrOrder_args other) { + public int compareTo(getCriteriaTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -490040,12 +489072,12 @@ public int compareTo(getCriteriaTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -490101,7 +489133,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrPage_args("); boolean first = true; sb.append("criteria:"); @@ -490120,11 +489152,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -490161,8 +489193,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -490188,17 +489220,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrOrder_argsStandardScheme getScheme() { - return new getCriteriaTimestrOrder_argsStandardScheme(); + public getCriteriaTimestrPage_argsStandardScheme getScheme() { + return new getCriteriaTimestrPage_argsStandardScheme(); } } - private static class getCriteriaTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -490225,11 +489257,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -490272,7 +489304,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -490286,9 +489318,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -490312,17 +489344,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr } - private static class getCriteriaTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrOrder_argsTupleScheme getScheme() { - return new getCriteriaTimestrOrder_argsTupleScheme(); + public getCriteriaTimestrPage_argsTupleScheme getScheme() { + return new getCriteriaTimestrPage_argsTupleScheme(); } } - private static class getCriteriaTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -490331,7 +489363,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -490350,8 +489382,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -490365,7 +489397,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -490378,9 +489410,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOr struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -490404,8 +489436,8 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrOrder_result"); + public static class getCriteriaTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -490413,8 +489445,8 @@ public static class getCriteriaTimestrOrder_result implements org.apache.thrift. private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -490515,13 +489547,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrPage_result.class, metaDataMap); } - public getCriteriaTimestrOrder_result() { + public getCriteriaTimestrPage_result() { } - public getCriteriaTimestrOrder_result( + public getCriteriaTimestrPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -490539,7 +489571,7 @@ public getCriteriaTimestrOrder_result( /** * Performs a deep copy on other. */ - public getCriteriaTimestrOrder_result(getCriteriaTimestrOrder_result other) { + public getCriteriaTimestrPage_result(getCriteriaTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -490581,8 +489613,8 @@ public getCriteriaTimestrOrder_result(getCriteriaTimestrOrder_result other) { } @Override - public getCriteriaTimestrOrder_result deepCopy() { - return new getCriteriaTimestrOrder_result(this); + public getCriteriaTimestrPage_result deepCopy() { + return new getCriteriaTimestrPage_result(this); } @Override @@ -490610,7 +489642,7 @@ public java.util.Map> success) { + public getCriteriaTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -490635,7 +489667,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -490660,7 +489692,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -490685,7 +489717,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCriteriaTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCriteriaTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -490710,7 +489742,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCriteriaTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCriteriaTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -490823,12 +489855,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimestrOrder_result) - return this.equals((getCriteriaTimestrOrder_result)that); + if (that instanceof getCriteriaTimestrPage_result) + return this.equals((getCriteriaTimestrPage_result)that); return false; } - public boolean equals(getCriteriaTimestrOrder_result that) { + public boolean equals(getCriteriaTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -490910,7 +489942,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimestrOrder_result other) { + public int compareTo(getCriteriaTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -490987,7 +490019,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -491054,17 +490086,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrOrder_resultStandardScheme getScheme() { - return new getCriteriaTimestrOrder_resultStandardScheme(); + public getCriteriaTimestrPage_resultStandardScheme getScheme() { + return new getCriteriaTimestrPage_resultStandardScheme(); } } - private static class getCriteriaTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -491077,28 +490109,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5406 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5406.size); - long _key5407; - @org.apache.thrift.annotation.Nullable java.util.Map _val5408; - for (int _i5409 = 0; _i5409 < _map5406.size; ++_i5409) + org.apache.thrift.protocol.TMap _map5386 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5386.size); + long _key5387; + @org.apache.thrift.annotation.Nullable java.util.Map _val5388; + for (int _i5389 = 0; _i5389 < _map5386.size; ++_i5389) { - _key5407 = iprot.readI64(); + _key5387 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5410 = iprot.readMapBegin(); - _val5408 = new java.util.LinkedHashMap(2*_map5410.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5411; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5412; - for (int _i5413 = 0; _i5413 < _map5410.size; ++_i5413) + org.apache.thrift.protocol.TMap _map5390 = iprot.readMapBegin(); + _val5388 = new java.util.LinkedHashMap(2*_map5390.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5391; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5392; + for (int _i5393 = 0; _i5393 < _map5390.size; ++_i5393) { - _key5411 = iprot.readString(); - _val5412 = new com.cinchapi.concourse.thrift.TObject(); - _val5412.read(iprot); - _val5408.put(_key5411, _val5412); + _key5391 = iprot.readString(); + _val5392 = new com.cinchapi.concourse.thrift.TObject(); + _val5392.read(iprot); + _val5388.put(_key5391, _val5392); } iprot.readMapEnd(); } - struct.success.put(_key5407, _val5408); + struct.success.put(_key5387, _val5388); } iprot.readMapEnd(); } @@ -491155,7 +490187,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -491163,15 +490195,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5414 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5394 : struct.success.entrySet()) { - oprot.writeI64(_iter5414.getKey()); + oprot.writeI64(_iter5394.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5414.getValue().size())); - for (java.util.Map.Entry _iter5415 : _iter5414.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5394.getValue().size())); + for (java.util.Map.Entry _iter5395 : _iter5394.getValue().entrySet()) { - oprot.writeString(_iter5415.getKey()); - _iter5415.getValue().write(oprot); + oprot.writeString(_iter5395.getKey()); + _iter5395.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -491206,17 +490238,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr } - private static class getCriteriaTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrOrder_resultTupleScheme getScheme() { - return new getCriteriaTimestrOrder_resultTupleScheme(); + public getCriteriaTimestrPage_resultTupleScheme getScheme() { + return new getCriteriaTimestrPage_resultTupleScheme(); } } - private static class getCriteriaTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -491238,15 +490270,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5416 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5396 : struct.success.entrySet()) { - oprot.writeI64(_iter5416.getKey()); + oprot.writeI64(_iter5396.getKey()); { - oprot.writeI32(_iter5416.getValue().size()); - for (java.util.Map.Entry _iter5417 : _iter5416.getValue().entrySet()) + oprot.writeI32(_iter5396.getValue().size()); + for (java.util.Map.Entry _iter5397 : _iter5396.getValue().entrySet()) { - oprot.writeString(_iter5417.getKey()); - _iter5417.getValue().write(oprot); + oprot.writeString(_iter5397.getKey()); + _iter5397.getValue().write(oprot); } } } @@ -491267,32 +490299,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5418 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5418.size); - long _key5419; - @org.apache.thrift.annotation.Nullable java.util.Map _val5420; - for (int _i5421 = 0; _i5421 < _map5418.size; ++_i5421) + org.apache.thrift.protocol.TMap _map5398 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5398.size); + long _key5399; + @org.apache.thrift.annotation.Nullable java.util.Map _val5400; + for (int _i5401 = 0; _i5401 < _map5398.size; ++_i5401) { - _key5419 = iprot.readI64(); + _key5399 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5422 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5420 = new java.util.LinkedHashMap(2*_map5422.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5423; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5424; - for (int _i5425 = 0; _i5425 < _map5422.size; ++_i5425) + org.apache.thrift.protocol.TMap _map5402 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5400 = new java.util.LinkedHashMap(2*_map5402.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5403; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5404; + for (int _i5405 = 0; _i5405 < _map5402.size; ++_i5405) { - _key5423 = iprot.readString(); - _val5424 = new com.cinchapi.concourse.thrift.TObject(); - _val5424.read(iprot); - _val5420.put(_key5423, _val5424); + _key5403 = iprot.readString(); + _val5404 = new com.cinchapi.concourse.thrift.TObject(); + _val5404.read(iprot); + _val5400.put(_key5403, _val5404); } } - struct.success.put(_key5419, _val5420); + struct.success.put(_key5399, _val5400); } } struct.setSuccessIsSet(true); @@ -491325,24 +490357,22 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrOrderPage_args"); + public static class getCriteriaTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrOrder_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -491352,10 +490382,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), TIMESTAMP((short)2, "timestamp"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -491377,13 +490406,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -491437,8 +490464,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -491446,17 +490471,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrOrder_args.class, metaDataMap); } - public getCriteriaTimestrOrderPage_args() { + public getCriteriaTimestrOrder_args() { } - public getCriteriaTimestrOrderPage_args( + public getCriteriaTimestrOrder_args( com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -491465,7 +490489,6 @@ public getCriteriaTimestrOrderPage_args( this.criteria = criteria; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -491474,7 +490497,7 @@ public getCriteriaTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public getCriteriaTimestrOrderPage_args(getCriteriaTimestrOrderPage_args other) { + public getCriteriaTimestrOrder_args(getCriteriaTimestrOrder_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } @@ -491484,9 +490507,6 @@ public getCriteriaTimestrOrderPage_args(getCriteriaTimestrOrderPage_args other) if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -491499,8 +490519,8 @@ public getCriteriaTimestrOrderPage_args(getCriteriaTimestrOrderPage_args other) } @Override - public getCriteriaTimestrOrderPage_args deepCopy() { - return new getCriteriaTimestrOrderPage_args(this); + public getCriteriaTimestrOrder_args deepCopy() { + return new getCriteriaTimestrOrder_args(this); } @Override @@ -491508,7 +490528,6 @@ public void clear() { this.criteria = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -491519,7 +490538,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getCriteriaTimestrOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getCriteriaTimestrOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -491544,7 +490563,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getCriteriaTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getCriteriaTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -491569,7 +490588,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getCriteriaTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getCriteriaTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -491589,37 +490608,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCriteriaTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCriteriaTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -491644,7 +490638,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCriteriaTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -491669,7 +490663,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCriteriaTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -491716,14 +490710,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -491764,9 +490750,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -491794,8 +490777,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -491808,12 +490789,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimestrOrderPage_args) - return this.equals((getCriteriaTimestrOrderPage_args)that); + if (that instanceof getCriteriaTimestrOrder_args) + return this.equals((getCriteriaTimestrOrder_args)that); return false; } - public boolean equals(getCriteriaTimestrOrderPage_args that) { + public boolean equals(getCriteriaTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -491846,15 +490827,6 @@ public boolean equals(getCriteriaTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -491901,10 +490873,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -491921,7 +490889,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimestrOrderPage_args other) { + public int compareTo(getCriteriaTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -491958,16 +490926,6 @@ public int compareTo(getCriteriaTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -492019,7 +490977,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrOrder_args("); boolean first = true; sb.append("criteria:"); @@ -492046,14 +491004,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -492090,9 +491040,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -492117,17 +491064,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrOrderPage_argsStandardScheme getScheme() { - return new getCriteriaTimestrOrderPage_argsStandardScheme(); + public getCriteriaTimestrOrder_argsStandardScheme getScheme() { + return new getCriteriaTimestrOrder_argsStandardScheme(); } } - private static class getCriteriaTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -492163,16 +491110,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -492181,7 +491119,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -492190,7 +491128,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -492210,7 +491148,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -492229,11 +491167,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -492255,17 +491188,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr } - private static class getCriteriaTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrOrderPage_argsTupleScheme getScheme() { - return new getCriteriaTimestrOrderPage_argsTupleScheme(); + public getCriteriaTimestrOrder_argsTupleScheme getScheme() { + return new getCriteriaTimestrOrder_argsTupleScheme(); } } - private static class getCriteriaTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -492277,19 +491210,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } @@ -492299,9 +491229,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -492314,9 +491241,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); @@ -492332,21 +491259,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOr struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -492358,8 +491280,8 @@ private static S scheme(org.apache. } } - public static class getCriteriaTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrOrderPage_result"); + public static class getCriteriaTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -492367,8 +491289,8 @@ public static class getCriteriaTimestrOrderPage_result implements org.apache.thr private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -492469,13 +491391,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrOrder_result.class, metaDataMap); } - public getCriteriaTimestrOrderPage_result() { + public getCriteriaTimestrOrder_result() { } - public getCriteriaTimestrOrderPage_result( + public getCriteriaTimestrOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -492493,7 +491415,7 @@ public getCriteriaTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public getCriteriaTimestrOrderPage_result(getCriteriaTimestrOrderPage_result other) { + public getCriteriaTimestrOrder_result(getCriteriaTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -492535,8 +491457,8 @@ public getCriteriaTimestrOrderPage_result(getCriteriaTimestrOrderPage_result oth } @Override - public getCriteriaTimestrOrderPage_result deepCopy() { - return new getCriteriaTimestrOrderPage_result(this); + public getCriteriaTimestrOrder_result deepCopy() { + return new getCriteriaTimestrOrder_result(this); } @Override @@ -492564,7 +491486,7 @@ public java.util.Map> success) { + public getCriteriaTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -492589,7 +491511,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCriteriaTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -492614,7 +491536,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCriteriaTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -492639,7 +491561,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCriteriaTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCriteriaTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -492664,7 +491586,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCriteriaTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCriteriaTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -492777,12 +491699,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCriteriaTimestrOrderPage_result) - return this.equals((getCriteriaTimestrOrderPage_result)that); + if (that instanceof getCriteriaTimestrOrder_result) + return this.equals((getCriteriaTimestrOrder_result)that); return false; } - public boolean equals(getCriteriaTimestrOrderPage_result that) { + public boolean equals(getCriteriaTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -492864,7 +491786,7 @@ public int hashCode() { } @Override - public int compareTo(getCriteriaTimestrOrderPage_result other) { + public int compareTo(getCriteriaTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -492941,7 +491863,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -493008,17 +491930,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCriteriaTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrOrderPage_resultStandardScheme getScheme() { - return new getCriteriaTimestrOrderPage_resultStandardScheme(); + public getCriteriaTimestrOrder_resultStandardScheme getScheme() { + return new getCriteriaTimestrOrder_resultStandardScheme(); } } - private static class getCriteriaTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -493031,28 +491953,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5426 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5426.size); - long _key5427; - @org.apache.thrift.annotation.Nullable java.util.Map _val5428; - for (int _i5429 = 0; _i5429 < _map5426.size; ++_i5429) + org.apache.thrift.protocol.TMap _map5406 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5406.size); + long _key5407; + @org.apache.thrift.annotation.Nullable java.util.Map _val5408; + for (int _i5409 = 0; _i5409 < _map5406.size; ++_i5409) { - _key5427 = iprot.readI64(); + _key5407 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5430 = iprot.readMapBegin(); - _val5428 = new java.util.LinkedHashMap(2*_map5430.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5431; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5432; - for (int _i5433 = 0; _i5433 < _map5430.size; ++_i5433) + org.apache.thrift.protocol.TMap _map5410 = iprot.readMapBegin(); + _val5408 = new java.util.LinkedHashMap(2*_map5410.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5411; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5412; + for (int _i5413 = 0; _i5413 < _map5410.size; ++_i5413) { - _key5431 = iprot.readString(); - _val5432 = new com.cinchapi.concourse.thrift.TObject(); - _val5432.read(iprot); - _val5428.put(_key5431, _val5432); + _key5411 = iprot.readString(); + _val5412 = new com.cinchapi.concourse.thrift.TObject(); + _val5412.read(iprot); + _val5408.put(_key5411, _val5412); } iprot.readMapEnd(); } - struct.success.put(_key5427, _val5428); + struct.success.put(_key5407, _val5408); } iprot.readMapEnd(); } @@ -493109,7 +492031,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -493117,15 +492039,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5434 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5414 : struct.success.entrySet()) { - oprot.writeI64(_iter5434.getKey()); + oprot.writeI64(_iter5414.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5434.getValue().size())); - for (java.util.Map.Entry _iter5435 : _iter5434.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5414.getValue().size())); + for (java.util.Map.Entry _iter5415 : _iter5414.getValue().entrySet()) { - oprot.writeString(_iter5435.getKey()); - _iter5435.getValue().write(oprot); + oprot.writeString(_iter5415.getKey()); + _iter5415.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -493160,17 +492082,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestr } - private static class getCriteriaTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCriteriaTimestrOrderPage_resultTupleScheme getScheme() { - return new getCriteriaTimestrOrderPage_resultTupleScheme(); + public getCriteriaTimestrOrder_resultTupleScheme getScheme() { + return new getCriteriaTimestrOrder_resultTupleScheme(); } } - private static class getCriteriaTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -493192,15 +492114,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5436 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5416 : struct.success.entrySet()) { - oprot.writeI64(_iter5436.getKey()); + oprot.writeI64(_iter5416.getKey()); { - oprot.writeI32(_iter5436.getValue().size()); - for (java.util.Map.Entry _iter5437 : _iter5436.getValue().entrySet()) + oprot.writeI32(_iter5416.getValue().size()); + for (java.util.Map.Entry _iter5417 : _iter5416.getValue().entrySet()) { - oprot.writeString(_iter5437.getKey()); - _iter5437.getValue().write(oprot); + oprot.writeString(_iter5417.getKey()); + _iter5417.getValue().write(oprot); } } } @@ -493221,32 +492143,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5438 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5438.size); - long _key5439; - @org.apache.thrift.annotation.Nullable java.util.Map _val5440; - for (int _i5441 = 0; _i5441 < _map5438.size; ++_i5441) + org.apache.thrift.protocol.TMap _map5418 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5418.size); + long _key5419; + @org.apache.thrift.annotation.Nullable java.util.Map _val5420; + for (int _i5421 = 0; _i5421 < _map5418.size; ++_i5421) { - _key5439 = iprot.readI64(); + _key5419 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5442 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5440 = new java.util.LinkedHashMap(2*_map5442.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5443; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5444; - for (int _i5445 = 0; _i5445 < _map5442.size; ++_i5445) + org.apache.thrift.protocol.TMap _map5422 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5420 = new java.util.LinkedHashMap(2*_map5422.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5423; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5424; + for (int _i5425 = 0; _i5425 < _map5422.size; ++_i5425) { - _key5443 = iprot.readString(); - _val5444 = new com.cinchapi.concourse.thrift.TObject(); - _val5444.read(iprot); - _val5440.put(_key5443, _val5444); + _key5423 = iprot.readString(); + _val5424 = new com.cinchapi.concourse.thrift.TObject(); + _val5424.read(iprot); + _val5420.put(_key5423, _val5424); } } - struct.success.put(_key5439, _val5440); + struct.success.put(_key5419, _val5420); } } struct.setSuccessIsSet(true); @@ -493279,31 +492201,37 @@ private static S scheme(org.apache. } } - public static class getCclTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTime_args"); + public static class getCriteriaTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCriteriaTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCriteriaTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CCL((short)1, "ccl"), + CRITERIA((short)1, "criteria"), TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -493319,15 +492247,19 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CCL - return CCL; + case 1: // CRITERIA + return CRITERIA; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -493372,15 +492304,17 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -493388,23 +492322,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrOrderPage_args.class, metaDataMap); } - public getCclTime_args() { + public getCriteriaTimestrOrderPage_args() { } - public getCclTime_args( - java.lang.String ccl, - long timestamp, + public getCriteriaTimestrOrderPage_args( + com.cinchapi.concourse.thrift.TCriteria criteria, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.ccl = ccl; + this.criteria = criteria; this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -493413,12 +492350,19 @@ public getCclTime_args( /** * Performs a deep copy on other. */ - public getCclTime_args(getCclTime_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetCcl()) { - this.ccl = other.ccl; + public getCriteriaTimestrOrderPage_args(getCriteriaTimestrOrderPage_args other) { + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -493431,66 +492375,119 @@ public getCclTime_args(getCclTime_args other) { } @Override - public getCclTime_args deepCopy() { - return new getCclTime_args(this); + public getCriteriaTimestrOrderPage_args deepCopy() { + return new getCriteriaTimestrOrderPage_args(this); } @Override public void clear() { - this.ccl = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.criteria = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public getCclTime_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public getCriteriaTimestrOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public getCclTime_args setTimestamp(long timestamp) { + public getCriteriaTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getCriteriaTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getCriteriaTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -493498,7 +492495,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCriteriaTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -493523,7 +492520,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCriteriaTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -493548,7 +492545,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCriteriaTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -493571,11 +492568,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); } break; @@ -493583,7 +492580,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -493618,12 +492631,18 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -493645,10 +492664,14 @@ public boolean isSet(_Fields field) { } switch (field) { - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -493661,32 +492684,50 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTime_args) - return this.equals((getCclTime_args)that); + if (that instanceof getCriteriaTimestrOrderPage_args) + return this.equals((getCriteriaTimestrOrderPage_args)that); return false; } - public boolean equals(getCclTime_args that) { + public boolean equals(getCriteriaTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -493724,11 +492765,21 @@ public boolean equals(getCclTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -493746,19 +492797,19 @@ public int hashCode() { } @Override - public int compareTo(getCclTime_args other) { + public int compareTo(getCriteriaTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); if (lastComparison != 0) { return lastComparison; } @@ -493773,6 +492824,26 @@ public int compareTo(getCclTime_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -493824,19 +492895,39 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrOrderPage_args("); boolean first = true; - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); } first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -493869,6 +492960,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -493887,25 +492987,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getCclTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTime_argsStandardScheme getScheme() { - return new getCclTime_argsStandardScheme(); + public getCriteriaTimestrOrderPage_argsStandardScheme getScheme() { + return new getCriteriaTimestrOrderPage_argsStandardScheme(); } } - private static class getCclTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -493915,23 +493013,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_args str break; } switch (schemeField.id) { - case 1: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 1: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -493940,7 +493057,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -493949,7 +493066,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -493969,18 +493086,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_args str } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -494002,40 +493131,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTime_args st } - private static class getCclTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTime_argsTupleScheme getScheme() { - return new getCclTime_argsTupleScheme(); + public getCriteriaTimestrOrderPage_argsTupleScheme getScheme() { + return new getCriteriaTimestrOrderPage_argsTupleScheme(); } } - private static class getCclTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(0); } if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -494049,28 +493190,39 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTime_args str } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -494082,8 +493234,8 @@ private static S scheme(org.apache. } } - public static class getCclTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTime_result"); + public static class getCriteriaTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCriteriaTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -494091,8 +493243,8 @@ public static class getCclTime_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -494193,13 +493345,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCriteriaTimestrOrderPage_result.class, metaDataMap); } - public getCclTime_result() { + public getCriteriaTimestrOrderPage_result() { } - public getCclTime_result( + public getCriteriaTimestrOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -494217,7 +493369,7 @@ public getCclTime_result( /** * Performs a deep copy on other. */ - public getCclTime_result(getCclTime_result other) { + public getCriteriaTimestrOrderPage_result(getCriteriaTimestrOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -494259,8 +493411,8 @@ public getCclTime_result(getCclTime_result other) { } @Override - public getCclTime_result deepCopy() { - return new getCclTime_result(this); + public getCriteriaTimestrOrderPage_result deepCopy() { + return new getCriteriaTimestrOrderPage_result(this); } @Override @@ -494288,7 +493440,7 @@ public java.util.Map> success) { + public getCriteriaTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -494313,7 +493465,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCriteriaTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -494338,7 +493490,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCriteriaTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -494363,7 +493515,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCriteriaTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -494388,7 +493540,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCriteriaTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -494501,12 +493653,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTime_result) - return this.equals((getCclTime_result)that); + if (that instanceof getCriteriaTimestrOrderPage_result) + return this.equals((getCriteriaTimestrOrderPage_result)that); return false; } - public boolean equals(getCclTime_result that) { + public boolean equals(getCriteriaTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -494588,7 +493740,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTime_result other) { + public int compareTo(getCriteriaTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -494665,7 +493817,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCriteriaTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -494732,17 +493884,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTime_resultStandardScheme getScheme() { - return new getCclTime_resultStandardScheme(); + public getCriteriaTimestrOrderPage_resultStandardScheme getScheme() { + return new getCriteriaTimestrOrderPage_resultStandardScheme(); } } - private static class getCclTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCriteriaTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -494755,28 +493907,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5446 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5446.size); - long _key5447; - @org.apache.thrift.annotation.Nullable java.util.Map _val5448; - for (int _i5449 = 0; _i5449 < _map5446.size; ++_i5449) + org.apache.thrift.protocol.TMap _map5426 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5426.size); + long _key5427; + @org.apache.thrift.annotation.Nullable java.util.Map _val5428; + for (int _i5429 = 0; _i5429 < _map5426.size; ++_i5429) { - _key5447 = iprot.readI64(); + _key5427 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5450 = iprot.readMapBegin(); - _val5448 = new java.util.LinkedHashMap(2*_map5450.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5451; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5452; - for (int _i5453 = 0; _i5453 < _map5450.size; ++_i5453) + org.apache.thrift.protocol.TMap _map5430 = iprot.readMapBegin(); + _val5428 = new java.util.LinkedHashMap(2*_map5430.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5431; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5432; + for (int _i5433 = 0; _i5433 < _map5430.size; ++_i5433) { - _key5451 = iprot.readString(); - _val5452 = new com.cinchapi.concourse.thrift.TObject(); - _val5452.read(iprot); - _val5448.put(_key5451, _val5452); + _key5431 = iprot.readString(); + _val5432 = new com.cinchapi.concourse.thrift.TObject(); + _val5432.read(iprot); + _val5428.put(_key5431, _val5432); } iprot.readMapEnd(); } - struct.success.put(_key5447, _val5448); + struct.success.put(_key5427, _val5428); } iprot.readMapEnd(); } @@ -494833,7 +493985,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_result s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -494841,15 +493993,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTime_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5454 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5434 : struct.success.entrySet()) { - oprot.writeI64(_iter5454.getKey()); + oprot.writeI64(_iter5434.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5454.getValue().size())); - for (java.util.Map.Entry _iter5455 : _iter5454.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5434.getValue().size())); + for (java.util.Map.Entry _iter5435 : _iter5434.getValue().entrySet()) { - oprot.writeString(_iter5455.getKey()); - _iter5455.getValue().write(oprot); + oprot.writeString(_iter5435.getKey()); + _iter5435.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -494884,17 +494036,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTime_result } - private static class getCclTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCriteriaTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTime_resultTupleScheme getScheme() { - return new getCclTime_resultTupleScheme(); + public getCriteriaTimestrOrderPage_resultTupleScheme getScheme() { + return new getCriteriaTimestrOrderPage_resultTupleScheme(); } } - private static class getCclTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCriteriaTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -494916,15 +494068,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTime_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5456 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5436 : struct.success.entrySet()) { - oprot.writeI64(_iter5456.getKey()); + oprot.writeI64(_iter5436.getKey()); { - oprot.writeI32(_iter5456.getValue().size()); - for (java.util.Map.Entry _iter5457 : _iter5456.getValue().entrySet()) + oprot.writeI32(_iter5436.getValue().size()); + for (java.util.Map.Entry _iter5437 : _iter5436.getValue().entrySet()) { - oprot.writeString(_iter5457.getKey()); - _iter5457.getValue().write(oprot); + oprot.writeString(_iter5437.getKey()); + _iter5437.getValue().write(oprot); } } } @@ -494945,32 +494097,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTime_result s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5458 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5458.size); - long _key5459; - @org.apache.thrift.annotation.Nullable java.util.Map _val5460; - for (int _i5461 = 0; _i5461 < _map5458.size; ++_i5461) + org.apache.thrift.protocol.TMap _map5438 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5438.size); + long _key5439; + @org.apache.thrift.annotation.Nullable java.util.Map _val5440; + for (int _i5441 = 0; _i5441 < _map5438.size; ++_i5441) { - _key5459 = iprot.readI64(); + _key5439 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5462 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5460 = new java.util.LinkedHashMap(2*_map5462.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5463; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5464; - for (int _i5465 = 0; _i5465 < _map5462.size; ++_i5465) + org.apache.thrift.protocol.TMap _map5442 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5440 = new java.util.LinkedHashMap(2*_map5442.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5443; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5444; + for (int _i5445 = 0; _i5445 < _map5442.size; ++_i5445) { - _key5463 = iprot.readString(); - _val5464 = new com.cinchapi.concourse.thrift.TObject(); - _val5464.read(iprot); - _val5460.put(_key5463, _val5464); + _key5443 = iprot.readString(); + _val5444 = new com.cinchapi.concourse.thrift.TObject(); + _val5444.read(iprot); + _val5440.put(_key5443, _val5444); } } - struct.success.put(_key5459, _val5460); + struct.success.put(_key5439, _val5440); } } struct.setSuccessIsSet(true); @@ -495003,22 +494155,20 @@ private static S scheme(org.apache. } } - public static class getCclTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimePage_args"); + public static class getCclTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTime_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -495027,10 +494177,9 @@ public static class getCclTimePage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -495050,13 +494199,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -495110,8 +494257,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -495119,16 +494264,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTime_args.class, metaDataMap); } - public getCclTimePage_args() { + public getCclTime_args() { } - public getCclTimePage_args( + public getCclTime_args( java.lang.String ccl, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -495137,7 +494281,6 @@ public getCclTimePage_args( this.ccl = ccl; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -495146,15 +494289,12 @@ public getCclTimePage_args( /** * Performs a deep copy on other. */ - public getCclTimePage_args(getCclTimePage_args other) { + public getCclTime_args(getCclTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetCcl()) { this.ccl = other.ccl; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -495167,8 +494307,8 @@ public getCclTimePage_args(getCclTimePage_args other) { } @Override - public getCclTimePage_args deepCopy() { - return new getCclTimePage_args(this); + public getCclTime_args deepCopy() { + return new getCclTime_args(this); } @Override @@ -495176,7 +494316,6 @@ public void clear() { this.ccl = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -495187,7 +494326,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclTimePage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclTime_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -495211,7 +494350,7 @@ public long getTimestamp() { return this.timestamp; } - public getCclTimePage_args setTimestamp(long timestamp) { + public getCclTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -495230,37 +494369,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCclTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -495285,7 +494399,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -495310,7 +494424,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -495349,14 +494463,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -495394,9 +494500,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -495422,8 +494525,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -495436,12 +494537,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimePage_args) - return this.equals((getCclTimePage_args)that); + if (that instanceof getCclTime_args) + return this.equals((getCclTime_args)that); return false; } - public boolean equals(getCclTimePage_args that) { + public boolean equals(getCclTime_args that) { if (that == null) return false; if (this == that) @@ -495465,15 +494566,6 @@ public boolean equals(getCclTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -495514,10 +494606,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -495534,7 +494622,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimePage_args other) { + public int compareTo(getCclTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -495561,16 +494649,6 @@ public int compareTo(getCclTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -495622,7 +494700,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTime_args("); boolean first = true; sb.append("ccl:"); @@ -495637,14 +494715,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -495675,9 +494745,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -495704,17 +494771,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimePage_argsStandardScheme getScheme() { - return new getCclTimePage_argsStandardScheme(); + public getCclTime_argsStandardScheme getScheme() { + return new getCclTime_argsStandardScheme(); } } - private static class getCclTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -495740,16 +494807,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -495758,7 +494816,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -495767,7 +494825,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -495787,7 +494845,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -495799,11 +494857,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimePage_arg oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -495825,17 +494878,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimePage_arg } - private static class getCclTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimePage_argsTupleScheme getScheme() { - return new getCclTimePage_argsTupleScheme(); + public getCclTime_argsTupleScheme getScheme() { + return new getCclTime_argsTupleScheme(); } } - private static class getCclTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -495844,28 +494897,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_args if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -495878,9 +494925,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); @@ -495890,21 +494937,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_args struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -495916,8 +494958,8 @@ private static S scheme(org.apache. } } - public static class getCclTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimePage_result"); + public static class getCclTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -495925,8 +494967,8 @@ public static class getCclTimePage_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -496027,13 +495069,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTime_result.class, metaDataMap); } - public getCclTimePage_result() { + public getCclTime_result() { } - public getCclTimePage_result( + public getCclTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -496051,7 +495093,7 @@ public getCclTimePage_result( /** * Performs a deep copy on other. */ - public getCclTimePage_result(getCclTimePage_result other) { + public getCclTime_result(getCclTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -496093,8 +495135,8 @@ public getCclTimePage_result(getCclTimePage_result other) { } @Override - public getCclTimePage_result deepCopy() { - return new getCclTimePage_result(this); + public getCclTime_result deepCopy() { + return new getCclTime_result(this); } @Override @@ -496122,7 +495164,7 @@ public java.util.Map> success) { + public getCclTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -496147,7 +495189,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -496172,7 +495214,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -496197,7 +495239,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -496222,7 +495264,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -496335,12 +495377,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimePage_result) - return this.equals((getCclTimePage_result)that); + if (that instanceof getCclTime_result) + return this.equals((getCclTime_result)that); return false; } - public boolean equals(getCclTimePage_result that) { + public boolean equals(getCclTime_result that) { if (that == null) return false; if (this == that) @@ -496422,7 +495464,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimePage_result other) { + public int compareTo(getCclTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -496499,7 +495541,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTime_result("); boolean first = true; sb.append("success:"); @@ -496566,17 +495608,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimePage_resultStandardScheme getScheme() { - return new getCclTimePage_resultStandardScheme(); + public getCclTime_resultStandardScheme getScheme() { + return new getCclTime_resultStandardScheme(); } } - private static class getCclTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -496589,28 +495631,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5466 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5466.size); - long _key5467; - @org.apache.thrift.annotation.Nullable java.util.Map _val5468; - for (int _i5469 = 0; _i5469 < _map5466.size; ++_i5469) + org.apache.thrift.protocol.TMap _map5446 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5446.size); + long _key5447; + @org.apache.thrift.annotation.Nullable java.util.Map _val5448; + for (int _i5449 = 0; _i5449 < _map5446.size; ++_i5449) { - _key5467 = iprot.readI64(); + _key5447 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5470 = iprot.readMapBegin(); - _val5468 = new java.util.LinkedHashMap(2*_map5470.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5471; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5472; - for (int _i5473 = 0; _i5473 < _map5470.size; ++_i5473) + org.apache.thrift.protocol.TMap _map5450 = iprot.readMapBegin(); + _val5448 = new java.util.LinkedHashMap(2*_map5450.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5451; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5452; + for (int _i5453 = 0; _i5453 < _map5450.size; ++_i5453) { - _key5471 = iprot.readString(); - _val5472 = new com.cinchapi.concourse.thrift.TObject(); - _val5472.read(iprot); - _val5468.put(_key5471, _val5472); + _key5451 = iprot.readString(); + _val5452 = new com.cinchapi.concourse.thrift.TObject(); + _val5452.read(iprot); + _val5448.put(_key5451, _val5452); } iprot.readMapEnd(); } - struct.success.put(_key5467, _val5468); + struct.success.put(_key5447, _val5448); } iprot.readMapEnd(); } @@ -496667,7 +495709,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -496675,15 +495717,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimePage_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5474 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5454 : struct.success.entrySet()) { - oprot.writeI64(_iter5474.getKey()); + oprot.writeI64(_iter5454.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5474.getValue().size())); - for (java.util.Map.Entry _iter5475 : _iter5474.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5454.getValue().size())); + for (java.util.Map.Entry _iter5455 : _iter5454.getValue().entrySet()) { - oprot.writeString(_iter5475.getKey()); - _iter5475.getValue().write(oprot); + oprot.writeString(_iter5455.getKey()); + _iter5455.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -496718,17 +495760,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimePage_res } - private static class getCclTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimePage_resultTupleScheme getScheme() { - return new getCclTimePage_resultTupleScheme(); + public getCclTime_resultTupleScheme getScheme() { + return new getCclTime_resultTupleScheme(); } } - private static class getCclTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -496750,15 +495792,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5476 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5456 : struct.success.entrySet()) { - oprot.writeI64(_iter5476.getKey()); + oprot.writeI64(_iter5456.getKey()); { - oprot.writeI32(_iter5476.getValue().size()); - for (java.util.Map.Entry _iter5477 : _iter5476.getValue().entrySet()) + oprot.writeI32(_iter5456.getValue().size()); + for (java.util.Map.Entry _iter5457 : _iter5456.getValue().entrySet()) { - oprot.writeString(_iter5477.getKey()); - _iter5477.getValue().write(oprot); + oprot.writeString(_iter5457.getKey()); + _iter5457.getValue().write(oprot); } } } @@ -496779,32 +495821,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_resu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5478 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5478.size); - long _key5479; - @org.apache.thrift.annotation.Nullable java.util.Map _val5480; - for (int _i5481 = 0; _i5481 < _map5478.size; ++_i5481) + org.apache.thrift.protocol.TMap _map5458 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5458.size); + long _key5459; + @org.apache.thrift.annotation.Nullable java.util.Map _val5460; + for (int _i5461 = 0; _i5461 < _map5458.size; ++_i5461) { - _key5479 = iprot.readI64(); + _key5459 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5482 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5480 = new java.util.LinkedHashMap(2*_map5482.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5483; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5484; - for (int _i5485 = 0; _i5485 < _map5482.size; ++_i5485) + org.apache.thrift.protocol.TMap _map5462 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5460 = new java.util.LinkedHashMap(2*_map5462.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5463; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5464; + for (int _i5465 = 0; _i5465 < _map5462.size; ++_i5465) { - _key5483 = iprot.readString(); - _val5484 = new com.cinchapi.concourse.thrift.TObject(); - _val5484.read(iprot); - _val5480.put(_key5483, _val5484); + _key5463 = iprot.readString(); + _val5464 = new com.cinchapi.concourse.thrift.TObject(); + _val5464.read(iprot); + _val5460.put(_key5463, _val5464); } } - struct.success.put(_key5479, _val5480); + struct.success.put(_key5459, _val5460); } } struct.setSuccessIsSet(true); @@ -496837,22 +495879,22 @@ private static S scheme(org.apache. } } - public static class getCclTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimeOrder_args"); + public static class getCclTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimePage_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -496861,7 +495903,7 @@ public static class getCclTimeOrder_args implements org.apache.thrift.TBaseother. */ - public getCclTimeOrder_args(getCclTimeOrder_args other) { + public getCclTimePage_args(getCclTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetCcl()) { this.ccl = other.ccl; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -497001,8 +496043,8 @@ public getCclTimeOrder_args(getCclTimeOrder_args other) { } @Override - public getCclTimeOrder_args deepCopy() { - return new getCclTimeOrder_args(this); + public getCclTimePage_args deepCopy() { + return new getCclTimePage_args(this); } @Override @@ -497010,7 +496052,7 @@ public void clear() { this.ccl = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -497021,7 +496063,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclTimeOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclTimePage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -497045,7 +496087,7 @@ public long getTimestamp() { return this.timestamp; } - public getCclTimeOrder_args setTimestamp(long timestamp) { + public getCclTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -497065,27 +496107,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getCclTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getCclTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -497094,7 +496136,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -497119,7 +496161,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -497144,7 +496186,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -497183,11 +496225,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -497228,8 +496270,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -497256,8 +496298,8 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -497270,12 +496312,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimeOrder_args) - return this.equals((getCclTimeOrder_args)that); + if (that instanceof getCclTimePage_args) + return this.equals((getCclTimePage_args)that); return false; } - public boolean equals(getCclTimeOrder_args that) { + public boolean equals(getCclTimePage_args that) { if (that == null) return false; if (this == that) @@ -497299,12 +496341,12 @@ public boolean equals(getCclTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -497348,9 +496390,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -497368,7 +496410,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimeOrder_args other) { + public int compareTo(getCclTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -497395,12 +496437,12 @@ public int compareTo(getCclTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -497456,7 +496498,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimePage_args("); boolean first = true; sb.append("ccl:"); @@ -497471,11 +496513,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -497509,8 +496551,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -497538,17 +496580,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimeOrder_argsStandardScheme getScheme() { - return new getCclTimeOrder_argsStandardScheme(); + public getCclTimePage_argsStandardScheme getScheme() { + return new getCclTimePage_argsStandardScheme(); } } - private static class getCclTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -497574,11 +496616,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrder_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -497621,7 +496663,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrder_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -497633,9 +496675,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrder_ar oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -497659,17 +496701,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrder_ar } - private static class getCclTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimeOrder_argsTupleScheme getScheme() { - return new getCclTimeOrder_argsTupleScheme(); + public getCclTimePage_argsTupleScheme getScheme() { + return new getCclTimePage_argsTupleScheme(); } } - private static class getCclTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -497678,7 +496720,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_arg if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -497697,8 +496739,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_arg if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -497712,7 +496754,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -497724,9 +496766,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_args struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -497750,8 +496792,8 @@ private static S scheme(org.apache. } } - public static class getCclTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimeOrder_result"); + public static class getCclTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -497759,8 +496801,8 @@ public static class getCclTimeOrder_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -497861,13 +496903,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimePage_result.class, metaDataMap); } - public getCclTimeOrder_result() { + public getCclTimePage_result() { } - public getCclTimeOrder_result( + public getCclTimePage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -497885,7 +496927,7 @@ public getCclTimeOrder_result( /** * Performs a deep copy on other. */ - public getCclTimeOrder_result(getCclTimeOrder_result other) { + public getCclTimePage_result(getCclTimePage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -497927,8 +496969,8 @@ public getCclTimeOrder_result(getCclTimeOrder_result other) { } @Override - public getCclTimeOrder_result deepCopy() { - return new getCclTimeOrder_result(this); + public getCclTimePage_result deepCopy() { + return new getCclTimePage_result(this); } @Override @@ -497956,7 +496998,7 @@ public java.util.Map> success) { + public getCclTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -497981,7 +497023,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -498006,7 +497048,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -498031,7 +497073,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -498056,7 +497098,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -498169,12 +497211,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimeOrder_result) - return this.equals((getCclTimeOrder_result)that); + if (that instanceof getCclTimePage_result) + return this.equals((getCclTimePage_result)that); return false; } - public boolean equals(getCclTimeOrder_result that) { + public boolean equals(getCclTimePage_result that) { if (that == null) return false; if (this == that) @@ -498256,7 +497298,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimeOrder_result other) { + public int compareTo(getCclTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -498333,7 +497375,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimePage_result("); boolean first = true; sb.append("success:"); @@ -498400,17 +497442,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimeOrder_resultStandardScheme getScheme() { - return new getCclTimeOrder_resultStandardScheme(); + public getCclTimePage_resultStandardScheme getScheme() { + return new getCclTimePage_resultStandardScheme(); } } - private static class getCclTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -498423,28 +497465,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrder_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5486 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5486.size); - long _key5487; - @org.apache.thrift.annotation.Nullable java.util.Map _val5488; - for (int _i5489 = 0; _i5489 < _map5486.size; ++_i5489) + org.apache.thrift.protocol.TMap _map5466 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5466.size); + long _key5467; + @org.apache.thrift.annotation.Nullable java.util.Map _val5468; + for (int _i5469 = 0; _i5469 < _map5466.size; ++_i5469) { - _key5487 = iprot.readI64(); + _key5467 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5490 = iprot.readMapBegin(); - _val5488 = new java.util.LinkedHashMap(2*_map5490.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5491; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5492; - for (int _i5493 = 0; _i5493 < _map5490.size; ++_i5493) + org.apache.thrift.protocol.TMap _map5470 = iprot.readMapBegin(); + _val5468 = new java.util.LinkedHashMap(2*_map5470.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5471; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5472; + for (int _i5473 = 0; _i5473 < _map5470.size; ++_i5473) { - _key5491 = iprot.readString(); - _val5492 = new com.cinchapi.concourse.thrift.TObject(); - _val5492.read(iprot); - _val5488.put(_key5491, _val5492); + _key5471 = iprot.readString(); + _val5472 = new com.cinchapi.concourse.thrift.TObject(); + _val5472.read(iprot); + _val5468.put(_key5471, _val5472); } iprot.readMapEnd(); } - struct.success.put(_key5487, _val5488); + struct.success.put(_key5467, _val5468); } iprot.readMapEnd(); } @@ -498501,7 +497543,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrder_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -498509,15 +497551,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrder_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5494 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5474 : struct.success.entrySet()) { - oprot.writeI64(_iter5494.getKey()); + oprot.writeI64(_iter5474.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5494.getValue().size())); - for (java.util.Map.Entry _iter5495 : _iter5494.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5474.getValue().size())); + for (java.util.Map.Entry _iter5475 : _iter5474.getValue().entrySet()) { - oprot.writeString(_iter5495.getKey()); - _iter5495.getValue().write(oprot); + oprot.writeString(_iter5475.getKey()); + _iter5475.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -498552,17 +497594,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrder_re } - private static class getCclTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimeOrder_resultTupleScheme getScheme() { - return new getCclTimeOrder_resultTupleScheme(); + public getCclTimePage_resultTupleScheme getScheme() { + return new getCclTimePage_resultTupleScheme(); } } - private static class getCclTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -498584,15 +497626,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5496 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5476 : struct.success.entrySet()) { - oprot.writeI64(_iter5496.getKey()); + oprot.writeI64(_iter5476.getKey()); { - oprot.writeI32(_iter5496.getValue().size()); - for (java.util.Map.Entry _iter5497 : _iter5496.getValue().entrySet()) + oprot.writeI32(_iter5476.getValue().size()); + for (java.util.Map.Entry _iter5477 : _iter5476.getValue().entrySet()) { - oprot.writeString(_iter5497.getKey()); - _iter5497.getValue().write(oprot); + oprot.writeString(_iter5477.getKey()); + _iter5477.getValue().write(oprot); } } } @@ -498613,32 +497655,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_res } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5498 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5498.size); - long _key5499; - @org.apache.thrift.annotation.Nullable java.util.Map _val5500; - for (int _i5501 = 0; _i5501 < _map5498.size; ++_i5501) + org.apache.thrift.protocol.TMap _map5478 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5478.size); + long _key5479; + @org.apache.thrift.annotation.Nullable java.util.Map _val5480; + for (int _i5481 = 0; _i5481 < _map5478.size; ++_i5481) { - _key5499 = iprot.readI64(); + _key5479 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5502 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5500 = new java.util.LinkedHashMap(2*_map5502.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5503; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5504; - for (int _i5505 = 0; _i5505 < _map5502.size; ++_i5505) + org.apache.thrift.protocol.TMap _map5482 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5480 = new java.util.LinkedHashMap(2*_map5482.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5483; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5484; + for (int _i5485 = 0; _i5485 < _map5482.size; ++_i5485) { - _key5503 = iprot.readString(); - _val5504 = new com.cinchapi.concourse.thrift.TObject(); - _val5504.read(iprot); - _val5500.put(_key5503, _val5504); + _key5483 = iprot.readString(); + _val5484 = new com.cinchapi.concourse.thrift.TObject(); + _val5484.read(iprot); + _val5480.put(_key5483, _val5484); } } - struct.success.put(_key5499, _val5500); + struct.success.put(_key5479, _val5480); } } struct.setSuccessIsSet(true); @@ -498671,24 +497713,22 @@ private static S scheme(org.apache. } } - public static class getCclTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimeOrderPage_args"); + public static class getCclTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimeOrder_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -498698,10 +497738,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CCL((short)1, "ccl"), TIMESTAMP((short)2, "timestamp"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -498723,13 +497762,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -498785,8 +497822,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -498794,17 +497829,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimeOrder_args.class, metaDataMap); } - public getCclTimeOrderPage_args() { + public getCclTimeOrder_args() { } - public getCclTimeOrderPage_args( + public getCclTimeOrder_args( java.lang.String ccl, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -498814,7 +497848,6 @@ public getCclTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -498823,7 +497856,7 @@ public getCclTimeOrderPage_args( /** * Performs a deep copy on other. */ - public getCclTimeOrderPage_args(getCclTimeOrderPage_args other) { + public getCclTimeOrder_args(getCclTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetCcl()) { this.ccl = other.ccl; @@ -498832,9 +497865,6 @@ public getCclTimeOrderPage_args(getCclTimeOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -498847,8 +497877,8 @@ public getCclTimeOrderPage_args(getCclTimeOrderPage_args other) { } @Override - public getCclTimeOrderPage_args deepCopy() { - return new getCclTimeOrderPage_args(this); + public getCclTimeOrder_args deepCopy() { + return new getCclTimeOrder_args(this); } @Override @@ -498857,7 +497887,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -498868,7 +497897,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclTimeOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclTimeOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -498892,7 +497921,7 @@ public long getTimestamp() { return this.timestamp; } - public getCclTimeOrderPage_args setTimestamp(long timestamp) { + public getCclTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -498916,7 +497945,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getCclTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getCclTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -498936,37 +497965,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCclTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -498991,7 +497995,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -499016,7 +498020,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -499063,14 +498067,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -499111,9 +498107,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -499141,8 +498134,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -499155,12 +498146,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimeOrderPage_args) - return this.equals((getCclTimeOrderPage_args)that); + if (that instanceof getCclTimeOrder_args) + return this.equals((getCclTimeOrder_args)that); return false; } - public boolean equals(getCclTimeOrderPage_args that) { + public boolean equals(getCclTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -499193,15 +498184,6 @@ public boolean equals(getCclTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -499246,10 +498228,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -499266,7 +498244,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimeOrderPage_args other) { + public int compareTo(getCclTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -499303,16 +498281,6 @@ public int compareTo(getCclTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -499364,7 +498332,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimeOrder_args("); boolean first = true; sb.append("ccl:"); @@ -499387,14 +498355,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -499428,9 +498388,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -499457,17 +498414,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimeOrderPage_argsStandardScheme getScheme() { - return new getCclTimeOrderPage_argsStandardScheme(); + public getCclTimeOrder_argsStandardScheme getScheme() { + return new getCclTimeOrder_argsStandardScheme(); } } - private static class getCclTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -499502,16 +498459,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -499520,7 +498468,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -499529,7 +498477,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -499549,7 +498497,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -499566,11 +498514,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrderPag struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -499592,17 +498535,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrderPag } - private static class getCclTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimeOrderPage_argsTupleScheme getScheme() { - return new getCclTimeOrderPage_argsTupleScheme(); + public getCclTimeOrder_argsTupleScheme getScheme() { + return new getCclTimeOrder_argsTupleScheme(); } } - private static class getCclTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -499614,19 +498557,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } @@ -499636,9 +498576,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -499651,9 +498588,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); @@ -499668,21 +498605,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_ struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -499694,8 +498626,8 @@ private static S scheme(org.apache. } } - public static class getCclTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimeOrderPage_result"); + public static class getCclTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -499703,8 +498635,8 @@ public static class getCclTimeOrderPage_result implements org.apache.thrift.TBas private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -499805,13 +498737,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimeOrder_result.class, metaDataMap); } - public getCclTimeOrderPage_result() { + public getCclTimeOrder_result() { } - public getCclTimeOrderPage_result( + public getCclTimeOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -499829,7 +498761,7 @@ public getCclTimeOrderPage_result( /** * Performs a deep copy on other. */ - public getCclTimeOrderPage_result(getCclTimeOrderPage_result other) { + public getCclTimeOrder_result(getCclTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -499871,8 +498803,8 @@ public getCclTimeOrderPage_result(getCclTimeOrderPage_result other) { } @Override - public getCclTimeOrderPage_result deepCopy() { - return new getCclTimeOrderPage_result(this); + public getCclTimeOrder_result deepCopy() { + return new getCclTimeOrder_result(this); } @Override @@ -499900,7 +498832,7 @@ public java.util.Map> success) { + public getCclTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -499925,7 +498857,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -499950,7 +498882,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -499975,7 +498907,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -500000,7 +498932,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -500113,12 +499045,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimeOrderPage_result) - return this.equals((getCclTimeOrderPage_result)that); + if (that instanceof getCclTimeOrder_result) + return this.equals((getCclTimeOrder_result)that); return false; } - public boolean equals(getCclTimeOrderPage_result that) { + public boolean equals(getCclTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -500200,7 +499132,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimeOrderPage_result other) { + public int compareTo(getCclTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -500277,7 +499209,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -500344,17 +499276,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimeOrderPage_resultStandardScheme getScheme() { - return new getCclTimeOrderPage_resultStandardScheme(); + public getCclTimeOrder_resultStandardScheme getScheme() { + return new getCclTimeOrder_resultStandardScheme(); } } - private static class getCclTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -500367,28 +499299,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5506 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5506.size); - long _key5507; - @org.apache.thrift.annotation.Nullable java.util.Map _val5508; - for (int _i5509 = 0; _i5509 < _map5506.size; ++_i5509) + org.apache.thrift.protocol.TMap _map5486 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5486.size); + long _key5487; + @org.apache.thrift.annotation.Nullable java.util.Map _val5488; + for (int _i5489 = 0; _i5489 < _map5486.size; ++_i5489) { - _key5507 = iprot.readI64(); + _key5487 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5510 = iprot.readMapBegin(); - _val5508 = new java.util.LinkedHashMap(2*_map5510.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5511; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5512; - for (int _i5513 = 0; _i5513 < _map5510.size; ++_i5513) + org.apache.thrift.protocol.TMap _map5490 = iprot.readMapBegin(); + _val5488 = new java.util.LinkedHashMap(2*_map5490.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5491; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5492; + for (int _i5493 = 0; _i5493 < _map5490.size; ++_i5493) { - _key5511 = iprot.readString(); - _val5512 = new com.cinchapi.concourse.thrift.TObject(); - _val5512.read(iprot); - _val5508.put(_key5511, _val5512); + _key5491 = iprot.readString(); + _val5492 = new com.cinchapi.concourse.thrift.TObject(); + _val5492.read(iprot); + _val5488.put(_key5491, _val5492); } iprot.readMapEnd(); } - struct.success.put(_key5507, _val5508); + struct.success.put(_key5487, _val5488); } iprot.readMapEnd(); } @@ -500445,7 +499377,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -500453,15 +499385,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrderPag oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5514 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5494 : struct.success.entrySet()) { - oprot.writeI64(_iter5514.getKey()); + oprot.writeI64(_iter5494.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5514.getValue().size())); - for (java.util.Map.Entry _iter5515 : _iter5514.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5494.getValue().size())); + for (java.util.Map.Entry _iter5495 : _iter5494.getValue().entrySet()) { - oprot.writeString(_iter5515.getKey()); - _iter5515.getValue().write(oprot); + oprot.writeString(_iter5495.getKey()); + _iter5495.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -500496,17 +499428,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrderPag } - private static class getCclTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimeOrderPage_resultTupleScheme getScheme() { - return new getCclTimeOrderPage_resultTupleScheme(); + public getCclTimeOrder_resultTupleScheme getScheme() { + return new getCclTimeOrder_resultTupleScheme(); } } - private static class getCclTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -500528,15 +499460,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5516 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5496 : struct.success.entrySet()) { - oprot.writeI64(_iter5516.getKey()); + oprot.writeI64(_iter5496.getKey()); { - oprot.writeI32(_iter5516.getValue().size()); - for (java.util.Map.Entry _iter5517 : _iter5516.getValue().entrySet()) + oprot.writeI32(_iter5496.getValue().size()); + for (java.util.Map.Entry _iter5497 : _iter5496.getValue().entrySet()) { - oprot.writeString(_iter5517.getKey()); - _iter5517.getValue().write(oprot); + oprot.writeString(_iter5497.getKey()); + _iter5497.getValue().write(oprot); } } } @@ -500557,32 +499489,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5518 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5518.size); - long _key5519; - @org.apache.thrift.annotation.Nullable java.util.Map _val5520; - for (int _i5521 = 0; _i5521 < _map5518.size; ++_i5521) + org.apache.thrift.protocol.TMap _map5498 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5498.size); + long _key5499; + @org.apache.thrift.annotation.Nullable java.util.Map _val5500; + for (int _i5501 = 0; _i5501 < _map5498.size; ++_i5501) { - _key5519 = iprot.readI64(); + _key5499 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5522 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5520 = new java.util.LinkedHashMap(2*_map5522.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5523; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5524; - for (int _i5525 = 0; _i5525 < _map5522.size; ++_i5525) + org.apache.thrift.protocol.TMap _map5502 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5500 = new java.util.LinkedHashMap(2*_map5502.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5503; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5504; + for (int _i5505 = 0; _i5505 < _map5502.size; ++_i5505) { - _key5523 = iprot.readString(); - _val5524 = new com.cinchapi.concourse.thrift.TObject(); - _val5524.read(iprot); - _val5520.put(_key5523, _val5524); + _key5503 = iprot.readString(); + _val5504 = new com.cinchapi.concourse.thrift.TObject(); + _val5504.read(iprot); + _val5500.put(_key5503, _val5504); } } - struct.success.put(_key5519, _val5520); + struct.success.put(_key5499, _val5500); } } struct.setSuccessIsSet(true); @@ -500615,20 +499547,24 @@ private static S scheme(org.apache. } } - public static class getCclTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestr_args"); + public static class getCclTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -500637,9 +499573,11 @@ public static class getCclTimestr_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -500659,11 +499597,15 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // CREDS + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -500708,13 +499650,19 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -500722,15 +499670,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimeOrderPage_args.class, metaDataMap); } - public getCclTimestr_args() { + public getCclTimeOrderPage_args() { } - public getCclTimestr_args( + public getCclTimeOrderPage_args( java.lang.String ccl, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -500738,6 +499688,9 @@ public getCclTimestr_args( this(); this.ccl = ccl; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -500746,12 +499699,17 @@ public getCclTimestr_args( /** * Performs a deep copy on other. */ - public getCclTimestr_args(getCclTimestr_args other) { + public getCclTimeOrderPage_args(getCclTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -500765,14 +499723,17 @@ public getCclTimestr_args(getCclTimestr_args other) { } @Override - public getCclTimestr_args deepCopy() { - return new getCclTimestr_args(this); + public getCclTimeOrderPage_args deepCopy() { + return new getCclTimeOrderPage_args(this); } @Override public void clear() { this.ccl = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -500783,7 +499744,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclTimestr_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclTimeOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -500803,28 +499764,76 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getCclTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getCclTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getCclTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getCclTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -500833,7 +499842,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -500858,7 +499867,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -500883,7 +499892,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -500918,7 +499927,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -500959,6 +499984,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -500984,6 +500015,10 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -500996,12 +500031,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimestr_args) - return this.equals((getCclTimestr_args)that); + if (that instanceof getCclTimeOrderPage_args) + return this.equals((getCclTimeOrderPage_args)that); return false; } - public boolean equals(getCclTimestr_args that) { + public boolean equals(getCclTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -501016,12 +500051,30 @@ public boolean equals(getCclTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -501063,9 +500116,15 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -501083,7 +500142,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimestr_args other) { + public int compareTo(getCclTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -501110,6 +500169,26 @@ public int compareTo(getCclTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -501161,7 +500240,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimeOrderPage_args("); boolean first = true; sb.append("ccl:"); @@ -501173,10 +500252,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -501210,6 +500301,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -501228,23 +500325,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getCclTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestr_argsStandardScheme getScheme() { - return new getCclTimestr_argsStandardScheme(); + public getCclTimeOrderPage_argsStandardScheme getScheme() { + return new getCclTimeOrderPage_argsStandardScheme(); } } - private static class getCclTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -501263,14 +500362,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_args } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -501279,7 +500396,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -501288,7 +500405,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -501308,7 +500425,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -501317,9 +500434,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestr_args oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -501343,17 +500468,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestr_args } - private static class getCclTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestr_argsTupleScheme getScheme() { - return new getCclTimestr_argsTupleScheme(); + public getCclTimeOrderPage_argsTupleScheme getScheme() { + return new getCclTimeOrderPage_argsTupleScheme(); } } - private static class getCclTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -501362,21 +500487,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_args if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -501390,28 +500527,38 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -501423,8 +500570,8 @@ private static S scheme(org.apache. } } - public static class getCclTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestr_result"); + public static class getCclTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -501432,8 +500579,8 @@ public static class getCclTimestr_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -501534,13 +500681,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimeOrderPage_result.class, metaDataMap); } - public getCclTimestr_result() { + public getCclTimeOrderPage_result() { } - public getCclTimestr_result( + public getCclTimeOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -501558,7 +500705,7 @@ public getCclTimestr_result( /** * Performs a deep copy on other. */ - public getCclTimestr_result(getCclTimestr_result other) { + public getCclTimeOrderPage_result(getCclTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -501600,8 +500747,8 @@ public getCclTimestr_result(getCclTimestr_result other) { } @Override - public getCclTimestr_result deepCopy() { - return new getCclTimestr_result(this); + public getCclTimeOrderPage_result deepCopy() { + return new getCclTimeOrderPage_result(this); } @Override @@ -501629,7 +500776,7 @@ public java.util.Map> success) { + public getCclTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -501654,7 +500801,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -501679,7 +500826,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -501704,7 +500851,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -501729,7 +500876,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -501842,12 +500989,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimestr_result) - return this.equals((getCclTimestr_result)that); + if (that instanceof getCclTimeOrderPage_result) + return this.equals((getCclTimeOrderPage_result)that); return false; } - public boolean equals(getCclTimestr_result that) { + public boolean equals(getCclTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -501929,7 +501076,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimestr_result other) { + public int compareTo(getCclTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -502006,7 +501153,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -502073,17 +501220,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestr_resultStandardScheme getScheme() { - return new getCclTimestr_resultStandardScheme(); + public getCclTimeOrderPage_resultStandardScheme getScheme() { + return new getCclTimeOrderPage_resultStandardScheme(); } } - private static class getCclTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -502096,28 +501243,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5526 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5526.size); - long _key5527; - @org.apache.thrift.annotation.Nullable java.util.Map _val5528; - for (int _i5529 = 0; _i5529 < _map5526.size; ++_i5529) + org.apache.thrift.protocol.TMap _map5506 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5506.size); + long _key5507; + @org.apache.thrift.annotation.Nullable java.util.Map _val5508; + for (int _i5509 = 0; _i5509 < _map5506.size; ++_i5509) { - _key5527 = iprot.readI64(); + _key5507 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5530 = iprot.readMapBegin(); - _val5528 = new java.util.LinkedHashMap(2*_map5530.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5531; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5532; - for (int _i5533 = 0; _i5533 < _map5530.size; ++_i5533) + org.apache.thrift.protocol.TMap _map5510 = iprot.readMapBegin(); + _val5508 = new java.util.LinkedHashMap(2*_map5510.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5511; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5512; + for (int _i5513 = 0; _i5513 < _map5510.size; ++_i5513) { - _key5531 = iprot.readString(); - _val5532 = new com.cinchapi.concourse.thrift.TObject(); - _val5532.read(iprot); - _val5528.put(_key5531, _val5532); + _key5511 = iprot.readString(); + _val5512 = new com.cinchapi.concourse.thrift.TObject(); + _val5512.read(iprot); + _val5508.put(_key5511, _val5512); } iprot.readMapEnd(); } - struct.success.put(_key5527, _val5528); + struct.success.put(_key5507, _val5508); } iprot.readMapEnd(); } @@ -502174,7 +501321,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -502182,15 +501329,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestr_resu oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5534 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5514 : struct.success.entrySet()) { - oprot.writeI64(_iter5534.getKey()); + oprot.writeI64(_iter5514.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5534.getValue().size())); - for (java.util.Map.Entry _iter5535 : _iter5534.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5514.getValue().size())); + for (java.util.Map.Entry _iter5515 : _iter5514.getValue().entrySet()) { - oprot.writeString(_iter5535.getKey()); - _iter5535.getValue().write(oprot); + oprot.writeString(_iter5515.getKey()); + _iter5515.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -502225,17 +501372,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestr_resu } - private static class getCclTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestr_resultTupleScheme getScheme() { - return new getCclTimestr_resultTupleScheme(); + public getCclTimeOrderPage_resultTupleScheme getScheme() { + return new getCclTimeOrderPage_resultTupleScheme(); } } - private static class getCclTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -502257,15 +501404,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5536 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5516 : struct.success.entrySet()) { - oprot.writeI64(_iter5536.getKey()); + oprot.writeI64(_iter5516.getKey()); { - oprot.writeI32(_iter5536.getValue().size()); - for (java.util.Map.Entry _iter5537 : _iter5536.getValue().entrySet()) + oprot.writeI32(_iter5516.getValue().size()); + for (java.util.Map.Entry _iter5517 : _iter5516.getValue().entrySet()) { - oprot.writeString(_iter5537.getKey()); - _iter5537.getValue().write(oprot); + oprot.writeString(_iter5517.getKey()); + _iter5517.getValue().write(oprot); } } } @@ -502286,32 +501433,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5538 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5538.size); - long _key5539; - @org.apache.thrift.annotation.Nullable java.util.Map _val5540; - for (int _i5541 = 0; _i5541 < _map5538.size; ++_i5541) + org.apache.thrift.protocol.TMap _map5518 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5518.size); + long _key5519; + @org.apache.thrift.annotation.Nullable java.util.Map _val5520; + for (int _i5521 = 0; _i5521 < _map5518.size; ++_i5521) { - _key5539 = iprot.readI64(); + _key5519 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5542 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5540 = new java.util.LinkedHashMap(2*_map5542.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5543; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5544; - for (int _i5545 = 0; _i5545 < _map5542.size; ++_i5545) + org.apache.thrift.protocol.TMap _map5522 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5520 = new java.util.LinkedHashMap(2*_map5522.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5523; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5524; + for (int _i5525 = 0; _i5525 < _map5522.size; ++_i5525) { - _key5543 = iprot.readString(); - _val5544 = new com.cinchapi.concourse.thrift.TObject(); - _val5544.read(iprot); - _val5540.put(_key5543, _val5544); + _key5523 = iprot.readString(); + _val5524 = new com.cinchapi.concourse.thrift.TObject(); + _val5524.read(iprot); + _val5520.put(_key5523, _val5524); } } - struct.success.put(_key5539, _val5540); + struct.success.put(_key5519, _val5520); } } struct.setSuccessIsSet(true); @@ -502344,22 +501491,20 @@ private static S scheme(org.apache. } } - public static class getCclTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrPage_args"); + public static class getCclTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestr_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -502368,10 +501513,9 @@ public static class getCclTimestrPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -502391,13 +501535,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 2: // TIMESTAMP return TIMESTAMP; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -502449,8 +501591,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -502458,16 +501598,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestr_args.class, metaDataMap); } - public getCclTimestrPage_args() { + public getCclTimestr_args() { } - public getCclTimestrPage_args( + public getCclTimestr_args( java.lang.String ccl, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -502475,7 +501614,6 @@ public getCclTimestrPage_args( this(); this.ccl = ccl; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -502484,16 +501622,13 @@ public getCclTimestrPage_args( /** * Performs a deep copy on other. */ - public getCclTimestrPage_args(getCclTimestrPage_args other) { + public getCclTimestr_args(getCclTimestr_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -502506,15 +501641,14 @@ public getCclTimestrPage_args(getCclTimestrPage_args other) { } @Override - public getCclTimestrPage_args deepCopy() { - return new getCclTimestrPage_args(this); + public getCclTimestr_args deepCopy() { + return new getCclTimestr_args(this); } @Override public void clear() { this.ccl = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -502525,7 +501659,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclTimestrPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclTimestr_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -502550,7 +501684,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getCclTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getCclTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -502570,37 +501704,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCclTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -502625,7 +501734,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -502650,7 +501759,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -502689,14 +501798,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -502734,9 +501835,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -502762,8 +501860,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -502776,12 +501872,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimestrPage_args) - return this.equals((getCclTimestrPage_args)that); + if (that instanceof getCclTimestr_args) + return this.equals((getCclTimestr_args)that); return false; } - public boolean equals(getCclTimestrPage_args that) { + public boolean equals(getCclTimestr_args that) { if (that == null) return false; if (this == that) @@ -502805,15 +501901,6 @@ public boolean equals(getCclTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -502856,10 +501943,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -502876,7 +501959,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimestrPage_args other) { + public int compareTo(getCclTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -502903,16 +501986,6 @@ public int compareTo(getCclTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -502964,7 +502037,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestr_args("); boolean first = true; sb.append("ccl:"); @@ -502983,14 +502056,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -503021,9 +502086,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -503048,17 +502110,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrPage_argsStandardScheme getScheme() { - return new getCclTimestrPage_argsStandardScheme(); + public getCclTimestr_argsStandardScheme getScheme() { + return new getCclTimestr_argsStandardScheme(); } } - private static class getCclTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -503084,16 +502146,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -503102,7 +502155,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -503111,7 +502164,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -503131,7 +502184,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -503145,11 +502198,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrPage_ oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -503171,17 +502219,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrPage_ } - private static class getCclTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrPage_argsTupleScheme getScheme() { - return new getCclTimestrPage_argsTupleScheme(); + public getCclTimestr_argsTupleScheme getScheme() { + return new getCclTimestr_argsTupleScheme(); } } - private static class getCclTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -503190,28 +502238,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_a if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -503224,9 +502266,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); @@ -503236,21 +502278,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_ar struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -503262,8 +502299,8 @@ private static S scheme(org.apache. } } - public static class getCclTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrPage_result"); + public static class getCclTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -503271,8 +502308,8 @@ public static class getCclTimestrPage_result implements org.apache.thrift.TBase< private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -503373,13 +502410,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestr_result.class, metaDataMap); } - public getCclTimestrPage_result() { + public getCclTimestr_result() { } - public getCclTimestrPage_result( + public getCclTimestr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -503397,7 +502434,7 @@ public getCclTimestrPage_result( /** * Performs a deep copy on other. */ - public getCclTimestrPage_result(getCclTimestrPage_result other) { + public getCclTimestr_result(getCclTimestr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -503439,8 +502476,8 @@ public getCclTimestrPage_result(getCclTimestrPage_result other) { } @Override - public getCclTimestrPage_result deepCopy() { - return new getCclTimestrPage_result(this); + public getCclTimestr_result deepCopy() { + return new getCclTimestr_result(this); } @Override @@ -503468,7 +502505,7 @@ public java.util.Map> success) { + public getCclTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -503493,7 +502530,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -503518,7 +502555,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -503543,7 +502580,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -503568,7 +502605,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -503681,12 +502718,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimestrPage_result) - return this.equals((getCclTimestrPage_result)that); + if (that instanceof getCclTimestr_result) + return this.equals((getCclTimestr_result)that); return false; } - public boolean equals(getCclTimestrPage_result that) { + public boolean equals(getCclTimestr_result that) { if (that == null) return false; if (this == that) @@ -503768,7 +502805,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimestrPage_result other) { + public int compareTo(getCclTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -503845,7 +502882,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestr_result("); boolean first = true; sb.append("success:"); @@ -503912,17 +502949,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrPage_resultStandardScheme getScheme() { - return new getCclTimestrPage_resultStandardScheme(); + public getCclTimestr_resultStandardScheme getScheme() { + return new getCclTimestr_resultStandardScheme(); } } - private static class getCclTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -503935,28 +502972,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5546 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5546.size); - long _key5547; - @org.apache.thrift.annotation.Nullable java.util.Map _val5548; - for (int _i5549 = 0; _i5549 < _map5546.size; ++_i5549) + org.apache.thrift.protocol.TMap _map5526 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5526.size); + long _key5527; + @org.apache.thrift.annotation.Nullable java.util.Map _val5528; + for (int _i5529 = 0; _i5529 < _map5526.size; ++_i5529) { - _key5547 = iprot.readI64(); + _key5527 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5550 = iprot.readMapBegin(); - _val5548 = new java.util.LinkedHashMap(2*_map5550.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5551; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5552; - for (int _i5553 = 0; _i5553 < _map5550.size; ++_i5553) + org.apache.thrift.protocol.TMap _map5530 = iprot.readMapBegin(); + _val5528 = new java.util.LinkedHashMap(2*_map5530.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5531; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5532; + for (int _i5533 = 0; _i5533 < _map5530.size; ++_i5533) { - _key5551 = iprot.readString(); - _val5552 = new com.cinchapi.concourse.thrift.TObject(); - _val5552.read(iprot); - _val5548.put(_key5551, _val5552); + _key5531 = iprot.readString(); + _val5532 = new com.cinchapi.concourse.thrift.TObject(); + _val5532.read(iprot); + _val5528.put(_key5531, _val5532); } iprot.readMapEnd(); } - struct.success.put(_key5547, _val5548); + struct.success.put(_key5527, _val5528); } iprot.readMapEnd(); } @@ -504013,7 +503050,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -504021,15 +503058,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrPage_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5554 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5534 : struct.success.entrySet()) { - oprot.writeI64(_iter5554.getKey()); + oprot.writeI64(_iter5534.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5554.getValue().size())); - for (java.util.Map.Entry _iter5555 : _iter5554.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5534.getValue().size())); + for (java.util.Map.Entry _iter5535 : _iter5534.getValue().entrySet()) { - oprot.writeString(_iter5555.getKey()); - _iter5555.getValue().write(oprot); + oprot.writeString(_iter5535.getKey()); + _iter5535.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -504064,17 +503101,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrPage_ } - private static class getCclTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrPage_resultTupleScheme getScheme() { - return new getCclTimestrPage_resultTupleScheme(); + public getCclTimestr_resultTupleScheme getScheme() { + return new getCclTimestr_resultTupleScheme(); } } - private static class getCclTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -504096,15 +503133,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5556 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5536 : struct.success.entrySet()) { - oprot.writeI64(_iter5556.getKey()); + oprot.writeI64(_iter5536.getKey()); { - oprot.writeI32(_iter5556.getValue().size()); - for (java.util.Map.Entry _iter5557 : _iter5556.getValue().entrySet()) + oprot.writeI32(_iter5536.getValue().size()); + for (java.util.Map.Entry _iter5537 : _iter5536.getValue().entrySet()) { - oprot.writeString(_iter5557.getKey()); - _iter5557.getValue().write(oprot); + oprot.writeString(_iter5537.getKey()); + _iter5537.getValue().write(oprot); } } } @@ -504125,32 +503162,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5558 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5558.size); - long _key5559; - @org.apache.thrift.annotation.Nullable java.util.Map _val5560; - for (int _i5561 = 0; _i5561 < _map5558.size; ++_i5561) + org.apache.thrift.protocol.TMap _map5538 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5538.size); + long _key5539; + @org.apache.thrift.annotation.Nullable java.util.Map _val5540; + for (int _i5541 = 0; _i5541 < _map5538.size; ++_i5541) { - _key5559 = iprot.readI64(); + _key5539 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5562 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5560 = new java.util.LinkedHashMap(2*_map5562.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5563; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5564; - for (int _i5565 = 0; _i5565 < _map5562.size; ++_i5565) + org.apache.thrift.protocol.TMap _map5542 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5540 = new java.util.LinkedHashMap(2*_map5542.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5543; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5544; + for (int _i5545 = 0; _i5545 < _map5542.size; ++_i5545) { - _key5563 = iprot.readString(); - _val5564 = new com.cinchapi.concourse.thrift.TObject(); - _val5564.read(iprot); - _val5560.put(_key5563, _val5564); + _key5543 = iprot.readString(); + _val5544 = new com.cinchapi.concourse.thrift.TObject(); + _val5544.read(iprot); + _val5540.put(_key5543, _val5544); } } - struct.success.put(_key5559, _val5560); + struct.success.put(_key5539, _val5540); } } struct.setSuccessIsSet(true); @@ -504183,22 +503220,22 @@ private static S scheme(org.apache. } } - public static class getCclTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrOrder_args"); + public static class getCclTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrPage_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -504207,7 +503244,7 @@ public static class getCclTimestrOrder_args implements org.apache.thrift.TBaseother. */ - public getCclTimestrOrder_args(getCclTimestrOrder_args other) { + public getCclTimestrPage_args(getCclTimestrPage_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -504345,15 +503382,15 @@ public getCclTimestrOrder_args(getCclTimestrOrder_args other) { } @Override - public getCclTimestrOrder_args deepCopy() { - return new getCclTimestrOrder_args(this); + public getCclTimestrPage_args deepCopy() { + return new getCclTimestrPage_args(this); } @Override public void clear() { this.ccl = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -504364,7 +503401,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclTimestrOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclTimestrPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -504389,7 +503426,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getCclTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getCclTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -504410,27 +503447,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getCclTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getCclTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -504439,7 +503476,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -504464,7 +503501,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -504489,7 +503526,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -504528,11 +503565,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -504573,8 +503610,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -504601,8 +503638,8 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -504615,12 +503652,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimestrOrder_args) - return this.equals((getCclTimestrOrder_args)that); + if (that instanceof getCclTimestrPage_args) + return this.equals((getCclTimestrPage_args)that); return false; } - public boolean equals(getCclTimestrOrder_args that) { + public boolean equals(getCclTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -504644,12 +503681,12 @@ public boolean equals(getCclTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -504695,9 +503732,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -504715,7 +503752,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimestrOrder_args other) { + public int compareTo(getCclTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -504742,12 +503779,12 @@ public int compareTo(getCclTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -504803,7 +503840,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrPage_args("); boolean first = true; sb.append("ccl:"); @@ -504822,11 +503859,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -504860,8 +503897,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -504887,17 +503924,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrOrder_argsStandardScheme getScheme() { - return new getCclTimestrOrder_argsStandardScheme(); + public getCclTimestrPage_argsStandardScheme getScheme() { + return new getCclTimestrPage_argsStandardScheme(); } } - private static class getCclTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -504923,11 +503960,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrder_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -504970,7 +504007,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -504984,9 +504021,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -505010,17 +504047,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder } - private static class getCclTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrOrder_argsTupleScheme getScheme() { - return new getCclTimestrOrder_argsTupleScheme(); + public getCclTimestrPage_argsTupleScheme getScheme() { + return new getCclTimestrPage_argsTupleScheme(); } } - private static class getCclTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -505029,7 +504066,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_ if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -505048,8 +504085,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_ if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -505063,7 +504100,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -505075,9 +504112,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_a struct.setTimestampIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -505101,8 +504138,8 @@ private static S scheme(org.apache. } } - public static class getCclTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrOrder_result"); + public static class getCclTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -505110,8 +504147,8 @@ public static class getCclTimestrOrder_result implements org.apache.thrift.TBase private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -505212,13 +504249,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrPage_result.class, metaDataMap); } - public getCclTimestrOrder_result() { + public getCclTimestrPage_result() { } - public getCclTimestrOrder_result( + public getCclTimestrPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -505236,7 +504273,7 @@ public getCclTimestrOrder_result( /** * Performs a deep copy on other. */ - public getCclTimestrOrder_result(getCclTimestrOrder_result other) { + public getCclTimestrPage_result(getCclTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -505278,8 +504315,8 @@ public getCclTimestrOrder_result(getCclTimestrOrder_result other) { } @Override - public getCclTimestrOrder_result deepCopy() { - return new getCclTimestrOrder_result(this); + public getCclTimestrPage_result deepCopy() { + return new getCclTimestrPage_result(this); } @Override @@ -505307,7 +504344,7 @@ public java.util.Map> success) { + public getCclTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -505332,7 +504369,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -505357,7 +504394,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -505382,7 +504419,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -505407,7 +504444,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -505520,12 +504557,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimestrOrder_result) - return this.equals((getCclTimestrOrder_result)that); + if (that instanceof getCclTimestrPage_result) + return this.equals((getCclTimestrPage_result)that); return false; } - public boolean equals(getCclTimestrOrder_result that) { + public boolean equals(getCclTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -505607,7 +504644,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimestrOrder_result other) { + public int compareTo(getCclTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -505684,7 +504721,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -505751,17 +504788,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrOrder_resultStandardScheme getScheme() { - return new getCclTimestrOrder_resultStandardScheme(); + public getCclTimestrPage_resultStandardScheme getScheme() { + return new getCclTimestrPage_resultStandardScheme(); } } - private static class getCclTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -505774,28 +504811,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrder_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5566 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5566.size); - long _key5567; - @org.apache.thrift.annotation.Nullable java.util.Map _val5568; - for (int _i5569 = 0; _i5569 < _map5566.size; ++_i5569) + org.apache.thrift.protocol.TMap _map5546 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5546.size); + long _key5547; + @org.apache.thrift.annotation.Nullable java.util.Map _val5548; + for (int _i5549 = 0; _i5549 < _map5546.size; ++_i5549) { - _key5567 = iprot.readI64(); + _key5547 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5570 = iprot.readMapBegin(); - _val5568 = new java.util.LinkedHashMap(2*_map5570.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5571; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5572; - for (int _i5573 = 0; _i5573 < _map5570.size; ++_i5573) + org.apache.thrift.protocol.TMap _map5550 = iprot.readMapBegin(); + _val5548 = new java.util.LinkedHashMap(2*_map5550.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5551; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5552; + for (int _i5553 = 0; _i5553 < _map5550.size; ++_i5553) { - _key5571 = iprot.readString(); - _val5572 = new com.cinchapi.concourse.thrift.TObject(); - _val5572.read(iprot); - _val5568.put(_key5571, _val5572); + _key5551 = iprot.readString(); + _val5552 = new com.cinchapi.concourse.thrift.TObject(); + _val5552.read(iprot); + _val5548.put(_key5551, _val5552); } iprot.readMapEnd(); } - struct.success.put(_key5567, _val5568); + struct.success.put(_key5547, _val5548); } iprot.readMapEnd(); } @@ -505852,7 +504889,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -505860,15 +504897,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5574 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5554 : struct.success.entrySet()) { - oprot.writeI64(_iter5574.getKey()); + oprot.writeI64(_iter5554.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5574.getValue().size())); - for (java.util.Map.Entry _iter5575 : _iter5574.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5554.getValue().size())); + for (java.util.Map.Entry _iter5555 : _iter5554.getValue().entrySet()) { - oprot.writeString(_iter5575.getKey()); - _iter5575.getValue().write(oprot); + oprot.writeString(_iter5555.getKey()); + _iter5555.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -505903,17 +504940,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder } - private static class getCclTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrOrder_resultTupleScheme getScheme() { - return new getCclTimestrOrder_resultTupleScheme(); + public getCclTimestrPage_resultTupleScheme getScheme() { + return new getCclTimestrPage_resultTupleScheme(); } } - private static class getCclTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -505935,15 +504972,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5576 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5556 : struct.success.entrySet()) { - oprot.writeI64(_iter5576.getKey()); + oprot.writeI64(_iter5556.getKey()); { - oprot.writeI32(_iter5576.getValue().size()); - for (java.util.Map.Entry _iter5577 : _iter5576.getValue().entrySet()) + oprot.writeI32(_iter5556.getValue().size()); + for (java.util.Map.Entry _iter5557 : _iter5556.getValue().entrySet()) { - oprot.writeString(_iter5577.getKey()); - _iter5577.getValue().write(oprot); + oprot.writeString(_iter5557.getKey()); + _iter5557.getValue().write(oprot); } } } @@ -505964,32 +505001,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5578 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5578.size); - long _key5579; - @org.apache.thrift.annotation.Nullable java.util.Map _val5580; - for (int _i5581 = 0; _i5581 < _map5578.size; ++_i5581) + org.apache.thrift.protocol.TMap _map5558 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5558.size); + long _key5559; + @org.apache.thrift.annotation.Nullable java.util.Map _val5560; + for (int _i5561 = 0; _i5561 < _map5558.size; ++_i5561) { - _key5579 = iprot.readI64(); + _key5559 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5582 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5580 = new java.util.LinkedHashMap(2*_map5582.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5583; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5584; - for (int _i5585 = 0; _i5585 < _map5582.size; ++_i5585) + org.apache.thrift.protocol.TMap _map5562 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5560 = new java.util.LinkedHashMap(2*_map5562.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5563; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5564; + for (int _i5565 = 0; _i5565 < _map5562.size; ++_i5565) { - _key5583 = iprot.readString(); - _val5584 = new com.cinchapi.concourse.thrift.TObject(); - _val5584.read(iprot); - _val5580.put(_key5583, _val5584); + _key5563 = iprot.readString(); + _val5564 = new com.cinchapi.concourse.thrift.TObject(); + _val5564.read(iprot); + _val5560.put(_key5563, _val5564); } } - struct.success.put(_key5579, _val5580); + struct.success.put(_key5559, _val5560); } } struct.setSuccessIsSet(true); @@ -506022,24 +505059,22 @@ private static S scheme(org.apache. } } - public static class getCclTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrOrderPage_args"); + public static class getCclTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrOrder_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -506049,10 +505084,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CCL((short)1, "ccl"), TIMESTAMP((short)2, "timestamp"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -506074,13 +505108,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -506134,8 +505166,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -506143,17 +505173,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrOrder_args.class, metaDataMap); } - public getCclTimestrOrderPage_args() { + public getCclTimestrOrder_args() { } - public getCclTimestrOrderPage_args( + public getCclTimestrOrder_args( java.lang.String ccl, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -506162,7 +505191,6 @@ public getCclTimestrOrderPage_args( this.ccl = ccl; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -506171,7 +505199,7 @@ public getCclTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public getCclTimestrOrderPage_args(getCclTimestrOrderPage_args other) { + public getCclTimestrOrder_args(getCclTimestrOrder_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } @@ -506181,9 +505209,6 @@ public getCclTimestrOrderPage_args(getCclTimestrOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -506196,8 +505221,8 @@ public getCclTimestrOrderPage_args(getCclTimestrOrderPage_args other) { } @Override - public getCclTimestrOrderPage_args deepCopy() { - return new getCclTimestrOrderPage_args(this); + public getCclTimestrOrder_args deepCopy() { + return new getCclTimestrOrder_args(this); } @Override @@ -506205,7 +505230,6 @@ public void clear() { this.ccl = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -506216,7 +505240,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getCclTimestrOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getCclTimestrOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -506241,7 +505265,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getCclTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getCclTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -506266,7 +505290,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getCclTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getCclTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -506286,37 +505310,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getCclTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getCclTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -506341,7 +505340,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getCclTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -506366,7 +505365,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getCclTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -506413,14 +505412,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -506461,9 +505452,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -506491,8 +505479,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -506505,12 +505491,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimestrOrderPage_args) - return this.equals((getCclTimestrOrderPage_args)that); + if (that instanceof getCclTimestrOrder_args) + return this.equals((getCclTimestrOrder_args)that); return false; } - public boolean equals(getCclTimestrOrderPage_args that) { + public boolean equals(getCclTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -506543,15 +505529,6 @@ public boolean equals(getCclTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -506598,10 +505575,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -506618,7 +505591,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimestrOrderPage_args other) { + public int compareTo(getCclTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -506655,16 +505628,6 @@ public int compareTo(getCclTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -506716,7 +505679,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrOrder_args("); boolean first = true; sb.append("ccl:"); @@ -506743,14 +505706,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -506784,9 +505739,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -506811,17 +505763,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrOrderPage_argsStandardScheme getScheme() { - return new getCclTimestrOrderPage_argsStandardScheme(); + public getCclTimestrOrder_argsStandardScheme getScheme() { + return new getCclTimestrOrder_argsStandardScheme(); } } - private static class getCclTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -506856,16 +505808,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -506874,7 +505817,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -506883,7 +505826,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -506903,7 +505846,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -506922,11 +505865,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -506948,17 +505886,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder } - private static class getCclTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrOrderPage_argsTupleScheme getScheme() { - return new getCclTimestrOrderPage_argsTupleScheme(); + public getCclTimestrOrder_argsTupleScheme getScheme() { + return new getCclTimestrOrder_argsTupleScheme(); } } - private static class getCclTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -506970,19 +505908,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderP if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } @@ -506992,9 +505927,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderP if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -507007,9 +505939,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); @@ -507024,21 +505956,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPa struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -507050,8 +505977,8 @@ private static S scheme(org.apache. } } - public static class getCclTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrOrderPage_result"); + public static class getCclTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -507059,8 +505986,8 @@ public static class getCclTimestrOrderPage_result implements org.apache.thrift.T private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -507161,13 +506088,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrOrder_result.class, metaDataMap); } - public getCclTimestrOrderPage_result() { + public getCclTimestrOrder_result() { } - public getCclTimestrOrderPage_result( + public getCclTimestrOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -507185,7 +506112,7 @@ public getCclTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public getCclTimestrOrderPage_result(getCclTimestrOrderPage_result other) { + public getCclTimestrOrder_result(getCclTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -507227,8 +506154,8 @@ public getCclTimestrOrderPage_result(getCclTimestrOrderPage_result other) { } @Override - public getCclTimestrOrderPage_result deepCopy() { - return new getCclTimestrOrderPage_result(this); + public getCclTimestrOrder_result deepCopy() { + return new getCclTimestrOrder_result(this); } @Override @@ -507256,7 +506183,7 @@ public java.util.Map> success) { + public getCclTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -507281,7 +506208,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getCclTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -507306,7 +506233,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getCclTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -507331,7 +506258,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getCclTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -507356,7 +506283,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getCclTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -507469,12 +506396,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getCclTimestrOrderPage_result) - return this.equals((getCclTimestrOrderPage_result)that); + if (that instanceof getCclTimestrOrder_result) + return this.equals((getCclTimestrOrder_result)that); return false; } - public boolean equals(getCclTimestrOrderPage_result that) { + public boolean equals(getCclTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -507556,7 +506483,7 @@ public int hashCode() { } @Override - public int compareTo(getCclTimestrOrderPage_result other) { + public int compareTo(getCclTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -507633,7 +506560,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -507700,17 +506627,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getCclTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrOrderPage_resultStandardScheme getScheme() { - return new getCclTimestrOrderPage_resultStandardScheme(); + public getCclTimestrOrder_resultStandardScheme getScheme() { + return new getCclTimestrOrder_resultStandardScheme(); } } - private static class getCclTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -507723,28 +506650,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderP case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5586 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5586.size); - long _key5587; - @org.apache.thrift.annotation.Nullable java.util.Map _val5588; - for (int _i5589 = 0; _i5589 < _map5586.size; ++_i5589) + org.apache.thrift.protocol.TMap _map5566 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5566.size); + long _key5567; + @org.apache.thrift.annotation.Nullable java.util.Map _val5568; + for (int _i5569 = 0; _i5569 < _map5566.size; ++_i5569) { - _key5587 = iprot.readI64(); + _key5567 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5590 = iprot.readMapBegin(); - _val5588 = new java.util.LinkedHashMap(2*_map5590.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5591; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5592; - for (int _i5593 = 0; _i5593 < _map5590.size; ++_i5593) + org.apache.thrift.protocol.TMap _map5570 = iprot.readMapBegin(); + _val5568 = new java.util.LinkedHashMap(2*_map5570.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5571; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5572; + for (int _i5573 = 0; _i5573 < _map5570.size; ++_i5573) { - _key5591 = iprot.readString(); - _val5592 = new com.cinchapi.concourse.thrift.TObject(); - _val5592.read(iprot); - _val5588.put(_key5591, _val5592); + _key5571 = iprot.readString(); + _val5572 = new com.cinchapi.concourse.thrift.TObject(); + _val5572.read(iprot); + _val5568.put(_key5571, _val5572); } iprot.readMapEnd(); } - struct.success.put(_key5587, _val5588); + struct.success.put(_key5567, _val5568); } iprot.readMapEnd(); } @@ -507801,7 +506728,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -507809,15 +506736,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5594 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5574 : struct.success.entrySet()) { - oprot.writeI64(_iter5594.getKey()); + oprot.writeI64(_iter5574.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5594.getValue().size())); - for (java.util.Map.Entry _iter5595 : _iter5594.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5574.getValue().size())); + for (java.util.Map.Entry _iter5575 : _iter5574.getValue().entrySet()) { - oprot.writeString(_iter5595.getKey()); - _iter5595.getValue().write(oprot); + oprot.writeString(_iter5575.getKey()); + _iter5575.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -507852,17 +506779,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrder } - private static class getCclTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getCclTimestrOrderPage_resultTupleScheme getScheme() { - return new getCclTimestrOrderPage_resultTupleScheme(); + public getCclTimestrOrder_resultTupleScheme getScheme() { + return new getCclTimestrOrder_resultTupleScheme(); } } - private static class getCclTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -507884,15 +506811,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderP if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5596 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5576 : struct.success.entrySet()) { - oprot.writeI64(_iter5596.getKey()); + oprot.writeI64(_iter5576.getKey()); { - oprot.writeI32(_iter5596.getValue().size()); - for (java.util.Map.Entry _iter5597 : _iter5596.getValue().entrySet()) + oprot.writeI32(_iter5576.getValue().size()); + for (java.util.Map.Entry _iter5577 : _iter5576.getValue().entrySet()) { - oprot.writeString(_iter5597.getKey()); - _iter5597.getValue().write(oprot); + oprot.writeString(_iter5577.getKey()); + _iter5577.getValue().write(oprot); } } } @@ -507913,32 +506840,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5598 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5598.size); - long _key5599; - @org.apache.thrift.annotation.Nullable java.util.Map _val5600; - for (int _i5601 = 0; _i5601 < _map5598.size; ++_i5601) + org.apache.thrift.protocol.TMap _map5578 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5578.size); + long _key5579; + @org.apache.thrift.annotation.Nullable java.util.Map _val5580; + for (int _i5581 = 0; _i5581 < _map5578.size; ++_i5581) { - _key5599 = iprot.readI64(); + _key5579 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5602 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5600 = new java.util.LinkedHashMap(2*_map5602.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5603; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5604; - for (int _i5605 = 0; _i5605 < _map5602.size; ++_i5605) + org.apache.thrift.protocol.TMap _map5582 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5580 = new java.util.LinkedHashMap(2*_map5582.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5583; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5584; + for (int _i5585 = 0; _i5585 < _map5582.size; ++_i5585) { - _key5603 = iprot.readString(); - _val5604 = new com.cinchapi.concourse.thrift.TObject(); - _val5604.read(iprot); - _val5600.put(_key5603, _val5604); + _key5583 = iprot.readString(); + _val5584 = new com.cinchapi.concourse.thrift.TObject(); + _val5584.read(iprot); + _val5580.put(_key5583, _val5584); } } - struct.success.put(_key5599, _val5600); + struct.success.put(_key5579, _val5580); } } struct.setSuccessIsSet(true); @@ -507971,31 +506898,37 @@ private static S scheme(org.apache. } } - public static class getKeyCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCcl_args"); + public static class getCclTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCcl_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCcl_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getCclTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getCclTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - CCL((short)2, "ccl"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + CCL((short)1, "ccl"), + TIMESTAMP((short)2, "timestamp"), + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -508011,15 +506944,19 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // CCL + case 1: // CCL return CCL; - case 3: // CREDS + case 2: // TIMESTAMP + return TIMESTAMP; + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -508067,10 +507004,14 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -508078,22 +507019,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCcl_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrOrderPage_args.class, metaDataMap); } - public getKeyCcl_args() { + public getCclTimestrOrderPage_args() { } - public getKeyCcl_args( - java.lang.String key, + public getCclTimestrOrderPage_args( java.lang.String ccl, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; this.ccl = ccl; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -508102,13 +507047,19 @@ public getKeyCcl_args( /** * Performs a deep copy on other. */ - public getKeyCcl_args(getKeyCcl_args other) { - if (other.isSetKey()) { - this.key = other.key; - } + public getCclTimestrOrderPage_args(getCclTimestrOrderPage_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -508121,66 +507072,118 @@ public getKeyCcl_args(getKeyCcl_args other) { } @Override - public getKeyCcl_args deepCopy() { - return new getKeyCcl_args(this); + public getCclTimestrOrderPage_args deepCopy() { + return new getCclTimestrOrderPage_args(this); } @Override public void clear() { - this.key = null; this.ccl = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.lang.String getCcl() { + return this.ccl; } - public getKeyCcl_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public getCclTimestrOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetKey() { - this.key = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setKeyIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.key = null; + this.ccl = null; } } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public java.lang.String getTimestamp() { + return this.timestamp; } - public getKeyCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public getCclTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setCclIsSet(boolean value) { + public void setTimestampIsSet(boolean value) { if (!value) { - this.ccl = null; + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getCclTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getCclTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -508189,7 +507192,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getCclTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -508214,7 +507217,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getCclTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -508239,7 +507242,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getCclTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -508262,19 +507265,35 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case CCL: if (value == null) { - unsetKey(); + unsetCcl(); } else { - setKey((java.lang.String)value); + setCcl((java.lang.String)value); } break; - case CCL: + case TIMESTAMP: if (value == null) { - unsetCcl(); + unsetTimestamp(); } else { - setCcl((java.lang.String)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -508309,12 +507328,18 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); - case CCL: return getCcl(); + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -508336,10 +507361,14 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); case CCL: return isSetCcl(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -508352,26 +507381,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCcl_args) - return this.equals((getKeyCcl_args)that); + if (that instanceof getCclTimestrOrderPage_args) + return this.equals((getCclTimestrOrderPage_args)that); return false; } - public boolean equals(getKeyCcl_args that) { + public boolean equals(getCclTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) - return false; - if (!this.key.equals(that.key)) - return false; - } - boolean this_present_ccl = true && this.isSetCcl(); boolean that_present_ccl = true && that.isSetCcl(); if (this_present_ccl || that_present_ccl) { @@ -508381,6 +507401,33 @@ public boolean equals(getKeyCcl_args that) { return false; } + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -508415,14 +507462,22 @@ public boolean equals(getKeyCcl_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -508439,29 +507494,49 @@ public int hashCode() { } @Override - public int compareTo(getKeyCcl_args other) { + public int compareTo(getCclTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -508517,22 +507592,38 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCcl_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrOrderPage_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("timestamp:"); + if (this.timestamp == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -508566,6 +507657,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -508590,17 +507687,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCcl_argsStandardScheme getScheme() { - return new getKeyCcl_argsStandardScheme(); + public getCclTimestrOrderPage_argsStandardScheme getScheme() { + return new getCclTimestrOrderPage_argsStandardScheme(); } } - private static class getKeyCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -508610,23 +507707,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_args stru break; } switch (schemeField.id) { - case 1: // KEY + case 1: // CCL if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CCL + case 2: // TIMESTAMP if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -508635,7 +507750,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -508644,7 +507759,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_args stru org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -508664,20 +507779,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_args stru } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); - oprot.writeFieldEnd(); - } if (struct.ccl != null) { oprot.writeFieldBegin(CCL_FIELD_DESC); oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -508699,41 +507824,53 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCcl_args str } - private static class getKeyCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCcl_argsTupleScheme getScheme() { - return new getKeyCcl_argsTupleScheme(); + public getCclTimestrOrderPage_argsTupleScheme getScheme() { + return new getCclTimestrOrderPage_argsTupleScheme(); } } - private static class getKeyCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetCcl()) { optionals.set(0); } - if (struct.isSetCcl()) { + if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); } + oprot.writeBitSet(optionals, 7); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -508746,28 +507883,38 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_args stru } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } - if (incoming.get(1)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); } + if (incoming.get(1)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -508779,8 +507926,8 @@ private static S scheme(org.apache. } } - public static class getKeyCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCcl_result"); + public static class getCclTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getCclTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -508788,10 +507935,10 @@ public static class getKeyCcl_result implements org.apache.thrift.TBase success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required @@ -508878,7 +508025,9 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -508888,14 +508037,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCcl_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getCclTimestrOrderPage_result.class, metaDataMap); } - public getKeyCcl_result() { + public getCclTimestrOrderPage_result() { } - public getKeyCcl_result( - java.util.Map success, + public getCclTimestrOrderPage_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.ParseException ex3, @@ -508912,17 +508061,28 @@ public getKeyCcl_result( /** * Performs a deep copy on other. */ - public getKeyCcl_result(getKeyCcl_result other) { + public getCclTimestrOrderPage_result(getCclTimestrOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); - for (java.util.Map.Entry other_element : other.success.entrySet()) { + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { java.lang.Long other_element_key = other_element.getKey(); - com.cinchapi.concourse.thrift.TObject other_element_value = other_element.getValue(); + java.util.Map other_element_value = other_element.getValue(); java.lang.Long __this__success_copy_key = other_element_key; - com.cinchapi.concourse.thrift.TObject __this__success_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value); + java.util.Map __this__success_copy_value = new java.util.LinkedHashMap(other_element_value.size()); + for (java.util.Map.Entry other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + com.cinchapi.concourse.thrift.TObject other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -508943,8 +508103,8 @@ public getKeyCcl_result(getKeyCcl_result other) { } @Override - public getKeyCcl_result deepCopy() { - return new getKeyCcl_result(this); + public getCclTimestrOrderPage_result deepCopy() { + return new getCclTimestrOrderPage_result(this); } @Override @@ -508960,19 +508120,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, com.cinchapi.concourse.thrift.TObject val) { + public void putToSuccess(long key, java.util.Map val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap(); + this.success = new java.util.LinkedHashMap>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public getKeyCcl_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getCclTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -508997,7 +508157,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getCclTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -509022,7 +508182,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getCclTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -509047,7 +508207,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getCclTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -509072,7 +508232,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getCclTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -509099,7 +508259,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map)value); + setSuccess((java.util.Map>)value); } break; @@ -509185,12 +508345,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCcl_result) - return this.equals((getKeyCcl_result)that); + if (that instanceof getCclTimestrOrderPage_result) + return this.equals((getCclTimestrOrderPage_result)that); return false; } - public boolean equals(getKeyCcl_result that) { + public boolean equals(getCclTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -509272,7 +508432,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCcl_result other) { + public int compareTo(getCclTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -509349,7 +508509,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCcl_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getCclTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -509416,17 +508576,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCcl_resultStandardScheme getScheme() { - return new getKeyCcl_resultStandardScheme(); + public getCclTimestrOrderPage_resultStandardScheme getScheme() { + return new getCclTimestrOrderPage_resultStandardScheme(); } } - private static class getKeyCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getCclTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -509439,16 +508599,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_result st case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5606 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5606.size); - long _key5607; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5608; - for (int _i5609 = 0; _i5609 < _map5606.size; ++_i5609) + org.apache.thrift.protocol.TMap _map5586 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5586.size); + long _key5587; + @org.apache.thrift.annotation.Nullable java.util.Map _val5588; + for (int _i5589 = 0; _i5589 < _map5586.size; ++_i5589) { - _key5607 = iprot.readI64(); - _val5608 = new com.cinchapi.concourse.thrift.TObject(); - _val5608.read(iprot); - struct.success.put(_key5607, _val5608); + _key5587 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map5590 = iprot.readMapBegin(); + _val5588 = new java.util.LinkedHashMap(2*_map5590.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5591; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5592; + for (int _i5593 = 0; _i5593 < _map5590.size; ++_i5593) + { + _key5591 = iprot.readString(); + _val5592 = new com.cinchapi.concourse.thrift.TObject(); + _val5592.read(iprot); + _val5588.put(_key5591, _val5592); + } + iprot.readMapEnd(); + } + struct.success.put(_key5587, _val5588); } iprot.readMapEnd(); } @@ -509505,18 +508677,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_result st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5610 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry> _iter5594 : struct.success.entrySet()) { - oprot.writeI64(_iter5610.getKey()); - _iter5610.getValue().write(oprot); + oprot.writeI64(_iter5594.getKey()); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5594.getValue().size())); + for (java.util.Map.Entry _iter5595 : _iter5594.getValue().entrySet()) + { + oprot.writeString(_iter5595.getKey()); + _iter5595.getValue().write(oprot); + } + oprot.writeMapEnd(); + } } oprot.writeMapEnd(); } @@ -509548,17 +508728,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCcl_result s } - private static class getKeyCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getCclTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCcl_resultTupleScheme getScheme() { - return new getKeyCcl_resultTupleScheme(); + public getCclTimestrOrderPage_resultTupleScheme getScheme() { + return new getCclTimestrOrderPage_resultTupleScheme(); } } - private static class getKeyCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getCclTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -509580,10 +508760,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_result st if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5611 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5596 : struct.success.entrySet()) { - oprot.writeI64(_iter5611.getKey()); - _iter5611.getValue().write(oprot); + oprot.writeI64(_iter5596.getKey()); + { + oprot.writeI32(_iter5596.getValue().size()); + for (java.util.Map.Entry _iter5597 : _iter5596.getValue().entrySet()) + { + oprot.writeString(_iter5597.getKey()); + _iter5597.getValue().write(oprot); + } + } } } } @@ -509602,21 +508789,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_result st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5612 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5612.size); - long _key5613; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5614; - for (int _i5615 = 0; _i5615 < _map5612.size; ++_i5615) + org.apache.thrift.protocol.TMap _map5598 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5598.size); + long _key5599; + @org.apache.thrift.annotation.Nullable java.util.Map _val5600; + for (int _i5601 = 0; _i5601 < _map5598.size; ++_i5601) { - _key5613 = iprot.readI64(); - _val5614 = new com.cinchapi.concourse.thrift.TObject(); - _val5614.read(iprot); - struct.success.put(_key5613, _val5614); + _key5599 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map5602 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5600 = new java.util.LinkedHashMap(2*_map5602.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5603; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5604; + for (int _i5605 = 0; _i5605 < _map5602.size; ++_i5605) + { + _key5603 = iprot.readString(); + _val5604 = new com.cinchapi.concourse.thrift.TObject(); + _val5604.read(iprot); + _val5600.put(_key5603, _val5604); + } + } + struct.success.put(_key5599, _val5600); } } struct.setSuccessIsSet(true); @@ -509649,22 +508847,20 @@ private static S scheme(org.apache. } } - public static class getKeyCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclPage_args"); + public static class getKeyCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCcl_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCcl_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCcl_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -509673,10 +508869,9 @@ public static class getKeyCclPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -509696,13 +508891,11 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // CCL return CCL; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -509754,8 +508947,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -509763,16 +508954,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCcl_args.class, metaDataMap); } - public getKeyCclPage_args() { + public getKeyCcl_args() { } - public getKeyCclPage_args( + public getKeyCcl_args( java.lang.String key, java.lang.String ccl, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -509780,7 +508970,6 @@ public getKeyCclPage_args( this(); this.key = key; this.ccl = ccl; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -509789,16 +508978,13 @@ public getKeyCclPage_args( /** * Performs a deep copy on other. */ - public getKeyCclPage_args(getKeyCclPage_args other) { + public getKeyCcl_args(getKeyCcl_args other) { if (other.isSetKey()) { this.key = other.key; } if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -509811,15 +508997,14 @@ public getKeyCclPage_args(getKeyCclPage_args other) { } @Override - public getKeyCclPage_args deepCopy() { - return new getKeyCclPage_args(this); + public getKeyCcl_args deepCopy() { + return new getKeyCcl_args(this); } @Override public void clear() { this.key = null; this.ccl = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -509830,7 +509015,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCcl_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -509855,7 +509040,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -509875,37 +509060,12 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -509930,7 +509090,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -509955,7 +509115,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -509994,14 +509154,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -510039,9 +509191,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -510067,8 +509216,6 @@ public boolean isSet(_Fields field) { return isSetKey(); case CCL: return isSetCcl(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -510081,12 +509228,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclPage_args) - return this.equals((getKeyCclPage_args)that); + if (that instanceof getKeyCcl_args) + return this.equals((getKeyCcl_args)that); return false; } - public boolean equals(getKeyCclPage_args that) { + public boolean equals(getKeyCcl_args that) { if (that == null) return false; if (this == that) @@ -510110,15 +509257,6 @@ public boolean equals(getKeyCclPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -510161,10 +509299,6 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -510181,7 +509315,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclPage_args other) { + public int compareTo(getKeyCcl_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -510208,16 +509342,6 @@ public int compareTo(getKeyCclPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -510269,7 +509393,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCcl_args("); boolean first = true; sb.append("key:"); @@ -510288,14 +509412,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -510326,9 +509442,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -510353,17 +509466,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclPage_argsStandardScheme getScheme() { - return new getKeyCclPage_argsStandardScheme(); + public getKeyCcl_argsStandardScheme getScheme() { + return new getKeyCcl_argsStandardScheme(); } } - private static class getKeyCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -510389,16 +509502,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -510407,7 +509511,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -510416,7 +509520,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -510436,7 +509540,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCcl_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -510450,11 +509554,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclPage_args oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -510476,17 +509575,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclPage_args } - private static class getKeyCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclPage_argsTupleScheme getScheme() { - return new getKeyCclPage_argsTupleScheme(); + public getKeyCcl_argsTupleScheme getScheme() { + return new getKeyCcl_argsTupleScheme(); } } - private static class getKeyCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -510495,28 +509594,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_args if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -510529,9 +509622,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -510541,21 +509634,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_args s struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -510567,8 +509655,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclPage_result"); + public static class getKeyCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCcl_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -510576,8 +509664,8 @@ public static class getKeyCclPage_result implements org.apache.thrift.TBase success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -510676,13 +509764,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCcl_result.class, metaDataMap); } - public getKeyCclPage_result() { + public getKeyCcl_result() { } - public getKeyCclPage_result( + public getKeyCcl_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -510700,7 +509788,7 @@ public getKeyCclPage_result( /** * Performs a deep copy on other. */ - public getKeyCclPage_result(getKeyCclPage_result other) { + public getKeyCcl_result(getKeyCcl_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -510731,8 +509819,8 @@ public getKeyCclPage_result(getKeyCclPage_result other) { } @Override - public getKeyCclPage_result deepCopy() { - return new getKeyCclPage_result(this); + public getKeyCcl_result deepCopy() { + return new getKeyCcl_result(this); } @Override @@ -510760,7 +509848,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCcl_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -510785,7 +509873,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -510810,7 +509898,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -510835,7 +509923,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -510860,7 +509948,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -510973,12 +510061,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclPage_result) - return this.equals((getKeyCclPage_result)that); + if (that instanceof getKeyCcl_result) + return this.equals((getKeyCcl_result)that); return false; } - public boolean equals(getKeyCclPage_result that) { + public boolean equals(getKeyCcl_result that) { if (that == null) return false; if (this == that) @@ -511060,7 +510148,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclPage_result other) { + public int compareTo(getKeyCcl_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -511137,7 +510225,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCcl_result("); boolean first = true; sb.append("success:"); @@ -511204,17 +510292,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclPage_resultStandardScheme getScheme() { - return new getKeyCclPage_resultStandardScheme(); + public getKeyCcl_resultStandardScheme getScheme() { + return new getKeyCcl_resultStandardScheme(); } } - private static class getKeyCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -511227,16 +510315,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5616 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5616.size); - long _key5617; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5618; - for (int _i5619 = 0; _i5619 < _map5616.size; ++_i5619) + org.apache.thrift.protocol.TMap _map5606 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5606.size); + long _key5607; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5608; + for (int _i5609 = 0; _i5609 < _map5606.size; ++_i5609) { - _key5617 = iprot.readI64(); - _val5618 = new com.cinchapi.concourse.thrift.TObject(); - _val5618.read(iprot); - struct.success.put(_key5617, _val5618); + _key5607 = iprot.readI64(); + _val5608 = new com.cinchapi.concourse.thrift.TObject(); + _val5608.read(iprot); + struct.success.put(_key5607, _val5608); } iprot.readMapEnd(); } @@ -511293,7 +510381,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCcl_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -511301,10 +510389,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclPage_resu oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5620 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5610 : struct.success.entrySet()) { - oprot.writeI64(_iter5620.getKey()); - _iter5620.getValue().write(oprot); + oprot.writeI64(_iter5610.getKey()); + _iter5610.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -511336,17 +510424,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclPage_resu } - private static class getKeyCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclPage_resultTupleScheme getScheme() { - return new getKeyCclPage_resultTupleScheme(); + public getKeyCcl_resultTupleScheme getScheme() { + return new getKeyCcl_resultTupleScheme(); } } - private static class getKeyCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -511368,10 +510456,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5621 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5611 : struct.success.entrySet()) { - oprot.writeI64(_iter5621.getKey()); - _iter5621.getValue().write(oprot); + oprot.writeI64(_iter5611.getKey()); + _iter5611.getValue().write(oprot); } } } @@ -511390,21 +510478,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5622 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5622.size); - long _key5623; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5624; - for (int _i5625 = 0; _i5625 < _map5622.size; ++_i5625) + org.apache.thrift.protocol.TMap _map5612 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5612.size); + long _key5613; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5614; + for (int _i5615 = 0; _i5615 < _map5612.size; ++_i5615) { - _key5623 = iprot.readI64(); - _val5624 = new com.cinchapi.concourse.thrift.TObject(); - _val5624.read(iprot); - struct.success.put(_key5623, _val5624); + _key5613 = iprot.readI64(); + _val5614 = new com.cinchapi.concourse.thrift.TObject(); + _val5614.read(iprot); + struct.success.put(_key5613, _val5614); } } struct.setSuccessIsSet(true); @@ -511437,22 +510525,22 @@ private static S scheme(org.apache. } } - public static class getKeyCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclOrder_args"); + public static class getKeyCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -511461,7 +510549,7 @@ public static class getKeyCclOrder_args implements org.apache.thrift.TBaseother. */ - public getKeyCclOrder_args(getKeyCclOrder_args other) { + public getKeyCclPage_args(getKeyCclPage_args other) { if (other.isSetKey()) { this.key = other.key; } if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -511599,15 +510687,15 @@ public getKeyCclOrder_args(getKeyCclOrder_args other) { } @Override - public getKeyCclOrder_args deepCopy() { - return new getKeyCclOrder_args(this); + public getKeyCclPage_args deepCopy() { + return new getKeyCclPage_args(this); } @Override public void clear() { this.key = null; this.ccl = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -511618,7 +510706,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -511643,7 +510731,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -511664,27 +510752,27 @@ public void setCclIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -511693,7 +510781,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -511718,7 +510806,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -511743,7 +510831,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -511782,11 +510870,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -511827,8 +510915,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -511855,8 +510943,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case CCL: return isSetCcl(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -511869,12 +510957,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclOrder_args) - return this.equals((getKeyCclOrder_args)that); + if (that instanceof getKeyCclPage_args) + return this.equals((getKeyCclPage_args)that); return false; } - public boolean equals(getKeyCclOrder_args that) { + public boolean equals(getKeyCclPage_args that) { if (that == null) return false; if (this == that) @@ -511898,12 +510986,12 @@ public boolean equals(getKeyCclOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -511949,9 +511037,9 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -511969,7 +511057,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclOrder_args other) { + public int compareTo(getKeyCclPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -511996,12 +511084,12 @@ public int compareTo(getKeyCclOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -512057,7 +511145,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclPage_args("); boolean first = true; sb.append("key:"); @@ -512076,11 +511164,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -512114,8 +511202,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -512141,17 +511229,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclOrder_argsStandardScheme getScheme() { - return new getKeyCclOrder_argsStandardScheme(); + public getKeyCclPage_argsStandardScheme getScheme() { + return new getKeyCclPage_argsStandardScheme(); } } - private static class getKeyCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -512177,11 +511265,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrder_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -512224,7 +511312,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrder_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -512238,9 +511326,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrder_arg oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -512264,17 +511352,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrder_arg } - private static class getKeyCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclOrder_argsTupleScheme getScheme() { - return new getKeyCclOrder_argsTupleScheme(); + public getKeyCclPage_argsTupleScheme getScheme() { + return new getKeyCclPage_argsTupleScheme(); } } - private static class getKeyCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -512283,7 +511371,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_args if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -512302,8 +511390,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_args if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -512317,7 +511405,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -512329,9 +511417,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_args struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -512355,8 +511443,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclOrder_result"); + public static class getKeyCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -512364,8 +511452,8 @@ public static class getKeyCclOrder_result implements org.apache.thrift.TBase success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -512464,13 +511552,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclPage_result.class, metaDataMap); } - public getKeyCclOrder_result() { + public getKeyCclPage_result() { } - public getKeyCclOrder_result( + public getKeyCclPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -512488,7 +511576,7 @@ public getKeyCclOrder_result( /** * Performs a deep copy on other. */ - public getKeyCclOrder_result(getKeyCclOrder_result other) { + public getKeyCclPage_result(getKeyCclPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -512519,8 +511607,8 @@ public getKeyCclOrder_result(getKeyCclOrder_result other) { } @Override - public getKeyCclOrder_result deepCopy() { - return new getKeyCclOrder_result(this); + public getKeyCclPage_result deepCopy() { + return new getKeyCclPage_result(this); } @Override @@ -512548,7 +511636,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -512573,7 +511661,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -512598,7 +511686,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -512623,7 +511711,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -512648,7 +511736,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -512761,12 +511849,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclOrder_result) - return this.equals((getKeyCclOrder_result)that); + if (that instanceof getKeyCclPage_result) + return this.equals((getKeyCclPage_result)that); return false; } - public boolean equals(getKeyCclOrder_result that) { + public boolean equals(getKeyCclPage_result that) { if (that == null) return false; if (this == that) @@ -512848,7 +511936,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclOrder_result other) { + public int compareTo(getKeyCclPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -512925,7 +512013,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclPage_result("); boolean first = true; sb.append("success:"); @@ -512992,17 +512080,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclOrder_resultStandardScheme getScheme() { - return new getKeyCclOrder_resultStandardScheme(); + public getKeyCclPage_resultStandardScheme getScheme() { + return new getKeyCclPage_resultStandardScheme(); } } - private static class getKeyCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -513015,16 +512103,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrder_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5626 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5626.size); - long _key5627; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5628; - for (int _i5629 = 0; _i5629 < _map5626.size; ++_i5629) + org.apache.thrift.protocol.TMap _map5616 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5616.size); + long _key5617; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5618; + for (int _i5619 = 0; _i5619 < _map5616.size; ++_i5619) { - _key5627 = iprot.readI64(); - _val5628 = new com.cinchapi.concourse.thrift.TObject(); - _val5628.read(iprot); - struct.success.put(_key5627, _val5628); + _key5617 = iprot.readI64(); + _val5618 = new com.cinchapi.concourse.thrift.TObject(); + _val5618.read(iprot); + struct.success.put(_key5617, _val5618); } iprot.readMapEnd(); } @@ -513081,7 +512169,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrder_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -513089,10 +512177,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrder_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5630 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5620 : struct.success.entrySet()) { - oprot.writeI64(_iter5630.getKey()); - _iter5630.getValue().write(oprot); + oprot.writeI64(_iter5620.getKey()); + _iter5620.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -513124,17 +512212,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrder_res } - private static class getKeyCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclOrder_resultTupleScheme getScheme() { - return new getKeyCclOrder_resultTupleScheme(); + public getKeyCclPage_resultTupleScheme getScheme() { + return new getKeyCclPage_resultTupleScheme(); } } - private static class getKeyCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -513156,10 +512244,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5631 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5621 : struct.success.entrySet()) { - oprot.writeI64(_iter5631.getKey()); - _iter5631.getValue().write(oprot); + oprot.writeI64(_iter5621.getKey()); + _iter5621.getValue().write(oprot); } } } @@ -513178,21 +512266,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_resu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5632 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5632.size); - long _key5633; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5634; - for (int _i5635 = 0; _i5635 < _map5632.size; ++_i5635) + org.apache.thrift.protocol.TMap _map5622 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5622.size); + long _key5623; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5624; + for (int _i5625 = 0; _i5625 < _map5622.size; ++_i5625) { - _key5633 = iprot.readI64(); - _val5634 = new com.cinchapi.concourse.thrift.TObject(); - _val5634.read(iprot); - struct.success.put(_key5633, _val5634); + _key5623 = iprot.readI64(); + _val5624 = new com.cinchapi.concourse.thrift.TObject(); + _val5624.read(iprot); + struct.success.put(_key5623, _val5624); } } struct.setSuccessIsSet(true); @@ -513225,24 +512313,22 @@ private static S scheme(org.apache. } } - public static class getKeyCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclOrderPage_args"); + public static class getKeyCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -513252,10 +512338,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CCL((short)2, "ccl"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -513277,13 +512362,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -513337,8 +512420,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -513346,17 +512427,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclOrder_args.class, metaDataMap); } - public getKeyCclOrderPage_args() { + public getKeyCclOrder_args() { } - public getKeyCclOrderPage_args( + public getKeyCclOrder_args( java.lang.String key, java.lang.String ccl, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -513365,7 +512445,6 @@ public getKeyCclOrderPage_args( this.key = key; this.ccl = ccl; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -513374,7 +512453,7 @@ public getKeyCclOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyCclOrderPage_args(getKeyCclOrderPage_args other) { + public getKeyCclOrder_args(getKeyCclOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -513384,9 +512463,6 @@ public getKeyCclOrderPage_args(getKeyCclOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -513399,8 +512475,8 @@ public getKeyCclOrderPage_args(getKeyCclOrderPage_args other) { } @Override - public getKeyCclOrderPage_args deepCopy() { - return new getKeyCclOrderPage_args(this); + public getKeyCclOrder_args deepCopy() { + return new getKeyCclOrder_args(this); } @Override @@ -513408,7 +512484,6 @@ public void clear() { this.key = null; this.ccl = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -513419,7 +512494,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -513444,7 +512519,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -513469,7 +512544,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -513489,37 +512564,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -513544,7 +512594,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -513569,7 +512619,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -513616,14 +512666,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -513664,9 +512706,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -513694,8 +512733,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -513708,12 +512745,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclOrderPage_args) - return this.equals((getKeyCclOrderPage_args)that); + if (that instanceof getKeyCclOrder_args) + return this.equals((getKeyCclOrder_args)that); return false; } - public boolean equals(getKeyCclOrderPage_args that) { + public boolean equals(getKeyCclOrder_args that) { if (that == null) return false; if (this == that) @@ -513746,15 +512783,6 @@ public boolean equals(getKeyCclOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -513801,10 +512829,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -513821,7 +512845,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclOrderPage_args other) { + public int compareTo(getKeyCclOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -513858,16 +512882,6 @@ public int compareTo(getKeyCclOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -513919,7 +512933,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclOrder_args("); boolean first = true; sb.append("key:"); @@ -513946,14 +512960,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -513987,9 +512993,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -514014,17 +513017,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclOrderPage_argsStandardScheme getScheme() { - return new getKeyCclOrderPage_argsStandardScheme(); + public getKeyCclOrder_argsStandardScheme getScheme() { + return new getKeyCclOrder_argsStandardScheme(); } } - private static class getKeyCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -514059,16 +513062,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -514077,7 +513071,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -514086,7 +513080,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -514106,7 +513100,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -514125,11 +513119,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrderPage struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -514151,17 +513140,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrderPage } - private static class getKeyCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclOrderPage_argsTupleScheme getScheme() { - return new getKeyCclOrderPage_argsTupleScheme(); + public getKeyCclOrder_argsTupleScheme getScheme() { + return new getKeyCclOrder_argsTupleScheme(); } } - private static class getKeyCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -514173,19 +513162,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_ if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -514195,9 +513181,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_ if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -514210,9 +513193,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -514227,21 +513210,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_a struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -514253,8 +513231,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclOrderPage_result"); + public static class getKeyCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -514262,8 +513240,8 @@ public static class getKeyCclOrderPage_result implements org.apache.thrift.TBase private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -514362,13 +513340,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclOrder_result.class, metaDataMap); } - public getKeyCclOrderPage_result() { + public getKeyCclOrder_result() { } - public getKeyCclOrderPage_result( + public getKeyCclOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -514386,7 +513364,7 @@ public getKeyCclOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyCclOrderPage_result(getKeyCclOrderPage_result other) { + public getKeyCclOrder_result(getKeyCclOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -514417,8 +513395,8 @@ public getKeyCclOrderPage_result(getKeyCclOrderPage_result other) { } @Override - public getKeyCclOrderPage_result deepCopy() { - return new getKeyCclOrderPage_result(this); + public getKeyCclOrder_result deepCopy() { + return new getKeyCclOrder_result(this); } @Override @@ -514446,7 +513424,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -514471,7 +513449,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -514496,7 +513474,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -514521,7 +513499,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -514546,7 +513524,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -514659,12 +513637,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclOrderPage_result) - return this.equals((getKeyCclOrderPage_result)that); + if (that instanceof getKeyCclOrder_result) + return this.equals((getKeyCclOrder_result)that); return false; } - public boolean equals(getKeyCclOrderPage_result that) { + public boolean equals(getKeyCclOrder_result that) { if (that == null) return false; if (this == that) @@ -514746,7 +513724,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclOrderPage_result other) { + public int compareTo(getKeyCclOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -514823,7 +513801,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclOrder_result("); boolean first = true; sb.append("success:"); @@ -514890,17 +513868,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclOrderPage_resultStandardScheme getScheme() { - return new getKeyCclOrderPage_resultStandardScheme(); + public getKeyCclOrder_resultStandardScheme getScheme() { + return new getKeyCclOrder_resultStandardScheme(); } } - private static class getKeyCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -514913,16 +513891,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5636 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5636.size); - long _key5637; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5638; - for (int _i5639 = 0; _i5639 < _map5636.size; ++_i5639) + org.apache.thrift.protocol.TMap _map5626 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5626.size); + long _key5627; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5628; + for (int _i5629 = 0; _i5629 < _map5626.size; ++_i5629) { - _key5637 = iprot.readI64(); - _val5638 = new com.cinchapi.concourse.thrift.TObject(); - _val5638.read(iprot); - struct.success.put(_key5637, _val5638); + _key5627 = iprot.readI64(); + _val5628 = new com.cinchapi.concourse.thrift.TObject(); + _val5628.read(iprot); + struct.success.put(_key5627, _val5628); } iprot.readMapEnd(); } @@ -514979,7 +513957,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -514987,10 +513965,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrderPage oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5640 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5630 : struct.success.entrySet()) { - oprot.writeI64(_iter5640.getKey()); - _iter5640.getValue().write(oprot); + oprot.writeI64(_iter5630.getKey()); + _iter5630.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -515022,17 +514000,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrderPage } - private static class getKeyCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclOrderPage_resultTupleScheme getScheme() { - return new getKeyCclOrderPage_resultTupleScheme(); + public getKeyCclOrder_resultTupleScheme getScheme() { + return new getKeyCclOrder_resultTupleScheme(); } } - private static class getKeyCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -515054,10 +514032,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5641 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5631 : struct.success.entrySet()) { - oprot.writeI64(_iter5641.getKey()); - _iter5641.getValue().write(oprot); + oprot.writeI64(_iter5631.getKey()); + _iter5631.getValue().write(oprot); } } } @@ -515076,21 +514054,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5642 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5642.size); - long _key5643; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5644; - for (int _i5645 = 0; _i5645 < _map5642.size; ++_i5645) + org.apache.thrift.protocol.TMap _map5632 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5632.size); + long _key5633; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5634; + for (int _i5635 = 0; _i5635 < _map5632.size; ++_i5635) { - _key5643 = iprot.readI64(); - _val5644 = new com.cinchapi.concourse.thrift.TObject(); - _val5644.read(iprot); - struct.success.put(_key5643, _val5644); + _key5633 = iprot.readI64(); + _val5634 = new com.cinchapi.concourse.thrift.TObject(); + _val5634.read(iprot); + struct.success.put(_key5633, _val5634); } } struct.setSuccessIsSet(true); @@ -515123,22 +514101,24 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTime_args"); + public static class getKeyCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -515146,11 +514126,12 @@ public static class getKeyCriteriaTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -515168,15 +514149,17 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEY return KEY; - case 2: // CRITERIA - return CRITERIA; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 2: // CCL + return CCL; + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 5: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -515221,17 +514204,17 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -515239,25 +514222,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclOrderPage_args.class, metaDataMap); } - public getKeyCriteriaTime_args() { + public getKeyCclOrderPage_args() { } - public getKeyCriteriaTime_args( + public getKeyCclOrderPage_args( java.lang.String key, - com.cinchapi.concourse.thrift.TCriteria criteria, - long timestamp, + java.lang.String ccl, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.key = key; - this.criteria = criteria; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.ccl = ccl; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -515266,15 +514250,19 @@ public getKeyCriteriaTime_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaTime_args(getKeyCriteriaTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public getKeyCclOrderPage_args(getKeyCclOrderPage_args other) { if (other.isSetKey()) { this.key = other.key; } - if (other.isSetCriteria()) { - this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + if (other.isSetCcl()) { + this.ccl = other.ccl; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -515287,16 +514275,16 @@ public getKeyCriteriaTime_args(getKeyCriteriaTime_args other) { } @Override - public getKeyCriteriaTime_args deepCopy() { - return new getKeyCriteriaTime_args(this); + public getKeyCclOrderPage_args deepCopy() { + return new getKeyCclOrderPage_args(this); } @Override public void clear() { this.key = null; - this.criteria = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.ccl = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -515307,7 +514295,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -515328,51 +514316,78 @@ public void setKeyIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TCriteria getCriteria() { - return this.criteria; + public java.lang.String getCcl() { + return this.ccl; } - public getKeyCriteriaTime_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { - this.criteria = criteria; + public getKeyCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetCriteria() { - this.criteria = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ - public boolean isSetCriteria() { - return this.criteria != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setCriteriaIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.criteria = null; + this.ccl = null; } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public getKeyCriteriaTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public getKeyCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -515380,7 +514395,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -515405,7 +514420,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -515430,7 +514445,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -515461,19 +514476,27 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case CRITERIA: + case CCL: if (value == null) { - unsetCriteria(); + unsetCcl(); } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + setCcl((java.lang.String)value); } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -515511,11 +514534,14 @@ public java.lang.Object getFieldValue(_Fields field) { case KEY: return getKey(); - case CRITERIA: - return getCriteria(); + case CCL: + return getCcl(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -515540,10 +514566,12 @@ public boolean isSet(_Fields field) { switch (field) { case KEY: return isSetKey(); - case CRITERIA: - return isSetCriteria(); - case TIMESTAMP: - return isSetTimestamp(); + case CCL: + return isSetCcl(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -515556,12 +514584,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTime_args) - return this.equals((getKeyCriteriaTime_args)that); + if (that instanceof getKeyCclOrderPage_args) + return this.equals((getKeyCclOrderPage_args)that); return false; } - public boolean equals(getKeyCriteriaTime_args that) { + public boolean equals(getKeyCclOrderPage_args that) { if (that == null) return false; if (this == that) @@ -515576,21 +514604,30 @@ public boolean equals(getKeyCriteriaTime_args that) { return false; } - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.criteria.equals(that.criteria)) + if (!this.ccl.equals(that.ccl)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -515632,11 +514669,17 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -515654,7 +514697,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTime_args other) { + public int compareTo(getKeyCclOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -515671,22 +514714,32 @@ public int compareTo(getKeyCriteriaTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -515742,7 +514795,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclOrderPage_args("); boolean first = true; sb.append("key:"); @@ -515753,16 +514806,28 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("criteria:"); - if (this.criteria == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.criteria); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -515795,8 +514860,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -515816,25 +514884,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeyCriteriaTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTime_argsStandardScheme getScheme() { - return new getKeyCriteriaTime_argsStandardScheme(); + public getKeyCclOrderPage_argsStandardScheme getScheme() { + return new getKeyCclOrderPage_argsStandardScheme(); } } - private static class getKeyCriteriaTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -515852,24 +514918,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CRITERIA + case 2: // CCL + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // ORDER if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -515878,7 +514953,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -515887,7 +514962,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -515907,7 +514982,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -515916,14 +514991,21 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -515945,46 +515027,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTime_argsTupleScheme getScheme() { - return new getKeyCriteriaTime_argsTupleScheme(); + public getKeyCclOrderPage_argsTupleScheme getScheme() { + return new getKeyCclOrderPage_argsTupleScheme(); } } - private static class getKeyCriteriaTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetCriteria()) { + if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -515998,33 +515086,38 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -516036,28 +515129,31 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTime_result"); + public static class getKeyCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -516081,6 +515177,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -516136,31 +515234,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclOrderPage_result.class, metaDataMap); } - public getKeyCriteriaTime_result() { + public getKeyCclOrderPage_result() { } - public getKeyCriteriaTime_result( + public getKeyCclOrderPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeyCriteriaTime_result(getKeyCriteriaTime_result other) { + public getKeyCclOrderPage_result(getKeyCclOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -516183,13 +515285,16 @@ public getKeyCriteriaTime_result(getKeyCriteriaTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getKeyCriteriaTime_result deepCopy() { - return new getKeyCriteriaTime_result(this); + public getKeyCclOrderPage_result deepCopy() { + return new getKeyCclOrderPage_result(this); } @Override @@ -516198,6 +515303,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -516216,7 +515322,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -516241,7 +515347,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -516266,7 +515372,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -516287,11 +515393,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCriteriaTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -516311,6 +515417,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getKeyCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -516342,7 +515473,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -516365,6 +515504,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -516385,18 +515527,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTime_result) - return this.equals((getKeyCriteriaTime_result)that); + if (that instanceof getKeyCclOrderPage_result) + return this.equals((getKeyCclOrderPage_result)that); return false; } - public boolean equals(getKeyCriteriaTime_result that) { + public boolean equals(getKeyCclOrderPage_result that) { if (that == null) return false; if (this == that) @@ -516438,6 +515582,15 @@ public boolean equals(getKeyCriteriaTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -516461,11 +515614,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getKeyCriteriaTime_result other) { + public int compareTo(getKeyCclOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -516512,6 +515669,16 @@ public int compareTo(getKeyCriteriaTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -516532,7 +515699,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclOrderPage_result("); boolean first = true; sb.append("success:"); @@ -516566,6 +515733,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -516591,17 +515766,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTime_resultStandardScheme getScheme() { - return new getKeyCriteriaTime_resultStandardScheme(); + public getKeyCclOrderPage_resultStandardScheme getScheme() { + return new getKeyCclOrderPage_resultStandardScheme(); } } - private static class getKeyCriteriaTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -516614,16 +515789,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5646 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5646.size); - long _key5647; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5648; - for (int _i5649 = 0; _i5649 < _map5646.size; ++_i5649) + org.apache.thrift.protocol.TMap _map5636 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5636.size); + long _key5637; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5638; + for (int _i5639 = 0; _i5639 < _map5636.size; ++_i5639) { - _key5647 = iprot.readI64(); - _val5648 = new com.cinchapi.concourse.thrift.TObject(); - _val5648.read(iprot); - struct.success.put(_key5647, _val5648); + _key5637 = iprot.readI64(); + _val5638 = new com.cinchapi.concourse.thrift.TObject(); + _val5638.read(iprot); + struct.success.put(_key5637, _val5638); } iprot.readMapEnd(); } @@ -516652,13 +515827,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_ break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -516671,7 +515855,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -516679,10 +515863,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5650 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5640 : struct.success.entrySet()) { - oprot.writeI64(_iter5650.getKey()); - _iter5650.getValue().write(oprot); + oprot.writeI64(_iter5640.getKey()); + _iter5640.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -516703,23 +515887,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeyCriteriaTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTime_resultTupleScheme getScheme() { - return new getKeyCriteriaTime_resultTupleScheme(); + public getKeyCclOrderPage_resultTupleScheme getScheme() { + return new getKeyCclOrderPage_resultTupleScheme(); } } - private static class getKeyCriteriaTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -516734,14 +515923,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_ if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5651 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5641 : struct.success.entrySet()) { - oprot.writeI64(_iter5651.getKey()); - _iter5651.getValue().write(oprot); + oprot.writeI64(_iter5641.getKey()); + _iter5641.getValue().write(oprot); } } } @@ -516754,24 +515946,27 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_ if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5652 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5652.size); - long _key5653; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5654; - for (int _i5655 = 0; _i5655 < _map5652.size; ++_i5655) + org.apache.thrift.protocol.TMap _map5642 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5642.size); + long _key5643; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5644; + for (int _i5645 = 0; _i5645 < _map5642.size; ++_i5645) { - _key5653 = iprot.readI64(); - _val5654 = new com.cinchapi.concourse.thrift.TObject(); - _val5654.read(iprot); - struct.success.put(_key5653, _val5654); + _key5643 = iprot.readI64(); + _val5644 = new com.cinchapi.concourse.thrift.TObject(); + _val5644.read(iprot); + struct.success.put(_key5643, _val5644); } } struct.setSuccessIsSet(true); @@ -516787,10 +515982,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_r struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -516799,24 +515999,22 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimePage_args"); + public static class getKeyCriteriaTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -516826,10 +516024,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -516851,13 +516048,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -516913,8 +516108,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -516922,17 +516115,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTime_args.class, metaDataMap); } - public getKeyCriteriaTimePage_args() { + public getKeyCriteriaTime_args() { } - public getKeyCriteriaTimePage_args( + public getKeyCriteriaTime_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -516942,7 +516134,6 @@ public getKeyCriteriaTimePage_args( this.criteria = criteria; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -516951,7 +516142,7 @@ public getKeyCriteriaTimePage_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimePage_args(getKeyCriteriaTimePage_args other) { + public getKeyCriteriaTime_args(getKeyCriteriaTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -516960,9 +516151,6 @@ public getKeyCriteriaTimePage_args(getKeyCriteriaTimePage_args other) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -516975,8 +516163,8 @@ public getKeyCriteriaTimePage_args(getKeyCriteriaTimePage_args other) { } @Override - public getKeyCriteriaTimePage_args deepCopy() { - return new getKeyCriteriaTimePage_args(this); + public getKeyCriteriaTime_args deepCopy() { + return new getKeyCriteriaTime_args(this); } @Override @@ -516985,7 +516173,6 @@ public void clear() { this.criteria = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -516996,7 +516183,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -517021,7 +516208,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaTimePage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaTime_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -517045,7 +516232,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyCriteriaTimePage_args setTimestamp(long timestamp) { + public getKeyCriteriaTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -517064,37 +516251,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCriteriaTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -517119,7 +516281,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -517144,7 +516306,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -517191,14 +516353,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -517239,9 +516393,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -517269,8 +516420,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -517283,12 +516432,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimePage_args) - return this.equals((getKeyCriteriaTimePage_args)that); + if (that instanceof getKeyCriteriaTime_args) + return this.equals((getKeyCriteriaTime_args)that); return false; } - public boolean equals(getKeyCriteriaTimePage_args that) { + public boolean equals(getKeyCriteriaTime_args that) { if (that == null) return false; if (this == that) @@ -517321,15 +516470,6 @@ public boolean equals(getKeyCriteriaTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -517374,10 +516514,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -517394,7 +516530,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimePage_args other) { + public int compareTo(getKeyCriteriaTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -517431,16 +516567,6 @@ public int compareTo(getKeyCriteriaTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -517492,7 +516618,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTime_args("); boolean first = true; sb.append("key:"); @@ -517515,14 +516641,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -517556,9 +516674,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -517585,17 +516700,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimePage_argsStandardScheme getScheme() { - return new getKeyCriteriaTimePage_argsStandardScheme(); + public getKeyCriteriaTime_argsStandardScheme getScheme() { + return new getKeyCriteriaTime_argsStandardScheme(); } } - private static class getKeyCriteriaTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -517630,16 +516745,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -517648,7 +516754,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -517657,7 +516763,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -517677,7 +516783,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -517694,11 +516800,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -517720,17 +516821,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimePage_argsTupleScheme getScheme() { - return new getKeyCriteriaTimePage_argsTupleScheme(); + public getKeyCriteriaTime_argsTupleScheme getScheme() { + return new getKeyCriteriaTime_argsTupleScheme(); } } - private static class getKeyCriteriaTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -517742,19 +516843,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeP if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -517764,9 +516862,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeP if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -517779,9 +516874,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -517796,21 +516891,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePa struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -517822,16 +516912,16 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimePage_result"); + public static class getKeyCriteriaTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -517924,13 +517014,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTime_result.class, metaDataMap); } - public getKeyCriteriaTimePage_result() { + public getKeyCriteriaTime_result() { } - public getKeyCriteriaTimePage_result( + public getKeyCriteriaTime_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -517946,7 +517036,7 @@ public getKeyCriteriaTimePage_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimePage_result(getKeyCriteriaTimePage_result other) { + public getKeyCriteriaTime_result(getKeyCriteriaTime_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -517974,8 +517064,8 @@ public getKeyCriteriaTimePage_result(getKeyCriteriaTimePage_result other) { } @Override - public getKeyCriteriaTimePage_result deepCopy() { - return new getKeyCriteriaTimePage_result(this); + public getKeyCriteriaTime_result deepCopy() { + return new getKeyCriteriaTime_result(this); } @Override @@ -518002,7 +517092,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -518027,7 +517117,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -518052,7 +517142,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -518077,7 +517167,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyCriteriaTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCriteriaTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -518177,12 +517267,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimePage_result) - return this.equals((getKeyCriteriaTimePage_result)that); + if (that instanceof getKeyCriteriaTime_result) + return this.equals((getKeyCriteriaTime_result)that); return false; } - public boolean equals(getKeyCriteriaTimePage_result that) { + public boolean equals(getKeyCriteriaTime_result that) { if (that == null) return false; if (this == that) @@ -518251,7 +517341,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimePage_result other) { + public int compareTo(getKeyCriteriaTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -518318,7 +517408,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTime_result("); boolean first = true; sb.append("success:"); @@ -518377,17 +517467,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimePage_resultStandardScheme getScheme() { - return new getKeyCriteriaTimePage_resultStandardScheme(); + public getKeyCriteriaTime_resultStandardScheme getScheme() { + return new getKeyCriteriaTime_resultStandardScheme(); } } - private static class getKeyCriteriaTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -518400,16 +517490,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeP case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5656 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5656.size); - long _key5657; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5658; - for (int _i5659 = 0; _i5659 < _map5656.size; ++_i5659) + org.apache.thrift.protocol.TMap _map5646 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5646.size); + long _key5647; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5648; + for (int _i5649 = 0; _i5649 < _map5646.size; ++_i5649) { - _key5657 = iprot.readI64(); - _val5658 = new com.cinchapi.concourse.thrift.TObject(); - _val5658.read(iprot); - struct.success.put(_key5657, _val5658); + _key5647 = iprot.readI64(); + _val5648 = new com.cinchapi.concourse.thrift.TObject(); + _val5648.read(iprot); + struct.success.put(_key5647, _val5648); } iprot.readMapEnd(); } @@ -518457,7 +517547,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -518465,10 +517555,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5660 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5650 : struct.success.entrySet()) { - oprot.writeI64(_iter5660.getKey()); - _iter5660.getValue().write(oprot); + oprot.writeI64(_iter5650.getKey()); + _iter5650.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -518495,17 +517585,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimePage_resultTupleScheme getScheme() { - return new getKeyCriteriaTimePage_resultTupleScheme(); + public getKeyCriteriaTime_resultTupleScheme getScheme() { + return new getKeyCriteriaTime_resultTupleScheme(); } } - private static class getKeyCriteriaTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -518524,10 +517614,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeP if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5661 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5651 : struct.success.entrySet()) { - oprot.writeI64(_iter5661.getKey()); - _iter5661.getValue().write(oprot); + oprot.writeI64(_iter5651.getKey()); + _iter5651.getValue().write(oprot); } } } @@ -518543,21 +517633,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5662 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5662.size); - long _key5663; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5664; - for (int _i5665 = 0; _i5665 < _map5662.size; ++_i5665) + org.apache.thrift.protocol.TMap _map5652 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5652.size); + long _key5653; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5654; + for (int _i5655 = 0; _i5655 < _map5652.size; ++_i5655) { - _key5663 = iprot.readI64(); - _val5664 = new com.cinchapi.concourse.thrift.TObject(); - _val5664.read(iprot); - struct.success.put(_key5663, _val5664); + _key5653 = iprot.readI64(); + _val5654 = new com.cinchapi.concourse.thrift.TObject(); + _val5654.read(iprot); + struct.success.put(_key5653, _val5654); } } struct.setSuccessIsSet(true); @@ -518585,24 +517675,24 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimeOrder_args"); + public static class getKeyCriteriaTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimePage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -518612,7 +517702,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -518637,8 +517727,8 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -518699,8 +517789,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -518708,17 +517798,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimePage_args.class, metaDataMap); } - public getKeyCriteriaTimeOrder_args() { + public getKeyCriteriaTimePage_args() { } - public getKeyCriteriaTimeOrder_args( + public getKeyCriteriaTimePage_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -518728,7 +517818,7 @@ public getKeyCriteriaTimeOrder_args( this.criteria = criteria; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -518737,7 +517827,7 @@ public getKeyCriteriaTimeOrder_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimeOrder_args(getKeyCriteriaTimeOrder_args other) { + public getKeyCriteriaTimePage_args(getKeyCriteriaTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -518746,8 +517836,8 @@ public getKeyCriteriaTimeOrder_args(getKeyCriteriaTimeOrder_args other) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -518761,8 +517851,8 @@ public getKeyCriteriaTimeOrder_args(getKeyCriteriaTimeOrder_args other) { } @Override - public getKeyCriteriaTimeOrder_args deepCopy() { - return new getKeyCriteriaTimeOrder_args(this); + public getKeyCriteriaTimePage_args deepCopy() { + return new getKeyCriteriaTimePage_args(this); } @Override @@ -518771,7 +517861,7 @@ public void clear() { this.criteria = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -518782,7 +517872,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -518807,7 +517897,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaTimeOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaTimePage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -518831,7 +517921,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyCriteriaTimeOrder_args setTimestamp(long timestamp) { + public getKeyCriteriaTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -518851,27 +517941,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyCriteriaTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyCriteriaTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -518880,7 +517970,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -518905,7 +517995,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -518930,7 +518020,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -518977,11 +518067,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -519025,8 +518115,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -519055,8 +518145,8 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -519069,12 +518159,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimeOrder_args) - return this.equals((getKeyCriteriaTimeOrder_args)that); + if (that instanceof getKeyCriteriaTimePage_args) + return this.equals((getKeyCriteriaTimePage_args)that); return false; } - public boolean equals(getKeyCriteriaTimeOrder_args that) { + public boolean equals(getKeyCriteriaTimePage_args that) { if (that == null) return false; if (this == that) @@ -519107,12 +518197,12 @@ public boolean equals(getKeyCriteriaTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -519160,9 +518250,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -519180,7 +518270,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimeOrder_args other) { + public int compareTo(getKeyCriteriaTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -519217,12 +518307,12 @@ public int compareTo(getKeyCriteriaTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -519278,7 +518368,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimePage_args("); boolean first = true; sb.append("key:"); @@ -519301,11 +518391,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -519342,8 +518432,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -519371,17 +518461,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimeOrder_argsStandardScheme getScheme() { - return new getKeyCriteriaTimeOrder_argsStandardScheme(); + public getKeyCriteriaTimePage_argsStandardScheme getScheme() { + return new getKeyCriteriaTimePage_argsStandardScheme(); } } - private static class getKeyCriteriaTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -519416,11 +518506,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -519463,7 +518553,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -519480,9 +518570,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -519506,17 +518596,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimeOrder_argsTupleScheme getScheme() { - return new getKeyCriteriaTimeOrder_argsTupleScheme(); + public getKeyCriteriaTimePage_argsTupleScheme getScheme() { + return new getKeyCriteriaTimePage_argsTupleScheme(); } } - private static class getKeyCriteriaTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -519528,7 +518618,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -519550,8 +518640,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -519565,7 +518655,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -519582,9 +518672,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOr struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -519608,16 +518698,16 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimeOrder_result"); + public static class getKeyCriteriaTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -519710,13 +518800,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimePage_result.class, metaDataMap); } - public getKeyCriteriaTimeOrder_result() { + public getKeyCriteriaTimePage_result() { } - public getKeyCriteriaTimeOrder_result( + public getKeyCriteriaTimePage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -519732,7 +518822,7 @@ public getKeyCriteriaTimeOrder_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimeOrder_result(getKeyCriteriaTimeOrder_result other) { + public getKeyCriteriaTimePage_result(getKeyCriteriaTimePage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -519760,8 +518850,8 @@ public getKeyCriteriaTimeOrder_result(getKeyCriteriaTimeOrder_result other) { } @Override - public getKeyCriteriaTimeOrder_result deepCopy() { - return new getKeyCriteriaTimeOrder_result(this); + public getKeyCriteriaTimePage_result deepCopy() { + return new getKeyCriteriaTimePage_result(this); } @Override @@ -519788,7 +518878,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -519813,7 +518903,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -519838,7 +518928,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -519863,7 +518953,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyCriteriaTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCriteriaTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -519963,12 +519053,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimeOrder_result) - return this.equals((getKeyCriteriaTimeOrder_result)that); + if (that instanceof getKeyCriteriaTimePage_result) + return this.equals((getKeyCriteriaTimePage_result)that); return false; } - public boolean equals(getKeyCriteriaTimeOrder_result that) { + public boolean equals(getKeyCriteriaTimePage_result that) { if (that == null) return false; if (this == that) @@ -520037,7 +519127,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimeOrder_result other) { + public int compareTo(getKeyCriteriaTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -520104,7 +519194,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimePage_result("); boolean first = true; sb.append("success:"); @@ -520163,17 +519253,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimeOrder_resultStandardScheme getScheme() { - return new getKeyCriteriaTimeOrder_resultStandardScheme(); + public getKeyCriteriaTimePage_resultStandardScheme getScheme() { + return new getKeyCriteriaTimePage_resultStandardScheme(); } } - private static class getKeyCriteriaTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -520186,16 +519276,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5666 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5666.size); - long _key5667; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5668; - for (int _i5669 = 0; _i5669 < _map5666.size; ++_i5669) + org.apache.thrift.protocol.TMap _map5656 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5656.size); + long _key5657; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5658; + for (int _i5659 = 0; _i5659 < _map5656.size; ++_i5659) { - _key5667 = iprot.readI64(); - _val5668 = new com.cinchapi.concourse.thrift.TObject(); - _val5668.read(iprot); - struct.success.put(_key5667, _val5668); + _key5657 = iprot.readI64(); + _val5658 = new com.cinchapi.concourse.thrift.TObject(); + _val5658.read(iprot); + struct.success.put(_key5657, _val5658); } iprot.readMapEnd(); } @@ -520243,7 +519333,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -520251,10 +519341,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5670 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5660 : struct.success.entrySet()) { - oprot.writeI64(_iter5670.getKey()); - _iter5670.getValue().write(oprot); + oprot.writeI64(_iter5660.getKey()); + _iter5660.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -520281,17 +519371,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimeOrder_resultTupleScheme getScheme() { - return new getKeyCriteriaTimeOrder_resultTupleScheme(); + public getKeyCriteriaTimePage_resultTupleScheme getScheme() { + return new getKeyCriteriaTimePage_resultTupleScheme(); } } - private static class getKeyCriteriaTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -520310,10 +519400,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5671 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5661 : struct.success.entrySet()) { - oprot.writeI64(_iter5671.getKey()); - _iter5671.getValue().write(oprot); + oprot.writeI64(_iter5661.getKey()); + _iter5661.getValue().write(oprot); } } } @@ -520329,21 +519419,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5672 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5672.size); - long _key5673; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5674; - for (int _i5675 = 0; _i5675 < _map5672.size; ++_i5675) + org.apache.thrift.protocol.TMap _map5662 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5662.size); + long _key5663; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5664; + for (int _i5665 = 0; _i5665 < _map5662.size; ++_i5665) { - _key5673 = iprot.readI64(); - _val5674 = new com.cinchapi.concourse.thrift.TObject(); - _val5674.read(iprot); - struct.success.put(_key5673, _val5674); + _key5663 = iprot.readI64(); + _val5664 = new com.cinchapi.concourse.thrift.TObject(); + _val5664.read(iprot); + struct.success.put(_key5663, _val5664); } } struct.setSuccessIsSet(true); @@ -520371,26 +519461,24 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimeOrderPage_args"); + public static class getKeyCriteriaTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -520401,10 +519489,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -520428,13 +519515,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -520492,8 +519577,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -520501,18 +519584,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimeOrder_args.class, metaDataMap); } - public getKeyCriteriaTimeOrderPage_args() { + public getKeyCriteriaTimeOrder_args() { } - public getKeyCriteriaTimeOrderPage_args( + public getKeyCriteriaTimeOrder_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -520523,7 +519605,6 @@ public getKeyCriteriaTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -520532,7 +519613,7 @@ public getKeyCriteriaTimeOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimeOrderPage_args(getKeyCriteriaTimeOrderPage_args other) { + public getKeyCriteriaTimeOrder_args(getKeyCriteriaTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -520544,9 +519625,6 @@ public getKeyCriteriaTimeOrderPage_args(getKeyCriteriaTimeOrderPage_args other) if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -520559,8 +519637,8 @@ public getKeyCriteriaTimeOrderPage_args(getKeyCriteriaTimeOrderPage_args other) } @Override - public getKeyCriteriaTimeOrderPage_args deepCopy() { - return new getKeyCriteriaTimeOrderPage_args(this); + public getKeyCriteriaTimeOrder_args deepCopy() { + return new getKeyCriteriaTimeOrder_args(this); } @Override @@ -520570,7 +519648,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -520581,7 +519658,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -520606,7 +519683,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaTimeOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaTimeOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -520630,7 +519707,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyCriteriaTimeOrderPage_args setTimestamp(long timestamp) { + public getKeyCriteriaTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -520654,7 +519731,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyCriteriaTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyCriteriaTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -520674,37 +519751,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCriteriaTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -520729,7 +519781,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -520754,7 +519806,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -520809,14 +519861,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -520860,9 +519904,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -520892,8 +519933,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -520906,12 +519945,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimeOrderPage_args) - return this.equals((getKeyCriteriaTimeOrderPage_args)that); + if (that instanceof getKeyCriteriaTimeOrder_args) + return this.equals((getKeyCriteriaTimeOrder_args)that); return false; } - public boolean equals(getKeyCriteriaTimeOrderPage_args that) { + public boolean equals(getKeyCriteriaTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -520953,15 +519992,6 @@ public boolean equals(getKeyCriteriaTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -521010,10 +520040,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -521030,7 +520056,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimeOrderPage_args other) { + public int compareTo(getKeyCriteriaTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -521077,16 +520103,6 @@ public int compareTo(getKeyCriteriaTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -521138,7 +520154,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimeOrder_args("); boolean first = true; sb.append("key:"); @@ -521169,14 +520185,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -521213,9 +520221,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -521242,17 +520247,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimeOrderPage_argsStandardScheme getScheme() { - return new getKeyCriteriaTimeOrderPage_argsStandardScheme(); + public getKeyCriteriaTimeOrder_argsStandardScheme getScheme() { + return new getKeyCriteriaTimeOrder_argsStandardScheme(); } } - private static class getKeyCriteriaTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -521296,16 +520301,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -521314,7 +520310,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -521323,7 +520319,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -521343,7 +520339,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -521365,11 +520361,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -521391,17 +520382,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimeOrderPage_argsTupleScheme getScheme() { - return new getKeyCriteriaTimeOrderPage_argsTupleScheme(); + public getKeyCriteriaTimeOrder_argsTupleScheme getScheme() { + return new getKeyCriteriaTimeOrder_argsTupleScheme(); } } - private static class getKeyCriteriaTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -521416,19 +520407,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -521441,9 +520429,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -521456,9 +520441,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -521478,21 +520463,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOr struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -521504,16 +520484,16 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimeOrderPage_result"); + public static class getKeyCriteriaTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -521606,13 +520586,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimeOrder_result.class, metaDataMap); } - public getKeyCriteriaTimeOrderPage_result() { + public getKeyCriteriaTimeOrder_result() { } - public getKeyCriteriaTimeOrderPage_result( + public getKeyCriteriaTimeOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -521628,7 +520608,7 @@ public getKeyCriteriaTimeOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimeOrderPage_result(getKeyCriteriaTimeOrderPage_result other) { + public getKeyCriteriaTimeOrder_result(getKeyCriteriaTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -521656,8 +520636,8 @@ public getKeyCriteriaTimeOrderPage_result(getKeyCriteriaTimeOrderPage_result oth } @Override - public getKeyCriteriaTimeOrderPage_result deepCopy() { - return new getKeyCriteriaTimeOrderPage_result(this); + public getKeyCriteriaTimeOrder_result deepCopy() { + return new getKeyCriteriaTimeOrder_result(this); } @Override @@ -521684,7 +520664,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -521709,7 +520689,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -521734,7 +520714,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -521759,7 +520739,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyCriteriaTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCriteriaTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -521859,12 +520839,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimeOrderPage_result) - return this.equals((getKeyCriteriaTimeOrderPage_result)that); + if (that instanceof getKeyCriteriaTimeOrder_result) + return this.equals((getKeyCriteriaTimeOrder_result)that); return false; } - public boolean equals(getKeyCriteriaTimeOrderPage_result that) { + public boolean equals(getKeyCriteriaTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -521933,7 +520913,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimeOrderPage_result other) { + public int compareTo(getKeyCriteriaTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -522000,7 +520980,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -522059,17 +521039,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimeOrderPage_resultStandardScheme getScheme() { - return new getKeyCriteriaTimeOrderPage_resultStandardScheme(); + public getKeyCriteriaTimeOrder_resultStandardScheme getScheme() { + return new getKeyCriteriaTimeOrder_resultStandardScheme(); } } - private static class getKeyCriteriaTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -522082,16 +521062,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5676 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5676.size); - long _key5677; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5678; - for (int _i5679 = 0; _i5679 < _map5676.size; ++_i5679) + org.apache.thrift.protocol.TMap _map5666 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5666.size); + long _key5667; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5668; + for (int _i5669 = 0; _i5669 < _map5666.size; ++_i5669) { - _key5677 = iprot.readI64(); - _val5678 = new com.cinchapi.concourse.thrift.TObject(); - _val5678.read(iprot); - struct.success.put(_key5677, _val5678); + _key5667 = iprot.readI64(); + _val5668 = new com.cinchapi.concourse.thrift.TObject(); + _val5668.read(iprot); + struct.success.put(_key5667, _val5668); } iprot.readMapEnd(); } @@ -522139,7 +521119,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeO } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -522147,10 +521127,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5680 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5670 : struct.success.entrySet()) { - oprot.writeI64(_iter5680.getKey()); - _iter5680.getValue().write(oprot); + oprot.writeI64(_iter5670.getKey()); + _iter5670.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -522177,17 +521157,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimeOrderPage_resultTupleScheme getScheme() { - return new getKeyCriteriaTimeOrderPage_resultTupleScheme(); + public getKeyCriteriaTimeOrder_resultTupleScheme getScheme() { + return new getKeyCriteriaTimeOrder_resultTupleScheme(); } } - private static class getKeyCriteriaTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -522206,10 +521186,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5681 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5671 : struct.success.entrySet()) { - oprot.writeI64(_iter5681.getKey()); - _iter5681.getValue().write(oprot); + oprot.writeI64(_iter5671.getKey()); + _iter5671.getValue().write(oprot); } } } @@ -522225,21 +521205,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeO } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5682 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5682.size); - long _key5683; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5684; - for (int _i5685 = 0; _i5685 < _map5682.size; ++_i5685) + org.apache.thrift.protocol.TMap _map5672 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5672.size); + long _key5673; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5674; + for (int _i5675 = 0; _i5675 < _map5672.size; ++_i5675) { - _key5683 = iprot.readI64(); - _val5684 = new com.cinchapi.concourse.thrift.TObject(); - _val5684.read(iprot); - struct.success.put(_key5683, _val5684); + _key5673 = iprot.readI64(); + _val5674 = new com.cinchapi.concourse.thrift.TObject(); + _val5674.read(iprot); + struct.success.put(_key5673, _val5674); } } struct.setSuccessIsSet(true); @@ -522267,22 +521247,26 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestr_args"); + public static class getKeyCriteriaTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -522292,9 +521276,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -522316,11 +521302,15 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -522365,6 +521355,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -522373,7 +521365,11 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -522381,16 +521377,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimeOrderPage_args.class, metaDataMap); } - public getKeyCriteriaTimestr_args() { + public getKeyCriteriaTimeOrderPage_args() { } - public getKeyCriteriaTimestr_args( + public getKeyCriteriaTimeOrderPage_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -522399,6 +521397,9 @@ public getKeyCriteriaTimestr_args( this.key = key; this.criteria = criteria; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -522407,15 +521408,20 @@ public getKeyCriteriaTimestr_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimestr_args(getKeyCriteriaTimestr_args other) { + public getKeyCriteriaTimeOrderPage_args(getKeyCriteriaTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -522429,15 +521435,18 @@ public getKeyCriteriaTimestr_args(getKeyCriteriaTimestr_args other) { } @Override - public getKeyCriteriaTimestr_args deepCopy() { - return new getKeyCriteriaTimestr_args(this); + public getKeyCriteriaTimeOrderPage_args deepCopy() { + return new getKeyCriteriaTimeOrderPage_args(this); } @Override public void clear() { this.key = null; this.criteria = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -522448,7 +521457,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -522473,7 +521482,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaTimestr_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaTimeOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -522493,28 +521502,76 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getKeyCriteriaTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyCriteriaTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeyCriteriaTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyCriteriaTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -522523,7 +521580,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -522548,7 +521605,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -522573,7 +521630,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -522616,7 +521673,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -522660,6 +521733,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -522687,6 +521766,10 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -522699,12 +521782,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimestr_args) - return this.equals((getKeyCriteriaTimestr_args)that); + if (that instanceof getKeyCriteriaTimeOrderPage_args) + return this.equals((getKeyCriteriaTimeOrderPage_args)that); return false; } - public boolean equals(getKeyCriteriaTimestr_args that) { + public boolean equals(getKeyCriteriaTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -522728,12 +521811,30 @@ public boolean equals(getKeyCriteriaTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -522779,9 +521880,15 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -522799,7 +521906,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimestr_args other) { + public int compareTo(getKeyCriteriaTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -522836,6 +521943,26 @@ public int compareTo(getKeyCriteriaTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -522887,7 +522014,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimeOrderPage_args("); boolean first = true; sb.append("key:"); @@ -522907,10 +522034,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -522947,6 +522086,12 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -522965,23 +522110,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeyCriteriaTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestr_argsStandardScheme getScheme() { - return new getKeyCriteriaTimestr_argsStandardScheme(); + public getKeyCriteriaTimeOrderPage_argsStandardScheme getScheme() { + return new getKeyCriteriaTimeOrderPage_argsStandardScheme(); } } - private static class getKeyCriteriaTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -523009,14 +522156,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -523025,7 +522190,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -523034,7 +522199,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -523054,7 +522219,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -523068,9 +522233,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -523094,17 +522267,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestr_argsTupleScheme getScheme() { - return new getKeyCriteriaTimestr_argsTupleScheme(); + public getKeyCriteriaTimeOrderPage_argsTupleScheme getScheme() { + return new getKeyCriteriaTimeOrderPage_argsTupleScheme(); } } - private static class getKeyCriteriaTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -523116,16 +522289,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -523133,7 +522312,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -523147,9 +522332,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -523160,20 +522345,30 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimest struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -523185,31 +522380,28 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestr_result"); + public static class getKeyCriteriaTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -523233,8 +522425,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -523290,35 +522480,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimeOrderPage_result.class, metaDataMap); } - public getKeyCriteriaTimestr_result() { + public getKeyCriteriaTimeOrderPage_result() { } - public getKeyCriteriaTimestr_result( + public getKeyCriteriaTimeOrderPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeyCriteriaTimestr_result(getKeyCriteriaTimestr_result other) { + public getKeyCriteriaTimeOrderPage_result(getKeyCriteriaTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -523341,16 +522527,13 @@ public getKeyCriteriaTimestr_result(getKeyCriteriaTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getKeyCriteriaTimestr_result deepCopy() { - return new getKeyCriteriaTimestr_result(this); + public getKeyCriteriaTimeOrderPage_result deepCopy() { + return new getKeyCriteriaTimeOrderPage_result(this); } @Override @@ -523359,7 +522542,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -523378,7 +522560,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -523403,7 +522585,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -523428,7 +522610,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -523449,11 +522631,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeyCriteriaTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCriteriaTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -523473,31 +522655,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getKeyCriteriaTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -523529,15 +522686,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -523560,9 +522709,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -523583,20 +522729,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimestr_result) - return this.equals((getKeyCriteriaTimestr_result)that); + if (that instanceof getKeyCriteriaTimeOrderPage_result) + return this.equals((getKeyCriteriaTimeOrderPage_result)that); return false; } - public boolean equals(getKeyCriteriaTimestr_result that) { + public boolean equals(getKeyCriteriaTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -523638,15 +522782,6 @@ public boolean equals(getKeyCriteriaTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -523670,15 +522805,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getKeyCriteriaTimestr_result other) { + public int compareTo(getKeyCriteriaTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -523725,16 +522856,6 @@ public int compareTo(getKeyCriteriaTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -523755,7 +522876,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -523789,14 +522910,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -523822,17 +522935,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestr_resultStandardScheme getScheme() { - return new getKeyCriteriaTimestr_resultStandardScheme(); + public getKeyCriteriaTimeOrderPage_resultStandardScheme getScheme() { + return new getKeyCriteriaTimeOrderPage_resultStandardScheme(); } } - private static class getKeyCriteriaTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -523845,16 +522958,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5686 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5686.size); - long _key5687; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5688; - for (int _i5689 = 0; _i5689 < _map5686.size; ++_i5689) + org.apache.thrift.protocol.TMap _map5676 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5676.size); + long _key5677; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5678; + for (int _i5679 = 0; _i5679 < _map5676.size; ++_i5679) { - _key5687 = iprot.readI64(); - _val5688 = new com.cinchapi.concourse.thrift.TObject(); - _val5688.read(iprot); - struct.success.put(_key5687, _val5688); + _key5677 = iprot.readI64(); + _val5678 = new com.cinchapi.concourse.thrift.TObject(); + _val5678.read(iprot); + struct.success.put(_key5677, _val5678); } iprot.readMapEnd(); } @@ -523883,22 +522996,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -523911,7 +523015,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -523919,10 +523023,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5690 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5680 : struct.success.entrySet()) { - oprot.writeI64(_iter5690.getKey()); - _iter5690.getValue().write(oprot); + oprot.writeI64(_iter5680.getKey()); + _iter5680.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -523943,28 +523047,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeyCriteriaTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestr_resultTupleScheme getScheme() { - return new getKeyCriteriaTimestr_resultTupleScheme(); + public getKeyCriteriaTimeOrderPage_resultTupleScheme getScheme() { + return new getKeyCriteriaTimeOrderPage_resultTupleScheme(); } } - private static class getKeyCriteriaTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -523979,17 +523078,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5691 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5681 : struct.success.entrySet()) { - oprot.writeI64(_iter5691.getKey()); - _iter5691.getValue().write(oprot); + oprot.writeI64(_iter5681.getKey()); + _iter5681.getValue().write(oprot); } } } @@ -524002,27 +523098,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5692 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5692.size); - long _key5693; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5694; - for (int _i5695 = 0; _i5695 < _map5692.size; ++_i5695) + org.apache.thrift.protocol.TMap _map5682 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5682.size); + long _key5683; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5684; + for (int _i5685 = 0; _i5685 < _map5682.size; ++_i5685) { - _key5693 = iprot.readI64(); - _val5694 = new com.cinchapi.concourse.thrift.TObject(); - _val5694.read(iprot); - struct.success.put(_key5693, _val5694); + _key5683 = iprot.readI64(); + _val5684 = new com.cinchapi.concourse.thrift.TObject(); + _val5684.read(iprot); + struct.success.put(_key5683, _val5684); } } struct.setSuccessIsSet(true); @@ -524038,15 +523131,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimest struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -524055,24 +523143,22 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrPage_args"); + public static class getKeyCriteriaTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -524082,10 +523168,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -524107,13 +523192,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -524167,8 +523250,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -524176,17 +523257,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestr_args.class, metaDataMap); } - public getKeyCriteriaTimestrPage_args() { + public getKeyCriteriaTimestr_args() { } - public getKeyCriteriaTimestrPage_args( + public getKeyCriteriaTimestr_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -524195,7 +523275,6 @@ public getKeyCriteriaTimestrPage_args( this.key = key; this.criteria = criteria; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -524204,7 +523283,7 @@ public getKeyCriteriaTimestrPage_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimestrPage_args(getKeyCriteriaTimestrPage_args other) { + public getKeyCriteriaTimestr_args(getKeyCriteriaTimestr_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -524214,9 +523293,6 @@ public getKeyCriteriaTimestrPage_args(getKeyCriteriaTimestrPage_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -524229,8 +523305,8 @@ public getKeyCriteriaTimestrPage_args(getKeyCriteriaTimestrPage_args other) { } @Override - public getKeyCriteriaTimestrPage_args deepCopy() { - return new getKeyCriteriaTimestrPage_args(this); + public getKeyCriteriaTimestr_args deepCopy() { + return new getKeyCriteriaTimestr_args(this); } @Override @@ -524238,7 +523314,6 @@ public void clear() { this.key = null; this.criteria = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -524249,7 +523324,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -524274,7 +523349,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaTimestrPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaTimestr_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -524299,7 +523374,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyCriteriaTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyCriteriaTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -524319,37 +523394,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCriteriaTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -524374,7 +523424,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -524399,7 +523449,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -524446,14 +523496,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -524494,9 +523536,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -524524,8 +523563,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -524538,12 +523575,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimestrPage_args) - return this.equals((getKeyCriteriaTimestrPage_args)that); + if (that instanceof getKeyCriteriaTimestr_args) + return this.equals((getKeyCriteriaTimestr_args)that); return false; } - public boolean equals(getKeyCriteriaTimestrPage_args that) { + public boolean equals(getKeyCriteriaTimestr_args that) { if (that == null) return false; if (this == that) @@ -524576,15 +523613,6 @@ public boolean equals(getKeyCriteriaTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -524631,10 +523659,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -524651,7 +523675,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimestrPage_args other) { + public int compareTo(getKeyCriteriaTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -524688,16 +523712,6 @@ public int compareTo(getKeyCriteriaTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -524749,7 +523763,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestr_args("); boolean first = true; sb.append("key:"); @@ -524776,14 +523790,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -524817,9 +523823,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -524844,17 +523847,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrPage_argsStandardScheme getScheme() { - return new getKeyCriteriaTimestrPage_argsStandardScheme(); + public getKeyCriteriaTimestr_argsStandardScheme getScheme() { + return new getKeyCriteriaTimestr_argsStandardScheme(); } } - private static class getKeyCriteriaTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -524889,16 +523892,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -524907,7 +523901,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -524916,7 +523910,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -524936,7 +523930,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -524955,11 +523949,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -524981,17 +523970,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrPage_argsTupleScheme getScheme() { - return new getKeyCriteriaTimestrPage_argsTupleScheme(); + public getKeyCriteriaTimestr_argsTupleScheme getScheme() { + return new getKeyCriteriaTimestr_argsTupleScheme(); } } - private static class getKeyCriteriaTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -525003,19 +523992,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -525025,9 +524011,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -525040,9 +524023,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -525057,21 +524040,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimest struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -525083,8 +524061,8 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrPage_result"); + public static class getKeyCriteriaTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -525092,8 +524070,8 @@ public static class getKeyCriteriaTimestrPage_result implements org.apache.thrif private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -525192,13 +524170,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestr_result.class, metaDataMap); } - public getKeyCriteriaTimestrPage_result() { + public getKeyCriteriaTimestr_result() { } - public getKeyCriteriaTimestrPage_result( + public getKeyCriteriaTimestr_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -525216,7 +524194,7 @@ public getKeyCriteriaTimestrPage_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimestrPage_result(getKeyCriteriaTimestrPage_result other) { + public getKeyCriteriaTimestr_result(getKeyCriteriaTimestr_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -525247,8 +524225,8 @@ public getKeyCriteriaTimestrPage_result(getKeyCriteriaTimestrPage_result other) } @Override - public getKeyCriteriaTimestrPage_result deepCopy() { - return new getKeyCriteriaTimestrPage_result(this); + public getKeyCriteriaTimestr_result deepCopy() { + return new getKeyCriteriaTimestr_result(this); } @Override @@ -525276,7 +524254,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -525301,7 +524279,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -525326,7 +524304,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -525351,7 +524329,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCriteriaTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCriteriaTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -525376,7 +524354,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCriteriaTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCriteriaTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -525489,12 +524467,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimestrPage_result) - return this.equals((getKeyCriteriaTimestrPage_result)that); + if (that instanceof getKeyCriteriaTimestr_result) + return this.equals((getKeyCriteriaTimestr_result)that); return false; } - public boolean equals(getKeyCriteriaTimestrPage_result that) { + public boolean equals(getKeyCriteriaTimestr_result that) { if (that == null) return false; if (this == that) @@ -525576,7 +524554,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimestrPage_result other) { + public int compareTo(getKeyCriteriaTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -525653,7 +524631,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestr_result("); boolean first = true; sb.append("success:"); @@ -525720,17 +524698,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrPage_resultStandardScheme getScheme() { - return new getKeyCriteriaTimestrPage_resultStandardScheme(); + public getKeyCriteriaTimestr_resultStandardScheme getScheme() { + return new getKeyCriteriaTimestr_resultStandardScheme(); } } - private static class getKeyCriteriaTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -525743,16 +524721,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5696 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5696.size); - long _key5697; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5698; - for (int _i5699 = 0; _i5699 < _map5696.size; ++_i5699) + org.apache.thrift.protocol.TMap _map5686 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5686.size); + long _key5687; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5688; + for (int _i5689 = 0; _i5689 < _map5686.size; ++_i5689) { - _key5697 = iprot.readI64(); - _val5698 = new com.cinchapi.concourse.thrift.TObject(); - _val5698.read(iprot); - struct.success.put(_key5697, _val5698); + _key5687 = iprot.readI64(); + _val5688 = new com.cinchapi.concourse.thrift.TObject(); + _val5688.read(iprot); + struct.success.put(_key5687, _val5688); } iprot.readMapEnd(); } @@ -525809,7 +524787,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -525817,10 +524795,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5700 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5690 : struct.success.entrySet()) { - oprot.writeI64(_iter5700.getKey()); - _iter5700.getValue().write(oprot); + oprot.writeI64(_iter5690.getKey()); + _iter5690.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -525852,17 +524830,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrPage_resultTupleScheme getScheme() { - return new getKeyCriteriaTimestrPage_resultTupleScheme(); + public getKeyCriteriaTimestr_resultTupleScheme getScheme() { + return new getKeyCriteriaTimestr_resultTupleScheme(); } } - private static class getKeyCriteriaTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -525884,10 +524862,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5701 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5691 : struct.success.entrySet()) { - oprot.writeI64(_iter5701.getKey()); - _iter5701.getValue().write(oprot); + oprot.writeI64(_iter5691.getKey()); + _iter5691.getValue().write(oprot); } } } @@ -525906,21 +524884,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5702 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5702.size); - long _key5703; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5704; - for (int _i5705 = 0; _i5705 < _map5702.size; ++_i5705) + org.apache.thrift.protocol.TMap _map5692 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5692.size); + long _key5693; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5694; + for (int _i5695 = 0; _i5695 < _map5692.size; ++_i5695) { - _key5703 = iprot.readI64(); - _val5704 = new com.cinchapi.concourse.thrift.TObject(); - _val5704.read(iprot); - struct.success.put(_key5703, _val5704); + _key5693 = iprot.readI64(); + _val5694 = new com.cinchapi.concourse.thrift.TObject(); + _val5694.read(iprot); + struct.success.put(_key5693, _val5694); } } struct.setSuccessIsSet(true); @@ -525953,24 +524931,24 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrOrder_args"); + public static class getKeyCriteriaTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -525980,7 +524958,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -526005,8 +524983,8 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -526065,8 +525043,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -526074,17 +525052,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrPage_args.class, metaDataMap); } - public getKeyCriteriaTimestrOrder_args() { + public getKeyCriteriaTimestrPage_args() { } - public getKeyCriteriaTimestrOrder_args( + public getKeyCriteriaTimestrPage_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -526093,7 +525071,7 @@ public getKeyCriteriaTimestrOrder_args( this.key = key; this.criteria = criteria; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -526102,7 +525080,7 @@ public getKeyCriteriaTimestrOrder_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimestrOrder_args(getKeyCriteriaTimestrOrder_args other) { + public getKeyCriteriaTimestrPage_args(getKeyCriteriaTimestrPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -526112,8 +525090,8 @@ public getKeyCriteriaTimestrOrder_args(getKeyCriteriaTimestrOrder_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -526127,8 +525105,8 @@ public getKeyCriteriaTimestrOrder_args(getKeyCriteriaTimestrOrder_args other) { } @Override - public getKeyCriteriaTimestrOrder_args deepCopy() { - return new getKeyCriteriaTimestrOrder_args(this); + public getKeyCriteriaTimestrPage_args deepCopy() { + return new getKeyCriteriaTimestrPage_args(this); } @Override @@ -526136,7 +525114,7 @@ public void clear() { this.key = null; this.criteria = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -526147,7 +525125,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -526172,7 +525150,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaTimestrOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaTimestrPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -526197,7 +525175,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyCriteriaTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyCriteriaTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -526218,27 +525196,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyCriteriaTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyCriteriaTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -526247,7 +525225,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -526272,7 +525250,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -526297,7 +525275,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -526344,11 +525322,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -526392,8 +525370,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -526422,8 +525400,8 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -526436,12 +525414,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimestrOrder_args) - return this.equals((getKeyCriteriaTimestrOrder_args)that); + if (that instanceof getKeyCriteriaTimestrPage_args) + return this.equals((getKeyCriteriaTimestrPage_args)that); return false; } - public boolean equals(getKeyCriteriaTimestrOrder_args that) { + public boolean equals(getKeyCriteriaTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -526474,12 +525452,12 @@ public boolean equals(getKeyCriteriaTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -526529,9 +525507,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -526549,7 +525527,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimestrOrder_args other) { + public int compareTo(getKeyCriteriaTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -526586,12 +525564,12 @@ public int compareTo(getKeyCriteriaTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -526647,7 +525625,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrPage_args("); boolean first = true; sb.append("key:"); @@ -526674,11 +525652,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -526715,8 +525693,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -526742,17 +525720,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrOrder_argsStandardScheme getScheme() { - return new getKeyCriteriaTimestrOrder_argsStandardScheme(); + public getKeyCriteriaTimestrPage_argsStandardScheme getScheme() { + return new getKeyCriteriaTimestrPage_argsStandardScheme(); } } - private static class getKeyCriteriaTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -526787,11 +525765,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -526834,7 +525812,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -526853,9 +525831,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -526879,17 +525857,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrOrder_argsTupleScheme getScheme() { - return new getKeyCriteriaTimestrOrder_argsTupleScheme(); + public getKeyCriteriaTimestrPage_argsTupleScheme getScheme() { + return new getKeyCriteriaTimestrPage_argsTupleScheme(); } } - private static class getKeyCriteriaTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -526901,7 +525879,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -526923,8 +525901,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -526938,7 +525916,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -526955,9 +525933,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimest struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -526981,8 +525959,8 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrOrder_result"); + public static class getKeyCriteriaTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -526990,8 +525968,8 @@ public static class getKeyCriteriaTimestrOrder_result implements org.apache.thri private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -527090,13 +526068,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrPage_result.class, metaDataMap); } - public getKeyCriteriaTimestrOrder_result() { + public getKeyCriteriaTimestrPage_result() { } - public getKeyCriteriaTimestrOrder_result( + public getKeyCriteriaTimestrPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -527114,7 +526092,7 @@ public getKeyCriteriaTimestrOrder_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimestrOrder_result(getKeyCriteriaTimestrOrder_result other) { + public getKeyCriteriaTimestrPage_result(getKeyCriteriaTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -527145,8 +526123,8 @@ public getKeyCriteriaTimestrOrder_result(getKeyCriteriaTimestrOrder_result other } @Override - public getKeyCriteriaTimestrOrder_result deepCopy() { - return new getKeyCriteriaTimestrOrder_result(this); + public getKeyCriteriaTimestrPage_result deepCopy() { + return new getKeyCriteriaTimestrPage_result(this); } @Override @@ -527174,7 +526152,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -527199,7 +526177,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -527224,7 +526202,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -527249,7 +526227,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCriteriaTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCriteriaTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -527274,7 +526252,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCriteriaTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCriteriaTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -527387,12 +526365,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimestrOrder_result) - return this.equals((getKeyCriteriaTimestrOrder_result)that); + if (that instanceof getKeyCriteriaTimestrPage_result) + return this.equals((getKeyCriteriaTimestrPage_result)that); return false; } - public boolean equals(getKeyCriteriaTimestrOrder_result that) { + public boolean equals(getKeyCriteriaTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -527474,7 +526452,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimestrOrder_result other) { + public int compareTo(getKeyCriteriaTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -527551,7 +526529,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -527618,17 +526596,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrOrder_resultStandardScheme getScheme() { - return new getKeyCriteriaTimestrOrder_resultStandardScheme(); + public getKeyCriteriaTimestrPage_resultStandardScheme getScheme() { + return new getKeyCriteriaTimestrPage_resultStandardScheme(); } } - private static class getKeyCriteriaTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -527641,16 +526619,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5706 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5706.size); - long _key5707; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5708; - for (int _i5709 = 0; _i5709 < _map5706.size; ++_i5709) + org.apache.thrift.protocol.TMap _map5696 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5696.size); + long _key5697; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5698; + for (int _i5699 = 0; _i5699 < _map5696.size; ++_i5699) { - _key5707 = iprot.readI64(); - _val5708 = new com.cinchapi.concourse.thrift.TObject(); - _val5708.read(iprot); - struct.success.put(_key5707, _val5708); + _key5697 = iprot.readI64(); + _val5698 = new com.cinchapi.concourse.thrift.TObject(); + _val5698.read(iprot); + struct.success.put(_key5697, _val5698); } iprot.readMapEnd(); } @@ -527707,7 +526685,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -527715,10 +526693,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5710 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5700 : struct.success.entrySet()) { - oprot.writeI64(_iter5710.getKey()); - _iter5710.getValue().write(oprot); + oprot.writeI64(_iter5700.getKey()); + _iter5700.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -527750,17 +526728,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrOrder_resultTupleScheme getScheme() { - return new getKeyCriteriaTimestrOrder_resultTupleScheme(); + public getKeyCriteriaTimestrPage_resultTupleScheme getScheme() { + return new getKeyCriteriaTimestrPage_resultTupleScheme(); } } - private static class getKeyCriteriaTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -527782,10 +526760,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5711 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5701 : struct.success.entrySet()) { - oprot.writeI64(_iter5711.getKey()); - _iter5711.getValue().write(oprot); + oprot.writeI64(_iter5701.getKey()); + _iter5701.getValue().write(oprot); } } } @@ -527804,21 +526782,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5712 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5712.size); - long _key5713; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5714; - for (int _i5715 = 0; _i5715 < _map5712.size; ++_i5715) + org.apache.thrift.protocol.TMap _map5702 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5702.size); + long _key5703; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5704; + for (int _i5705 = 0; _i5705 < _map5702.size; ++_i5705) { - _key5713 = iprot.readI64(); - _val5714 = new com.cinchapi.concourse.thrift.TObject(); - _val5714.read(iprot); - struct.success.put(_key5713, _val5714); + _key5703 = iprot.readI64(); + _val5704 = new com.cinchapi.concourse.thrift.TObject(); + _val5704.read(iprot); + struct.success.put(_key5703, _val5704); } } struct.setSuccessIsSet(true); @@ -527851,26 +526829,24 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrOrderPage_args"); + public static class getKeyCriteriaTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -527881,10 +526857,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -527908,13 +526883,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -527970,8 +526943,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -527979,18 +526950,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrOrder_args.class, metaDataMap); } - public getKeyCriteriaTimestrOrderPage_args() { + public getKeyCriteriaTimestrOrder_args() { } - public getKeyCriteriaTimestrOrderPage_args( + public getKeyCriteriaTimestrOrder_args( java.lang.String key, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -528000,7 +526970,6 @@ public getKeyCriteriaTimestrOrderPage_args( this.criteria = criteria; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -528009,7 +526978,7 @@ public getKeyCriteriaTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimestrOrderPage_args(getKeyCriteriaTimestrOrderPage_args other) { + public getKeyCriteriaTimestrOrder_args(getKeyCriteriaTimestrOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -528022,9 +526991,6 @@ public getKeyCriteriaTimestrOrderPage_args(getKeyCriteriaTimestrOrderPage_args o if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -528037,8 +527003,8 @@ public getKeyCriteriaTimestrOrderPage_args(getKeyCriteriaTimestrOrderPage_args o } @Override - public getKeyCriteriaTimestrOrderPage_args deepCopy() { - return new getKeyCriteriaTimestrOrderPage_args(this); + public getKeyCriteriaTimestrOrder_args deepCopy() { + return new getKeyCriteriaTimestrOrder_args(this); } @Override @@ -528047,7 +527013,6 @@ public void clear() { this.criteria = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -528058,7 +527023,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCriteriaTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -528083,7 +527048,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeyCriteriaTimestrOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeyCriteriaTimestrOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -528108,7 +527073,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyCriteriaTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyCriteriaTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -528133,7 +527098,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyCriteriaTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyCriteriaTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -528153,37 +527118,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCriteriaTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCriteriaTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -528208,7 +527148,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCriteriaTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -528233,7 +527173,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCriteriaTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -528288,14 +527228,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -528339,9 +527271,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -528371,8 +527300,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -528385,12 +527312,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimestrOrderPage_args) - return this.equals((getKeyCriteriaTimestrOrderPage_args)that); + if (that instanceof getKeyCriteriaTimestrOrder_args) + return this.equals((getKeyCriteriaTimestrOrder_args)that); return false; } - public boolean equals(getKeyCriteriaTimestrOrderPage_args that) { + public boolean equals(getKeyCriteriaTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -528432,15 +527359,6 @@ public boolean equals(getKeyCriteriaTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -528491,10 +527409,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -528511,7 +527425,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimestrOrderPage_args other) { + public int compareTo(getKeyCriteriaTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -528558,16 +527472,6 @@ public int compareTo(getKeyCriteriaTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -528619,7 +527523,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrOrder_args("); boolean first = true; sb.append("key:"); @@ -528654,14 +527558,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -528698,9 +527594,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -528725,17 +527618,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrOrderPage_argsStandardScheme getScheme() { - return new getKeyCriteriaTimestrOrderPage_argsStandardScheme(); + public getKeyCriteriaTimestrOrder_argsStandardScheme getScheme() { + return new getKeyCriteriaTimestrOrder_argsStandardScheme(); } } - private static class getKeyCriteriaTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -528779,16 +527672,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -528797,7 +527681,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -528806,7 +527690,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -528826,7 +527710,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -528850,11 +527734,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -528876,17 +527755,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrOrderPage_argsTupleScheme getScheme() { - return new getKeyCriteriaTimestrOrderPage_argsTupleScheme(); + public getKeyCriteriaTimestrOrder_argsTupleScheme getScheme() { + return new getKeyCriteriaTimestrOrder_argsTupleScheme(); } } - private static class getKeyCriteriaTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -528901,19 +527780,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -528926,9 +527802,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -528941,9 +527814,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -528963,21 +527836,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimest struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -528989,8 +527857,8 @@ private static S scheme(org.apache. } } - public static class getKeyCriteriaTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrOrderPage_result"); + public static class getKeyCriteriaTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -528998,8 +527866,8 @@ public static class getKeyCriteriaTimestrOrderPage_result implements org.apache. private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -529098,13 +527966,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrOrder_result.class, metaDataMap); } - public getKeyCriteriaTimestrOrderPage_result() { + public getKeyCriteriaTimestrOrder_result() { } - public getKeyCriteriaTimestrOrderPage_result( + public getKeyCriteriaTimestrOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -529122,7 +527990,7 @@ public getKeyCriteriaTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyCriteriaTimestrOrderPage_result(getKeyCriteriaTimestrOrderPage_result other) { + public getKeyCriteriaTimestrOrder_result(getKeyCriteriaTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -529153,8 +528021,8 @@ public getKeyCriteriaTimestrOrderPage_result(getKeyCriteriaTimestrOrderPage_resu } @Override - public getKeyCriteriaTimestrOrderPage_result deepCopy() { - return new getKeyCriteriaTimestrOrderPage_result(this); + public getKeyCriteriaTimestrOrder_result deepCopy() { + return new getKeyCriteriaTimestrOrder_result(this); } @Override @@ -529182,7 +528050,7 @@ public java.util.Map getSu return this.success; } - public getKeyCriteriaTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -529207,7 +528075,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCriteriaTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -529232,7 +528100,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCriteriaTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -529257,7 +528125,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCriteriaTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCriteriaTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -529282,7 +528150,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCriteriaTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCriteriaTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -529395,12 +528263,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCriteriaTimestrOrderPage_result) - return this.equals((getKeyCriteriaTimestrOrderPage_result)that); + if (that instanceof getKeyCriteriaTimestrOrder_result) + return this.equals((getKeyCriteriaTimestrOrder_result)that); return false; } - public boolean equals(getKeyCriteriaTimestrOrderPage_result that) { + public boolean equals(getKeyCriteriaTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -529482,7 +528350,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCriteriaTimestrOrderPage_result other) { + public int compareTo(getKeyCriteriaTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -529559,7 +528427,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -529626,17 +528494,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCriteriaTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrOrderPage_resultStandardScheme getScheme() { - return new getKeyCriteriaTimestrOrderPage_resultStandardScheme(); + public getKeyCriteriaTimestrOrder_resultStandardScheme getScheme() { + return new getKeyCriteriaTimestrOrder_resultStandardScheme(); } } - private static class getKeyCriteriaTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -529649,16 +528517,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5716 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5716.size); - long _key5717; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5718; - for (int _i5719 = 0; _i5719 < _map5716.size; ++_i5719) + org.apache.thrift.protocol.TMap _map5706 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5706.size); + long _key5707; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5708; + for (int _i5709 = 0; _i5709 < _map5706.size; ++_i5709) { - _key5717 = iprot.readI64(); - _val5718 = new com.cinchapi.concourse.thrift.TObject(); - _val5718.read(iprot); - struct.success.put(_key5717, _val5718); + _key5707 = iprot.readI64(); + _val5708 = new com.cinchapi.concourse.thrift.TObject(); + _val5708.read(iprot); + struct.success.put(_key5707, _val5708); } iprot.readMapEnd(); } @@ -529715,7 +528583,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -529723,10 +528591,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5720 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5710 : struct.success.entrySet()) { - oprot.writeI64(_iter5720.getKey()); - _iter5720.getValue().write(oprot); + oprot.writeI64(_iter5710.getKey()); + _iter5710.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -529758,17 +528626,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTime } - private static class getKeyCriteriaTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCriteriaTimestrOrderPage_resultTupleScheme getScheme() { - return new getKeyCriteriaTimestrOrderPage_resultTupleScheme(); + public getKeyCriteriaTimestrOrder_resultTupleScheme getScheme() { + return new getKeyCriteriaTimestrOrder_resultTupleScheme(); } } - private static class getKeyCriteriaTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -529790,10 +528658,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5721 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5711 : struct.success.entrySet()) { - oprot.writeI64(_iter5721.getKey()); - _iter5721.getValue().write(oprot); + oprot.writeI64(_iter5711.getKey()); + _iter5711.getValue().write(oprot); } } } @@ -529812,21 +528680,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5722 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5722.size); - long _key5723; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5724; - for (int _i5725 = 0; _i5725 < _map5722.size; ++_i5725) + org.apache.thrift.protocol.TMap _map5712 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5712.size); + long _key5713; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5714; + for (int _i5715 = 0; _i5715 < _map5712.size; ++_i5715) { - _key5723 = iprot.readI64(); - _val5724 = new com.cinchapi.concourse.thrift.TObject(); - _val5724.read(iprot); - struct.success.put(_key5723, _val5724); + _key5713 = iprot.readI64(); + _val5714 = new com.cinchapi.concourse.thrift.TObject(); + _val5714.read(iprot); + struct.success.put(_key5713, _val5714); } } struct.setSuccessIsSet(true); @@ -529859,22 +528727,26 @@ private static S scheme(org.apache. } } - public static class getKeyCclTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTime_args"); + public static class getKeyCriteriaTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCriteriaTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCriteriaTimestrOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -529882,11 +528754,13 @@ public static class getKeyCclTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -529904,15 +528778,19 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEY return KEY; - case 2: // CCL - return CCL; + case 2: // CRITERIA + return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -529957,17 +528835,19 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -529975,25 +528855,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrOrderPage_args.class, metaDataMap); } - public getKeyCclTime_args() { + public getKeyCriteriaTimestrOrderPage_args() { } - public getKeyCclTime_args( + public getKeyCriteriaTimestrOrderPage_args( java.lang.String key, - java.lang.String ccl, - long timestamp, + com.cinchapi.concourse.thrift.TCriteria criteria, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.key = key; - this.ccl = ccl; + this.criteria = criteria; this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -530002,15 +528885,22 @@ public getKeyCclTime_args( /** * Performs a deep copy on other. */ - public getKeyCclTime_args(getKeyCclTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public getKeyCriteriaTimestrOrderPage_args(getKeyCriteriaTimestrOrderPage_args other) { if (other.isSetKey()) { this.key = other.key; } - if (other.isSetCcl()) { - this.ccl = other.ccl; + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -530023,16 +528913,17 @@ public getKeyCclTime_args(getKeyCclTime_args other) { } @Override - public getKeyCclTime_args deepCopy() { - return new getKeyCclTime_args(this); + public getKeyCriteriaTimestrOrderPage_args deepCopy() { + return new getKeyCriteriaTimestrOrderPage_args(this); } @Override public void clear() { this.key = null; - this.ccl = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.criteria = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -530043,7 +528934,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCriteriaTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -530064,51 +528955,103 @@ public void setKeyIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public getKeyCclTime_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public getKeyCriteriaTimestrOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyCclTime_args setTimestamp(long timestamp) { + public getKeyCriteriaTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeyCriteriaTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyCriteriaTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -530116,7 +529059,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCriteriaTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -530141,7 +529084,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCriteriaTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -530166,7 +529109,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCriteriaTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -530197,11 +529140,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); } break; @@ -530209,7 +529152,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -530247,12 +529206,18 @@ public java.lang.Object getFieldValue(_Fields field) { case KEY: return getKey(); - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -530276,10 +529241,14 @@ public boolean isSet(_Fields field) { switch (field) { case KEY: return isSetKey(); - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -530292,12 +529261,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTime_args) - return this.equals((getKeyCclTime_args)that); + if (that instanceof getKeyCriteriaTimestrOrderPage_args) + return this.equals((getKeyCriteriaTimestrOrderPage_args)that); return false; } - public boolean equals(getKeyCclTime_args that) { + public boolean equals(getKeyCriteriaTimestrOrderPage_args that) { if (that == null) return false; if (this == that) @@ -530312,21 +529281,39 @@ public boolean equals(getKeyCclTime_args that) { return false; } - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -530368,11 +529355,21 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -530390,7 +529387,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTime_args other) { + public int compareTo(getKeyCriteriaTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -530407,12 +529404,12 @@ public int compareTo(getKeyCclTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); if (lastComparison != 0) { return lastComparison; } @@ -530427,6 +529424,26 @@ public int compareTo(getKeyCclTime_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -530478,7 +529495,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrOrderPage_args("); boolean first = true; sb.append("key:"); @@ -530489,16 +529506,36 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); } first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -530531,6 +529568,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -530549,25 +529595,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeyCclTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTime_argsStandardScheme getScheme() { - return new getKeyCclTime_argsStandardScheme(); + public getKeyCriteriaTimestrOrderPage_argsStandardScheme getScheme() { + return new getKeyCriteriaTimestrOrderPage_argsStandardScheme(); } } - private static class getKeyCclTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -530585,23 +529629,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 2: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -530610,7 +529673,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -530619,7 +529682,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -530639,7 +529702,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -530648,14 +529711,26 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTime_args oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -530677,46 +529752,58 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTime_args } - private static class getKeyCclTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTime_argsTupleScheme getScheme() { - return new getKeyCclTime_argsTupleScheme(); + public getKeyCriteriaTimestrOrderPage_argsTupleScheme getScheme() { + return new getKeyCriteriaTimestrOrderPage_argsTupleScheme(); } } - private static class getKeyCclTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(1); } if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -530730,32 +529817,43 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -530767,8 +529865,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTime_result"); + public static class getKeyCriteriaTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCriteriaTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -530776,8 +529874,8 @@ public static class getKeyCclTime_result implements org.apache.thrift.TBase success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -530876,13 +529974,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCriteriaTimestrOrderPage_result.class, metaDataMap); } - public getKeyCclTime_result() { + public getKeyCriteriaTimestrOrderPage_result() { } - public getKeyCclTime_result( + public getKeyCriteriaTimestrOrderPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -530900,7 +529998,7 @@ public getKeyCclTime_result( /** * Performs a deep copy on other. */ - public getKeyCclTime_result(getKeyCclTime_result other) { + public getKeyCriteriaTimestrOrderPage_result(getKeyCriteriaTimestrOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -530931,8 +530029,8 @@ public getKeyCclTime_result(getKeyCclTime_result other) { } @Override - public getKeyCclTime_result deepCopy() { - return new getKeyCclTime_result(this); + public getKeyCriteriaTimestrOrderPage_result deepCopy() { + return new getKeyCriteriaTimestrOrderPage_result(this); } @Override @@ -530960,7 +530058,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCriteriaTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -530985,7 +530083,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCriteriaTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -531010,7 +530108,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCriteriaTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -531035,7 +530133,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCriteriaTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -531060,7 +530158,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCriteriaTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -531173,12 +530271,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTime_result) - return this.equals((getKeyCclTime_result)that); + if (that instanceof getKeyCriteriaTimestrOrderPage_result) + return this.equals((getKeyCriteriaTimestrOrderPage_result)that); return false; } - public boolean equals(getKeyCclTime_result that) { + public boolean equals(getKeyCriteriaTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -531260,7 +530358,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTime_result other) { + public int compareTo(getKeyCriteriaTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -531337,7 +530435,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCriteriaTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -531404,17 +530502,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTime_resultStandardScheme getScheme() { - return new getKeyCclTime_resultStandardScheme(); + public getKeyCriteriaTimestrOrderPage_resultStandardScheme getScheme() { + return new getKeyCriteriaTimestrOrderPage_resultStandardScheme(); } } - private static class getKeyCclTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCriteriaTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -531427,16 +530525,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5726 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5726.size); - long _key5727; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5728; - for (int _i5729 = 0; _i5729 < _map5726.size; ++_i5729) + org.apache.thrift.protocol.TMap _map5716 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5716.size); + long _key5717; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5718; + for (int _i5719 = 0; _i5719 < _map5716.size; ++_i5719) { - _key5727 = iprot.readI64(); - _val5728 = new com.cinchapi.concourse.thrift.TObject(); - _val5728.read(iprot); - struct.success.put(_key5727, _val5728); + _key5717 = iprot.readI64(); + _val5718 = new com.cinchapi.concourse.thrift.TObject(); + _val5718.read(iprot); + struct.success.put(_key5717, _val5718); } iprot.readMapEnd(); } @@ -531493,7 +530591,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -531501,10 +530599,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTime_resu oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5730 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5720 : struct.success.entrySet()) { - oprot.writeI64(_iter5730.getKey()); - _iter5730.getValue().write(oprot); + oprot.writeI64(_iter5720.getKey()); + _iter5720.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -531536,17 +530634,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTime_resu } - private static class getKeyCclTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCriteriaTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTime_resultTupleScheme getScheme() { - return new getKeyCclTime_resultTupleScheme(); + public getKeyCriteriaTimestrOrderPage_resultTupleScheme getScheme() { + return new getKeyCriteriaTimestrOrderPage_resultTupleScheme(); } } - private static class getKeyCclTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCriteriaTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -531568,10 +530666,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5731 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5721 : struct.success.entrySet()) { - oprot.writeI64(_iter5731.getKey()); - _iter5731.getValue().write(oprot); + oprot.writeI64(_iter5721.getKey()); + _iter5721.getValue().write(oprot); } } } @@ -531590,21 +530688,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5732 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5732.size); - long _key5733; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5734; - for (int _i5735 = 0; _i5735 < _map5732.size; ++_i5735) + org.apache.thrift.protocol.TMap _map5722 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5722.size); + long _key5723; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5724; + for (int _i5725 = 0; _i5725 < _map5722.size; ++_i5725) { - _key5733 = iprot.readI64(); - _val5734 = new com.cinchapi.concourse.thrift.TObject(); - _val5734.read(iprot); - struct.success.put(_key5733, _val5734); + _key5723 = iprot.readI64(); + _val5724 = new com.cinchapi.concourse.thrift.TObject(); + _val5724.read(iprot); + struct.success.put(_key5723, _val5724); } } struct.setSuccessIsSet(true); @@ -531637,24 +530735,22 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimePage_args"); + public static class getKeyCclTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -531664,10 +530760,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -531689,13 +530784,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -531751,8 +530844,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -531760,17 +530851,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTime_args.class, metaDataMap); } - public getKeyCclTimePage_args() { + public getKeyCclTime_args() { } - public getKeyCclTimePage_args( + public getKeyCclTime_args( java.lang.String key, java.lang.String ccl, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -531780,7 +530870,6 @@ public getKeyCclTimePage_args( this.ccl = ccl; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -531789,7 +530878,7 @@ public getKeyCclTimePage_args( /** * Performs a deep copy on other. */ - public getKeyCclTimePage_args(getKeyCclTimePage_args other) { + public getKeyCclTime_args(getKeyCclTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -531798,9 +530887,6 @@ public getKeyCclTimePage_args(getKeyCclTimePage_args other) { this.ccl = other.ccl; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -531813,8 +530899,8 @@ public getKeyCclTimePage_args(getKeyCclTimePage_args other) { } @Override - public getKeyCclTimePage_args deepCopy() { - return new getKeyCclTimePage_args(this); + public getKeyCclTime_args deepCopy() { + return new getKeyCclTime_args(this); } @Override @@ -531823,7 +530909,6 @@ public void clear() { this.ccl = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -531834,7 +530919,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -531859,7 +530944,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclTimePage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclTime_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -531883,7 +530968,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyCclTimePage_args setTimestamp(long timestamp) { + public getKeyCclTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -531902,37 +530987,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCclTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -531957,7 +531017,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -531982,7 +531042,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -532029,14 +531089,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -532077,9 +531129,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -532107,8 +531156,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -532121,12 +531168,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimePage_args) - return this.equals((getKeyCclTimePage_args)that); + if (that instanceof getKeyCclTime_args) + return this.equals((getKeyCclTime_args)that); return false; } - public boolean equals(getKeyCclTimePage_args that) { + public boolean equals(getKeyCclTime_args that) { if (that == null) return false; if (this == that) @@ -532159,15 +531206,6 @@ public boolean equals(getKeyCclTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -532212,10 +531250,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -532232,7 +531266,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimePage_args other) { + public int compareTo(getKeyCclTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -532269,16 +531303,6 @@ public int compareTo(getKeyCclTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -532330,7 +531354,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTime_args("); boolean first = true; sb.append("key:"); @@ -532353,14 +531377,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -532391,9 +531407,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -532420,17 +531433,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimePage_argsStandardScheme getScheme() { - return new getKeyCclTimePage_argsStandardScheme(); + public getKeyCclTime_argsStandardScheme getScheme() { + return new getKeyCclTime_argsStandardScheme(); } } - private static class getKeyCclTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -532464,16 +531477,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -532482,7 +531486,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -532491,7 +531495,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -532511,7 +531515,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -532528,11 +531532,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimePage_ oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -532554,17 +531553,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimePage_ } - private static class getKeyCclTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimePage_argsTupleScheme getScheme() { - return new getKeyCclTimePage_argsTupleScheme(); + public getKeyCclTime_argsTupleScheme getScheme() { + return new getKeyCclTime_argsTupleScheme(); } } - private static class getKeyCclTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -532576,19 +531575,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_a if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -532598,9 +531594,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_a if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -532613,9 +531606,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -532629,21 +531622,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_ar struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -532655,8 +531643,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimePage_result"); + public static class getKeyCclTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -532664,8 +531652,8 @@ public static class getKeyCclTimePage_result implements org.apache.thrift.TBase< private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -532764,13 +531752,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTime_result.class, metaDataMap); } - public getKeyCclTimePage_result() { + public getKeyCclTime_result() { } - public getKeyCclTimePage_result( + public getKeyCclTime_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -532788,7 +531776,7 @@ public getKeyCclTimePage_result( /** * Performs a deep copy on other. */ - public getKeyCclTimePage_result(getKeyCclTimePage_result other) { + public getKeyCclTime_result(getKeyCclTime_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -532819,8 +531807,8 @@ public getKeyCclTimePage_result(getKeyCclTimePage_result other) { } @Override - public getKeyCclTimePage_result deepCopy() { - return new getKeyCclTimePage_result(this); + public getKeyCclTime_result deepCopy() { + return new getKeyCclTime_result(this); } @Override @@ -532848,7 +531836,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -532873,7 +531861,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -532898,7 +531886,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -532923,7 +531911,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -532948,7 +531936,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -533061,12 +532049,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimePage_result) - return this.equals((getKeyCclTimePage_result)that); + if (that instanceof getKeyCclTime_result) + return this.equals((getKeyCclTime_result)that); return false; } - public boolean equals(getKeyCclTimePage_result that) { + public boolean equals(getKeyCclTime_result that) { if (that == null) return false; if (this == that) @@ -533148,7 +532136,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimePage_result other) { + public int compareTo(getKeyCclTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -533225,7 +532213,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTime_result("); boolean first = true; sb.append("success:"); @@ -533292,17 +532280,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimePage_resultStandardScheme getScheme() { - return new getKeyCclTimePage_resultStandardScheme(); + public getKeyCclTime_resultStandardScheme getScheme() { + return new getKeyCclTime_resultStandardScheme(); } } - private static class getKeyCclTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -533315,16 +532303,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5736 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5736.size); - long _key5737; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5738; - for (int _i5739 = 0; _i5739 < _map5736.size; ++_i5739) + org.apache.thrift.protocol.TMap _map5726 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5726.size); + long _key5727; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5728; + for (int _i5729 = 0; _i5729 < _map5726.size; ++_i5729) { - _key5737 = iprot.readI64(); - _val5738 = new com.cinchapi.concourse.thrift.TObject(); - _val5738.read(iprot); - struct.success.put(_key5737, _val5738); + _key5727 = iprot.readI64(); + _val5728 = new com.cinchapi.concourse.thrift.TObject(); + _val5728.read(iprot); + struct.success.put(_key5727, _val5728); } iprot.readMapEnd(); } @@ -533381,7 +532369,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -533389,10 +532377,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimePage_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5740 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5730 : struct.success.entrySet()) { - oprot.writeI64(_iter5740.getKey()); - _iter5740.getValue().write(oprot); + oprot.writeI64(_iter5730.getKey()); + _iter5730.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -533424,17 +532412,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimePage_ } - private static class getKeyCclTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimePage_resultTupleScheme getScheme() { - return new getKeyCclTimePage_resultTupleScheme(); + public getKeyCclTime_resultTupleScheme getScheme() { + return new getKeyCclTime_resultTupleScheme(); } } - private static class getKeyCclTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -533456,10 +532444,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5741 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5731 : struct.success.entrySet()) { - oprot.writeI64(_iter5741.getKey()); - _iter5741.getValue().write(oprot); + oprot.writeI64(_iter5731.getKey()); + _iter5731.getValue().write(oprot); } } } @@ -533478,21 +532466,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5742 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5742.size); - long _key5743; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5744; - for (int _i5745 = 0; _i5745 < _map5742.size; ++_i5745) + org.apache.thrift.protocol.TMap _map5732 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5732.size); + long _key5733; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5734; + for (int _i5735 = 0; _i5735 < _map5732.size; ++_i5735) { - _key5743 = iprot.readI64(); - _val5744 = new com.cinchapi.concourse.thrift.TObject(); - _val5744.read(iprot); - struct.success.put(_key5743, _val5744); + _key5733 = iprot.readI64(); + _val5734 = new com.cinchapi.concourse.thrift.TObject(); + _val5734.read(iprot); + struct.success.put(_key5733, _val5734); } } struct.setSuccessIsSet(true); @@ -533525,24 +532513,24 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimeOrder_args"); + public static class getKeyCclTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimePage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -533552,7 +532540,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -533577,8 +532565,8 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -533639,8 +532627,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -533648,17 +532636,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimePage_args.class, metaDataMap); } - public getKeyCclTimeOrder_args() { + public getKeyCclTimePage_args() { } - public getKeyCclTimeOrder_args( + public getKeyCclTimePage_args( java.lang.String key, java.lang.String ccl, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -533668,7 +532656,7 @@ public getKeyCclTimeOrder_args( this.ccl = ccl; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -533677,7 +532665,7 @@ public getKeyCclTimeOrder_args( /** * Performs a deep copy on other. */ - public getKeyCclTimeOrder_args(getKeyCclTimeOrder_args other) { + public getKeyCclTimePage_args(getKeyCclTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -533686,8 +532674,8 @@ public getKeyCclTimeOrder_args(getKeyCclTimeOrder_args other) { this.ccl = other.ccl; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -533701,8 +532689,8 @@ public getKeyCclTimeOrder_args(getKeyCclTimeOrder_args other) { } @Override - public getKeyCclTimeOrder_args deepCopy() { - return new getKeyCclTimeOrder_args(this); + public getKeyCclTimePage_args deepCopy() { + return new getKeyCclTimePage_args(this); } @Override @@ -533711,7 +532699,7 @@ public void clear() { this.ccl = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -533722,7 +532710,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -533747,7 +532735,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclTimeOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclTimePage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -533771,7 +532759,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyCclTimeOrder_args setTimestamp(long timestamp) { + public getKeyCclTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -533791,27 +532779,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyCclTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyCclTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -533820,7 +532808,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -533845,7 +532833,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -533870,7 +532858,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -533917,11 +532905,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -533965,8 +532953,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -533995,8 +532983,8 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -534009,12 +532997,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimeOrder_args) - return this.equals((getKeyCclTimeOrder_args)that); + if (that instanceof getKeyCclTimePage_args) + return this.equals((getKeyCclTimePage_args)that); return false; } - public boolean equals(getKeyCclTimeOrder_args that) { + public boolean equals(getKeyCclTimePage_args that) { if (that == null) return false; if (this == that) @@ -534047,12 +533035,12 @@ public boolean equals(getKeyCclTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -534100,9 +533088,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -534120,7 +533108,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimeOrder_args other) { + public int compareTo(getKeyCclTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -534157,12 +533145,12 @@ public int compareTo(getKeyCclTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -534218,7 +533206,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimePage_args("); boolean first = true; sb.append("key:"); @@ -534241,11 +533229,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -534279,8 +533267,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -534308,17 +533296,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimeOrder_argsStandardScheme getScheme() { - return new getKeyCclTimeOrder_argsStandardScheme(); + public getKeyCclTimePage_argsStandardScheme getScheme() { + return new getKeyCclTimePage_argsStandardScheme(); } } - private static class getKeyCclTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -534352,11 +533340,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrder_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -534399,7 +533387,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -534416,9 +533404,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -534442,17 +533430,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder } - private static class getKeyCclTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimeOrder_argsTupleScheme getScheme() { - return new getKeyCclTimeOrder_argsTupleScheme(); + public getKeyCclTimePage_argsTupleScheme getScheme() { + return new getKeyCclTimePage_argsTupleScheme(); } } - private static class getKeyCclTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -534464,7 +533452,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_ if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -534486,8 +533474,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_ if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -534501,7 +533489,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -534517,9 +533505,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_a struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -534543,8 +533531,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimeOrder_result"); + public static class getKeyCclTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -534552,8 +533540,8 @@ public static class getKeyCclTimeOrder_result implements org.apache.thrift.TBase private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -534652,13 +533640,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimePage_result.class, metaDataMap); } - public getKeyCclTimeOrder_result() { + public getKeyCclTimePage_result() { } - public getKeyCclTimeOrder_result( + public getKeyCclTimePage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -534676,7 +533664,7 @@ public getKeyCclTimeOrder_result( /** * Performs a deep copy on other. */ - public getKeyCclTimeOrder_result(getKeyCclTimeOrder_result other) { + public getKeyCclTimePage_result(getKeyCclTimePage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -534707,8 +533695,8 @@ public getKeyCclTimeOrder_result(getKeyCclTimeOrder_result other) { } @Override - public getKeyCclTimeOrder_result deepCopy() { - return new getKeyCclTimeOrder_result(this); + public getKeyCclTimePage_result deepCopy() { + return new getKeyCclTimePage_result(this); } @Override @@ -534736,7 +533724,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -534761,7 +533749,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -534786,7 +533774,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -534811,7 +533799,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -534836,7 +533824,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -534949,12 +533937,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimeOrder_result) - return this.equals((getKeyCclTimeOrder_result)that); + if (that instanceof getKeyCclTimePage_result) + return this.equals((getKeyCclTimePage_result)that); return false; } - public boolean equals(getKeyCclTimeOrder_result that) { + public boolean equals(getKeyCclTimePage_result that) { if (that == null) return false; if (this == that) @@ -535036,7 +534024,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimeOrder_result other) { + public int compareTo(getKeyCclTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -535113,7 +534101,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimePage_result("); boolean first = true; sb.append("success:"); @@ -535180,17 +534168,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimeOrder_resultStandardScheme getScheme() { - return new getKeyCclTimeOrder_resultStandardScheme(); + public getKeyCclTimePage_resultStandardScheme getScheme() { + return new getKeyCclTimePage_resultStandardScheme(); } } - private static class getKeyCclTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -535203,16 +534191,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrder_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5746 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5746.size); - long _key5747; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5748; - for (int _i5749 = 0; _i5749 < _map5746.size; ++_i5749) + org.apache.thrift.protocol.TMap _map5736 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5736.size); + long _key5737; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5738; + for (int _i5739 = 0; _i5739 < _map5736.size; ++_i5739) { - _key5747 = iprot.readI64(); - _val5748 = new com.cinchapi.concourse.thrift.TObject(); - _val5748.read(iprot); - struct.success.put(_key5747, _val5748); + _key5737 = iprot.readI64(); + _val5738 = new com.cinchapi.concourse.thrift.TObject(); + _val5738.read(iprot); + struct.success.put(_key5737, _val5738); } iprot.readMapEnd(); } @@ -535269,7 +534257,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrder_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -535277,10 +534265,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5750 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5740 : struct.success.entrySet()) { - oprot.writeI64(_iter5750.getKey()); - _iter5750.getValue().write(oprot); + oprot.writeI64(_iter5740.getKey()); + _iter5740.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -535312,17 +534300,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder } - private static class getKeyCclTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimeOrder_resultTupleScheme getScheme() { - return new getKeyCclTimeOrder_resultTupleScheme(); + public getKeyCclTimePage_resultTupleScheme getScheme() { + return new getKeyCclTimePage_resultTupleScheme(); } } - private static class getKeyCclTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -535344,10 +534332,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5751 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5741 : struct.success.entrySet()) { - oprot.writeI64(_iter5751.getKey()); - _iter5751.getValue().write(oprot); + oprot.writeI64(_iter5741.getKey()); + _iter5741.getValue().write(oprot); } } } @@ -535366,21 +534354,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5752 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5752.size); - long _key5753; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5754; - for (int _i5755 = 0; _i5755 < _map5752.size; ++_i5755) + org.apache.thrift.protocol.TMap _map5742 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5742.size); + long _key5743; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5744; + for (int _i5745 = 0; _i5745 < _map5742.size; ++_i5745) { - _key5753 = iprot.readI64(); - _val5754 = new com.cinchapi.concourse.thrift.TObject(); - _val5754.read(iprot); - struct.success.put(_key5753, _val5754); + _key5743 = iprot.readI64(); + _val5744 = new com.cinchapi.concourse.thrift.TObject(); + _val5744.read(iprot); + struct.success.put(_key5743, _val5744); } } struct.setSuccessIsSet(true); @@ -535413,26 +534401,24 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimeOrderPage_args"); + public static class getKeyCclTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -535443,10 +534429,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -535470,13 +534455,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -535534,8 +534517,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -535543,18 +534524,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimeOrder_args.class, metaDataMap); } - public getKeyCclTimeOrderPage_args() { + public getKeyCclTimeOrder_args() { } - public getKeyCclTimeOrderPage_args( + public getKeyCclTimeOrder_args( java.lang.String key, java.lang.String ccl, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -535565,7 +534545,6 @@ public getKeyCclTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -535574,7 +534553,7 @@ public getKeyCclTimeOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyCclTimeOrderPage_args(getKeyCclTimeOrderPage_args other) { + public getKeyCclTimeOrder_args(getKeyCclTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -535586,9 +534565,6 @@ public getKeyCclTimeOrderPage_args(getKeyCclTimeOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -535601,8 +534577,8 @@ public getKeyCclTimeOrderPage_args(getKeyCclTimeOrderPage_args other) { } @Override - public getKeyCclTimeOrderPage_args deepCopy() { - return new getKeyCclTimeOrderPage_args(this); + public getKeyCclTimeOrder_args deepCopy() { + return new getKeyCclTimeOrder_args(this); } @Override @@ -535612,7 +534588,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -535623,7 +534598,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -535648,7 +534623,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclTimeOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclTimeOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -535672,7 +534647,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeyCclTimeOrderPage_args setTimestamp(long timestamp) { + public getKeyCclTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -535696,7 +534671,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyCclTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyCclTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -535716,37 +534691,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCclTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -535771,7 +534721,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -535796,7 +534746,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -535851,14 +534801,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -535902,9 +534844,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -535934,8 +534873,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -535948,12 +534885,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimeOrderPage_args) - return this.equals((getKeyCclTimeOrderPage_args)that); + if (that instanceof getKeyCclTimeOrder_args) + return this.equals((getKeyCclTimeOrder_args)that); return false; } - public boolean equals(getKeyCclTimeOrderPage_args that) { + public boolean equals(getKeyCclTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -535995,15 +534932,6 @@ public boolean equals(getKeyCclTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -536052,10 +534980,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -536072,7 +534996,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimeOrderPage_args other) { + public int compareTo(getKeyCclTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -536119,16 +535043,6 @@ public int compareTo(getKeyCclTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -536180,7 +535094,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimeOrder_args("); boolean first = true; sb.append("key:"); @@ -536211,14 +535125,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -536252,9 +535158,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -536281,17 +535184,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimeOrderPage_argsStandardScheme getScheme() { - return new getKeyCclTimeOrderPage_argsStandardScheme(); + public getKeyCclTimeOrder_argsStandardScheme getScheme() { + return new getKeyCclTimeOrder_argsStandardScheme(); } } - private static class getKeyCclTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -536334,16 +535237,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -536352,7 +535246,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -536361,7 +535255,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderP org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -536381,7 +535275,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -536403,11 +535297,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -536429,17 +535318,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder } - private static class getKeyCclTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimeOrderPage_argsTupleScheme getScheme() { - return new getKeyCclTimeOrderPage_argsTupleScheme(); + public getKeyCclTimeOrder_argsTupleScheme getScheme() { + return new getKeyCclTimeOrder_argsTupleScheme(); } } - private static class getKeyCclTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -536454,19 +535343,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderP if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -536479,9 +535365,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderP if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -536494,9 +535377,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -536515,21 +535398,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPa struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -536541,8 +535419,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimeOrderPage_result"); + public static class getKeyCclTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -536550,8 +535428,8 @@ public static class getKeyCclTimeOrderPage_result implements org.apache.thrift.T private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -536650,13 +535528,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimeOrder_result.class, metaDataMap); } - public getKeyCclTimeOrderPage_result() { + public getKeyCclTimeOrder_result() { } - public getKeyCclTimeOrderPage_result( + public getKeyCclTimeOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -536674,7 +535552,7 @@ public getKeyCclTimeOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyCclTimeOrderPage_result(getKeyCclTimeOrderPage_result other) { + public getKeyCclTimeOrder_result(getKeyCclTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -536705,8 +535583,8 @@ public getKeyCclTimeOrderPage_result(getKeyCclTimeOrderPage_result other) { } @Override - public getKeyCclTimeOrderPage_result deepCopy() { - return new getKeyCclTimeOrderPage_result(this); + public getKeyCclTimeOrder_result deepCopy() { + return new getKeyCclTimeOrder_result(this); } @Override @@ -536734,7 +535612,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -536759,7 +535637,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -536784,7 +535662,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -536809,7 +535687,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -536834,7 +535712,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -536947,12 +535825,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimeOrderPage_result) - return this.equals((getKeyCclTimeOrderPage_result)that); + if (that instanceof getKeyCclTimeOrder_result) + return this.equals((getKeyCclTimeOrder_result)that); return false; } - public boolean equals(getKeyCclTimeOrderPage_result that) { + public boolean equals(getKeyCclTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -537034,7 +535912,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimeOrderPage_result other) { + public int compareTo(getKeyCclTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -537111,7 +535989,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -537178,17 +536056,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimeOrderPage_resultStandardScheme getScheme() { - return new getKeyCclTimeOrderPage_resultStandardScheme(); + public getKeyCclTimeOrder_resultStandardScheme getScheme() { + return new getKeyCclTimeOrder_resultStandardScheme(); } } - private static class getKeyCclTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -537201,16 +536079,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderP case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5756 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5756.size); - long _key5757; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5758; - for (int _i5759 = 0; _i5759 < _map5756.size; ++_i5759) + org.apache.thrift.protocol.TMap _map5746 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5746.size); + long _key5747; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5748; + for (int _i5749 = 0; _i5749 < _map5746.size; ++_i5749) { - _key5757 = iprot.readI64(); - _val5758 = new com.cinchapi.concourse.thrift.TObject(); - _val5758.read(iprot); - struct.success.put(_key5757, _val5758); + _key5747 = iprot.readI64(); + _val5748 = new com.cinchapi.concourse.thrift.TObject(); + _val5748.read(iprot); + struct.success.put(_key5747, _val5748); } iprot.readMapEnd(); } @@ -537267,7 +536145,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderP } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -537275,10 +536153,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5760 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5750 : struct.success.entrySet()) { - oprot.writeI64(_iter5760.getKey()); - _iter5760.getValue().write(oprot); + oprot.writeI64(_iter5750.getKey()); + _iter5750.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -537310,17 +536188,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrder } - private static class getKeyCclTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimeOrderPage_resultTupleScheme getScheme() { - return new getKeyCclTimeOrderPage_resultTupleScheme(); + public getKeyCclTimeOrder_resultTupleScheme getScheme() { + return new getKeyCclTimeOrder_resultTupleScheme(); } } - private static class getKeyCclTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -537342,10 +536220,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderP if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5761 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5751 : struct.success.entrySet()) { - oprot.writeI64(_iter5761.getKey()); - _iter5761.getValue().write(oprot); + oprot.writeI64(_iter5751.getKey()); + _iter5751.getValue().write(oprot); } } } @@ -537364,21 +536242,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderP } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5762 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5762.size); - long _key5763; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5764; - for (int _i5765 = 0; _i5765 < _map5762.size; ++_i5765) + org.apache.thrift.protocol.TMap _map5752 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5752.size); + long _key5753; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5754; + for (int _i5755 = 0; _i5755 < _map5752.size; ++_i5755) { - _key5763 = iprot.readI64(); - _val5764 = new com.cinchapi.concourse.thrift.TObject(); - _val5764.read(iprot); - struct.success.put(_key5763, _val5764); + _key5753 = iprot.readI64(); + _val5754 = new com.cinchapi.concourse.thrift.TObject(); + _val5754.read(iprot); + struct.success.put(_key5753, _val5754); } } struct.setSuccessIsSet(true); @@ -537411,22 +536289,26 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestr_args"); + public static class getKeyCclTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -537436,9 +536318,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -537460,11 +536344,15 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -537509,6 +536397,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -537517,7 +536407,11 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -537525,16 +536419,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimeOrderPage_args.class, metaDataMap); } - public getKeyCclTimestr_args() { + public getKeyCclTimeOrderPage_args() { } - public getKeyCclTimestr_args( + public getKeyCclTimeOrderPage_args( java.lang.String key, java.lang.String ccl, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -537543,6 +536439,9 @@ public getKeyCclTimestr_args( this.key = key; this.ccl = ccl; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -537551,15 +536450,20 @@ public getKeyCclTimestr_args( /** * Performs a deep copy on other. */ - public getKeyCclTimestr_args(getKeyCclTimestr_args other) { + public getKeyCclTimeOrderPage_args(getKeyCclTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -537573,15 +536477,18 @@ public getKeyCclTimestr_args(getKeyCclTimestr_args other) { } @Override - public getKeyCclTimestr_args deepCopy() { - return new getKeyCclTimestr_args(this); + public getKeyCclTimeOrderPage_args deepCopy() { + return new getKeyCclTimeOrderPage_args(this); } @Override public void clear() { this.key = null; this.ccl = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -537592,7 +536499,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -537617,7 +536524,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclTimestr_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclTimeOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -537637,28 +536544,76 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getKeyCclTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyCclTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeyCclTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyCclTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -537667,7 +536622,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -537692,7 +536647,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -537717,7 +536672,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -537760,7 +536715,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -537804,6 +536775,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -537831,6 +536808,10 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -537843,12 +536824,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimestr_args) - return this.equals((getKeyCclTimestr_args)that); + if (that instanceof getKeyCclTimeOrderPage_args) + return this.equals((getKeyCclTimeOrderPage_args)that); return false; } - public boolean equals(getKeyCclTimestr_args that) { + public boolean equals(getKeyCclTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -537872,12 +536853,30 @@ public boolean equals(getKeyCclTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -537923,9 +536922,15 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -537943,7 +536948,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimestr_args other) { + public int compareTo(getKeyCclTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -537980,6 +536985,26 @@ public int compareTo(getKeyCclTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -538031,7 +537056,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimeOrderPage_args("); boolean first = true; sb.append("key:"); @@ -538051,10 +537076,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -538088,6 +537125,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -538106,23 +537149,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeyCclTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestr_argsStandardScheme getScheme() { - return new getKeyCclTimestr_argsStandardScheme(); + public getKeyCclTimeOrderPage_argsStandardScheme getScheme() { + return new getKeyCclTimeOrderPage_argsStandardScheme(); } } - private static class getKeyCclTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -538149,14 +537194,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_ar } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -538165,7 +537228,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -538174,7 +537237,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -538194,7 +537257,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -538208,9 +537271,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestr_a oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -538234,17 +537305,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestr_a } - private static class getKeyCclTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestr_argsTupleScheme getScheme() { - return new getKeyCclTimestr_argsTupleScheme(); + public getKeyCclTimeOrderPage_argsTupleScheme getScheme() { + return new getKeyCclTimeOrderPage_argsTupleScheme(); } } - private static class getKeyCclTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -538256,16 +537327,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_ar if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -538273,7 +537350,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_ar oprot.writeString(struct.ccl); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -538287,9 +537370,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -538299,20 +537382,30 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_arg struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -538324,8 +537417,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestr_result"); + public static class getKeyCclTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -538333,8 +537426,8 @@ public static class getKeyCclTimestr_result implements org.apache.thrift.TBase success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -538433,13 +537526,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimeOrderPage_result.class, metaDataMap); } - public getKeyCclTimestr_result() { + public getKeyCclTimeOrderPage_result() { } - public getKeyCclTimestr_result( + public getKeyCclTimeOrderPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -538457,7 +537550,7 @@ public getKeyCclTimestr_result( /** * Performs a deep copy on other. */ - public getKeyCclTimestr_result(getKeyCclTimestr_result other) { + public getKeyCclTimeOrderPage_result(getKeyCclTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -538488,8 +537581,8 @@ public getKeyCclTimestr_result(getKeyCclTimestr_result other) { } @Override - public getKeyCclTimestr_result deepCopy() { - return new getKeyCclTimestr_result(this); + public getKeyCclTimeOrderPage_result deepCopy() { + return new getKeyCclTimeOrderPage_result(this); } @Override @@ -538517,7 +537610,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -538542,7 +537635,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -538567,7 +537660,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -538592,7 +537685,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -538617,7 +537710,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -538730,12 +537823,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimestr_result) - return this.equals((getKeyCclTimestr_result)that); + if (that instanceof getKeyCclTimeOrderPage_result) + return this.equals((getKeyCclTimeOrderPage_result)that); return false; } - public boolean equals(getKeyCclTimestr_result that) { + public boolean equals(getKeyCclTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -538817,7 +537910,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimestr_result other) { + public int compareTo(getKeyCclTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -538894,7 +537987,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -538961,17 +538054,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestr_resultStandardScheme getScheme() { - return new getKeyCclTimestr_resultStandardScheme(); + public getKeyCclTimeOrderPage_resultStandardScheme getScheme() { + return new getKeyCclTimeOrderPage_resultStandardScheme(); } } - private static class getKeyCclTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -538984,16 +538077,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_re case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5766 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5766.size); - long _key5767; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5768; - for (int _i5769 = 0; _i5769 < _map5766.size; ++_i5769) + org.apache.thrift.protocol.TMap _map5756 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5756.size); + long _key5757; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5758; + for (int _i5759 = 0; _i5759 < _map5756.size; ++_i5759) { - _key5767 = iprot.readI64(); - _val5768 = new com.cinchapi.concourse.thrift.TObject(); - _val5768.read(iprot); - struct.success.put(_key5767, _val5768); + _key5757 = iprot.readI64(); + _val5758 = new com.cinchapi.concourse.thrift.TObject(); + _val5758.read(iprot); + struct.success.put(_key5757, _val5758); } iprot.readMapEnd(); } @@ -539050,7 +538143,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -539058,10 +538151,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestr_r oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5770 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5760 : struct.success.entrySet()) { - oprot.writeI64(_iter5770.getKey()); - _iter5770.getValue().write(oprot); + oprot.writeI64(_iter5760.getKey()); + _iter5760.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -539093,17 +538186,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestr_r } - private static class getKeyCclTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestr_resultTupleScheme getScheme() { - return new getKeyCclTimestr_resultTupleScheme(); + public getKeyCclTimeOrderPage_resultTupleScheme getScheme() { + return new getKeyCclTimeOrderPage_resultTupleScheme(); } } - private static class getKeyCclTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -539125,10 +538218,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_re if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5771 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5761 : struct.success.entrySet()) { - oprot.writeI64(_iter5771.getKey()); - _iter5771.getValue().write(oprot); + oprot.writeI64(_iter5761.getKey()); + _iter5761.getValue().write(oprot); } } } @@ -539147,21 +538240,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5772 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5772.size); - long _key5773; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5774; - for (int _i5775 = 0; _i5775 < _map5772.size; ++_i5775) + org.apache.thrift.protocol.TMap _map5762 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5762.size); + long _key5763; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5764; + for (int _i5765 = 0; _i5765 < _map5762.size; ++_i5765) { - _key5773 = iprot.readI64(); - _val5774 = new com.cinchapi.concourse.thrift.TObject(); - _val5774.read(iprot); - struct.success.put(_key5773, _val5774); + _key5763 = iprot.readI64(); + _val5764 = new com.cinchapi.concourse.thrift.TObject(); + _val5764.read(iprot); + struct.success.put(_key5763, _val5764); } } struct.setSuccessIsSet(true); @@ -539194,24 +538287,22 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrPage_args"); + public static class getKeyCclTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -539221,10 +538312,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -539246,13 +538336,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -539306,8 +538394,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -539315,17 +538401,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestr_args.class, metaDataMap); } - public getKeyCclTimestrPage_args() { + public getKeyCclTimestr_args() { } - public getKeyCclTimestrPage_args( + public getKeyCclTimestr_args( java.lang.String key, java.lang.String ccl, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -539334,7 +538419,6 @@ public getKeyCclTimestrPage_args( this.key = key; this.ccl = ccl; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -539343,7 +538427,7 @@ public getKeyCclTimestrPage_args( /** * Performs a deep copy on other. */ - public getKeyCclTimestrPage_args(getKeyCclTimestrPage_args other) { + public getKeyCclTimestr_args(getKeyCclTimestr_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -539353,9 +538437,6 @@ public getKeyCclTimestrPage_args(getKeyCclTimestrPage_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -539368,8 +538449,8 @@ public getKeyCclTimestrPage_args(getKeyCclTimestrPage_args other) { } @Override - public getKeyCclTimestrPage_args deepCopy() { - return new getKeyCclTimestrPage_args(this); + public getKeyCclTimestr_args deepCopy() { + return new getKeyCclTimestr_args(this); } @Override @@ -539377,7 +538458,6 @@ public void clear() { this.key = null; this.ccl = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -539388,7 +538468,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -539413,7 +538493,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclTimestrPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclTimestr_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -539438,7 +538518,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyCclTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyCclTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -539458,37 +538538,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCclTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -539513,7 +538568,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -539538,7 +538593,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -539585,14 +538640,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -539633,9 +538680,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -539663,8 +538707,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -539677,12 +538719,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimestrPage_args) - return this.equals((getKeyCclTimestrPage_args)that); + if (that instanceof getKeyCclTimestr_args) + return this.equals((getKeyCclTimestr_args)that); return false; } - public boolean equals(getKeyCclTimestrPage_args that) { + public boolean equals(getKeyCclTimestr_args that) { if (that == null) return false; if (this == that) @@ -539715,15 +538757,6 @@ public boolean equals(getKeyCclTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -539770,10 +538803,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -539790,7 +538819,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimestrPage_args other) { + public int compareTo(getKeyCclTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -539827,16 +538856,6 @@ public int compareTo(getKeyCclTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -539888,7 +538907,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestr_args("); boolean first = true; sb.append("key:"); @@ -539915,14 +538934,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -539953,9 +538964,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -539980,17 +538988,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrPage_argsStandardScheme getScheme() { - return new getKeyCclTimestrPage_argsStandardScheme(); + public getKeyCclTimestr_argsStandardScheme getScheme() { + return new getKeyCclTimestr_argsStandardScheme(); } } - private static class getKeyCclTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -540024,16 +539032,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -540042,7 +539041,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -540051,7 +539050,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPag org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -540071,7 +539070,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPag } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -540090,11 +539089,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrPa oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -540116,17 +539110,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrPa } - private static class getKeyCclTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrPage_argsTupleScheme getScheme() { - return new getKeyCclTimestrPage_argsTupleScheme(); + public getKeyCclTimestr_argsTupleScheme getScheme() { + return new getKeyCclTimestr_argsTupleScheme(); } } - private static class getKeyCclTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -540138,19 +539132,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPag if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -540160,9 +539151,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPag if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -540175,9 +539163,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPag } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -540191,21 +539179,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -540217,8 +539200,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrPage_result"); + public static class getKeyCclTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -540226,8 +539209,8 @@ public static class getKeyCclTimestrPage_result implements org.apache.thrift.TBa private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -540326,13 +539309,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestr_result.class, metaDataMap); } - public getKeyCclTimestrPage_result() { + public getKeyCclTimestr_result() { } - public getKeyCclTimestrPage_result( + public getKeyCclTimestr_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -540350,7 +539333,7 @@ public getKeyCclTimestrPage_result( /** * Performs a deep copy on other. */ - public getKeyCclTimestrPage_result(getKeyCclTimestrPage_result other) { + public getKeyCclTimestr_result(getKeyCclTimestr_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -540381,8 +539364,8 @@ public getKeyCclTimestrPage_result(getKeyCclTimestrPage_result other) { } @Override - public getKeyCclTimestrPage_result deepCopy() { - return new getKeyCclTimestrPage_result(this); + public getKeyCclTimestr_result deepCopy() { + return new getKeyCclTimestr_result(this); } @Override @@ -540410,7 +539393,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -540435,7 +539418,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -540460,7 +539443,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -540485,7 +539468,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -540510,7 +539493,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -540623,12 +539606,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimestrPage_result) - return this.equals((getKeyCclTimestrPage_result)that); + if (that instanceof getKeyCclTimestr_result) + return this.equals((getKeyCclTimestr_result)that); return false; } - public boolean equals(getKeyCclTimestrPage_result that) { + public boolean equals(getKeyCclTimestr_result that) { if (that == null) return false; if (this == that) @@ -540710,7 +539693,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimestrPage_result other) { + public int compareTo(getKeyCclTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -540787,7 +539770,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestr_result("); boolean first = true; sb.append("success:"); @@ -540854,17 +539837,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrPage_resultStandardScheme getScheme() { - return new getKeyCclTimestrPage_resultStandardScheme(); + public getKeyCclTimestr_resultStandardScheme getScheme() { + return new getKeyCclTimestr_resultStandardScheme(); } } - private static class getKeyCclTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -540877,16 +539860,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPag case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5776 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5776.size); - long _key5777; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5778; - for (int _i5779 = 0; _i5779 < _map5776.size; ++_i5779) + org.apache.thrift.protocol.TMap _map5766 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5766.size); + long _key5767; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5768; + for (int _i5769 = 0; _i5769 < _map5766.size; ++_i5769) { - _key5777 = iprot.readI64(); - _val5778 = new com.cinchapi.concourse.thrift.TObject(); - _val5778.read(iprot); - struct.success.put(_key5777, _val5778); + _key5767 = iprot.readI64(); + _val5768 = new com.cinchapi.concourse.thrift.TObject(); + _val5768.read(iprot); + struct.success.put(_key5767, _val5768); } iprot.readMapEnd(); } @@ -540943,7 +539926,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPag } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -540951,10 +539934,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrPa oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5780 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5770 : struct.success.entrySet()) { - oprot.writeI64(_iter5780.getKey()); - _iter5780.getValue().write(oprot); + oprot.writeI64(_iter5770.getKey()); + _iter5770.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -540986,17 +539969,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrPa } - private static class getKeyCclTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrPage_resultTupleScheme getScheme() { - return new getKeyCclTimestrPage_resultTupleScheme(); + public getKeyCclTimestr_resultTupleScheme getScheme() { + return new getKeyCclTimestr_resultTupleScheme(); } } - private static class getKeyCclTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -541018,10 +540001,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPag if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5781 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5771 : struct.success.entrySet()) { - oprot.writeI64(_iter5781.getKey()); - _iter5781.getValue().write(oprot); + oprot.writeI64(_iter5771.getKey()); + _iter5771.getValue().write(oprot); } } } @@ -541040,21 +540023,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPag } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5782 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5782.size); - long _key5783; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5784; - for (int _i5785 = 0; _i5785 < _map5782.size; ++_i5785) + org.apache.thrift.protocol.TMap _map5772 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5772.size); + long _key5773; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5774; + for (int _i5775 = 0; _i5775 < _map5772.size; ++_i5775) { - _key5783 = iprot.readI64(); - _val5784 = new com.cinchapi.concourse.thrift.TObject(); - _val5784.read(iprot); - struct.success.put(_key5783, _val5784); + _key5773 = iprot.readI64(); + _val5774 = new com.cinchapi.concourse.thrift.TObject(); + _val5774.read(iprot); + struct.success.put(_key5773, _val5774); } } struct.setSuccessIsSet(true); @@ -541087,24 +540070,24 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrOrder_args"); + public static class getKeyCclTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -541114,7 +540097,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -541139,8 +540122,8 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -541199,8 +540182,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -541208,17 +540191,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrPage_args.class, metaDataMap); } - public getKeyCclTimestrOrder_args() { + public getKeyCclTimestrPage_args() { } - public getKeyCclTimestrOrder_args( + public getKeyCclTimestrPage_args( java.lang.String key, java.lang.String ccl, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -541227,7 +540210,7 @@ public getKeyCclTimestrOrder_args( this.key = key; this.ccl = ccl; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -541236,7 +540219,7 @@ public getKeyCclTimestrOrder_args( /** * Performs a deep copy on other. */ - public getKeyCclTimestrOrder_args(getKeyCclTimestrOrder_args other) { + public getKeyCclTimestrPage_args(getKeyCclTimestrPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -541246,8 +540229,8 @@ public getKeyCclTimestrOrder_args(getKeyCclTimestrOrder_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -541261,8 +540244,8 @@ public getKeyCclTimestrOrder_args(getKeyCclTimestrOrder_args other) { } @Override - public getKeyCclTimestrOrder_args deepCopy() { - return new getKeyCclTimestrOrder_args(this); + public getKeyCclTimestrPage_args deepCopy() { + return new getKeyCclTimestrPage_args(this); } @Override @@ -541270,7 +540253,7 @@ public void clear() { this.key = null; this.ccl = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -541281,7 +540264,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -541306,7 +540289,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclTimestrOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclTimestrPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -541331,7 +540314,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyCclTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyCclTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -541352,27 +540335,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeyCclTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeyCclTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -541381,7 +540364,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -541406,7 +540389,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -541431,7 +540414,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -541478,11 +540461,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -541526,8 +540509,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -541556,8 +540539,8 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -541570,12 +540553,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimestrOrder_args) - return this.equals((getKeyCclTimestrOrder_args)that); + if (that instanceof getKeyCclTimestrPage_args) + return this.equals((getKeyCclTimestrPage_args)that); return false; } - public boolean equals(getKeyCclTimestrOrder_args that) { + public boolean equals(getKeyCclTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -541608,12 +540591,12 @@ public boolean equals(getKeyCclTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -541663,9 +540646,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -541683,7 +540666,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimestrOrder_args other) { + public int compareTo(getKeyCclTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -541720,12 +540703,12 @@ public int compareTo(getKeyCclTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -541781,7 +540764,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrPage_args("); boolean first = true; sb.append("key:"); @@ -541808,11 +540791,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -541846,8 +540829,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -541873,17 +540856,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrOrder_argsStandardScheme getScheme() { - return new getKeyCclTimestrOrder_argsStandardScheme(); + public getKeyCclTimestrPage_argsStandardScheme getScheme() { + return new getKeyCclTimestrPage_argsStandardScheme(); } } - private static class getKeyCclTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -541917,11 +540900,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -541964,7 +540947,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -541983,9 +540966,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOr oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -542009,17 +540992,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOr } - private static class getKeyCclTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrOrder_argsTupleScheme getScheme() { - return new getKeyCclTimestrOrder_argsTupleScheme(); + public getKeyCclTimestrPage_argsTupleScheme getScheme() { + return new getKeyCclTimestrPage_argsTupleScheme(); } } - private static class getKeyCclTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -542031,7 +541014,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -542053,8 +541036,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -542068,7 +541051,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -542084,9 +541067,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrde struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -542110,8 +541093,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrOrder_result"); + public static class getKeyCclTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -542119,8 +541102,8 @@ public static class getKeyCclTimestrOrder_result implements org.apache.thrift.TB private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -542219,13 +541202,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrPage_result.class, metaDataMap); } - public getKeyCclTimestrOrder_result() { + public getKeyCclTimestrPage_result() { } - public getKeyCclTimestrOrder_result( + public getKeyCclTimestrPage_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -542243,7 +541226,7 @@ public getKeyCclTimestrOrder_result( /** * Performs a deep copy on other. */ - public getKeyCclTimestrOrder_result(getKeyCclTimestrOrder_result other) { + public getKeyCclTimestrPage_result(getKeyCclTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -542274,8 +541257,8 @@ public getKeyCclTimestrOrder_result(getKeyCclTimestrOrder_result other) { } @Override - public getKeyCclTimestrOrder_result deepCopy() { - return new getKeyCclTimestrOrder_result(this); + public getKeyCclTimestrPage_result deepCopy() { + return new getKeyCclTimestrPage_result(this); } @Override @@ -542303,7 +541286,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -542328,7 +541311,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -542353,7 +541336,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -542378,7 +541361,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -542403,7 +541386,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -542516,12 +541499,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimestrOrder_result) - return this.equals((getKeyCclTimestrOrder_result)that); + if (that instanceof getKeyCclTimestrPage_result) + return this.equals((getKeyCclTimestrPage_result)that); return false; } - public boolean equals(getKeyCclTimestrOrder_result that) { + public boolean equals(getKeyCclTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -542603,7 +541586,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimestrOrder_result other) { + public int compareTo(getKeyCclTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -542680,7 +541663,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -542747,17 +541730,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrOrder_resultStandardScheme getScheme() { - return new getKeyCclTimestrOrder_resultStandardScheme(); + public getKeyCclTimestrPage_resultStandardScheme getScheme() { + return new getKeyCclTimestrPage_resultStandardScheme(); } } - private static class getKeyCclTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -542770,16 +541753,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5786 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5786.size); - long _key5787; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5788; - for (int _i5789 = 0; _i5789 < _map5786.size; ++_i5789) + org.apache.thrift.protocol.TMap _map5776 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5776.size); + long _key5777; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5778; + for (int _i5779 = 0; _i5779 < _map5776.size; ++_i5779) { - _key5787 = iprot.readI64(); - _val5788 = new com.cinchapi.concourse.thrift.TObject(); - _val5788.read(iprot); - struct.success.put(_key5787, _val5788); + _key5777 = iprot.readI64(); + _val5778 = new com.cinchapi.concourse.thrift.TObject(); + _val5778.read(iprot); + struct.success.put(_key5777, _val5778); } iprot.readMapEnd(); } @@ -542836,7 +541819,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -542844,10 +541827,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5790 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5780 : struct.success.entrySet()) { - oprot.writeI64(_iter5790.getKey()); - _iter5790.getValue().write(oprot); + oprot.writeI64(_iter5780.getKey()); + _iter5780.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -542879,17 +541862,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOr } - private static class getKeyCclTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrOrder_resultTupleScheme getScheme() { - return new getKeyCclTimestrOrder_resultTupleScheme(); + public getKeyCclTimestrPage_resultTupleScheme getScheme() { + return new getKeyCclTimestrPage_resultTupleScheme(); } } - private static class getKeyCclTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -542911,10 +541894,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5791 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5781 : struct.success.entrySet()) { - oprot.writeI64(_iter5791.getKey()); - _iter5791.getValue().write(oprot); + oprot.writeI64(_iter5781.getKey()); + _iter5781.getValue().write(oprot); } } } @@ -542933,21 +541916,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5792 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5792.size); - long _key5793; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5794; - for (int _i5795 = 0; _i5795 < _map5792.size; ++_i5795) + org.apache.thrift.protocol.TMap _map5782 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5782.size); + long _key5783; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5784; + for (int _i5785 = 0; _i5785 < _map5782.size; ++_i5785) { - _key5793 = iprot.readI64(); - _val5794 = new com.cinchapi.concourse.thrift.TObject(); - _val5794.read(iprot); - struct.success.put(_key5793, _val5794); + _key5783 = iprot.readI64(); + _val5784 = new com.cinchapi.concourse.thrift.TObject(); + _val5784.read(iprot); + struct.success.put(_key5783, _val5784); } } struct.setSuccessIsSet(true); @@ -542980,26 +541963,24 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrOrderPage_args"); + public static class getKeyCclTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -543010,10 +541991,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -543037,13 +542017,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -543099,8 +542077,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -543108,18 +542084,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrOrder_args.class, metaDataMap); } - public getKeyCclTimestrOrderPage_args() { + public getKeyCclTimestrOrder_args() { } - public getKeyCclTimestrOrderPage_args( + public getKeyCclTimestrOrder_args( java.lang.String key, java.lang.String ccl, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -543129,7 +542104,6 @@ public getKeyCclTimestrOrderPage_args( this.ccl = ccl; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -543138,7 +542112,7 @@ public getKeyCclTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public getKeyCclTimestrOrderPage_args(getKeyCclTimestrOrderPage_args other) { + public getKeyCclTimestrOrder_args(getKeyCclTimestrOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -543151,9 +542125,6 @@ public getKeyCclTimestrOrderPage_args(getKeyCclTimestrOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -543166,8 +542137,8 @@ public getKeyCclTimestrOrderPage_args(getKeyCclTimestrOrderPage_args other) { } @Override - public getKeyCclTimestrOrderPage_args deepCopy() { - return new getKeyCclTimestrOrderPage_args(this); + public getKeyCclTimestrOrder_args deepCopy() { + return new getKeyCclTimestrOrder_args(this); } @Override @@ -543176,7 +542147,6 @@ public void clear() { this.ccl = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -543187,7 +542157,7 @@ public java.lang.String getKey() { return this.key; } - public getKeyCclTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public getKeyCclTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -543212,7 +542182,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeyCclTimestrOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeyCclTimestrOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -543237,7 +542207,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeyCclTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeyCclTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -543262,7 +542232,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeyCclTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeyCclTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -543282,37 +542252,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeyCclTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeyCclTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -543337,7 +542282,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeyCclTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -543362,7 +542307,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeyCclTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -543417,14 +542362,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -543468,9 +542405,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -543500,8 +542434,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -543514,12 +542446,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimestrOrderPage_args) - return this.equals((getKeyCclTimestrOrderPage_args)that); + if (that instanceof getKeyCclTimestrOrder_args) + return this.equals((getKeyCclTimestrOrder_args)that); return false; } - public boolean equals(getKeyCclTimestrOrderPage_args that) { + public boolean equals(getKeyCclTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -543561,15 +542493,6 @@ public boolean equals(getKeyCclTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -543620,10 +542543,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -543640,7 +542559,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimestrOrderPage_args other) { + public int compareTo(getKeyCclTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -543687,16 +542606,6 @@ public int compareTo(getKeyCclTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -543748,7 +542657,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrOrder_args("); boolean first = true; sb.append("key:"); @@ -543783,14 +542692,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -543824,9 +542725,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -543851,17 +542749,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrOrderPage_argsStandardScheme getScheme() { - return new getKeyCclTimestrOrderPage_argsStandardScheme(); + public getKeyCclTimestrOrder_argsStandardScheme getScheme() { + return new getKeyCclTimestrOrder_argsStandardScheme(); } } - private static class getKeyCclTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -543904,16 +542802,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -543922,7 +542811,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -543931,7 +542820,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -543951,7 +542840,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -543975,11 +542864,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOr struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -544001,17 +542885,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOr } - private static class getKeyCclTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrOrderPage_argsTupleScheme getScheme() { - return new getKeyCclTimestrOrderPage_argsTupleScheme(); + public getKeyCclTimestrOrder_argsTupleScheme getScheme() { + return new getKeyCclTimestrOrder_argsTupleScheme(); } } - private static class getKeyCclTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -544026,19 +542910,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -544051,9 +542932,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -544066,9 +542944,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -544087,21 +542965,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrde struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -544113,8 +542986,8 @@ private static S scheme(org.apache. } } - public static class getKeyCclTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrOrderPage_result"); + public static class getKeyCclTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -544122,8 +542995,8 @@ public static class getKeyCclTimestrOrderPage_result implements org.apache.thrif private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -544222,13 +543095,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrOrder_result.class, metaDataMap); } - public getKeyCclTimestrOrderPage_result() { + public getKeyCclTimestrOrder_result() { } - public getKeyCclTimestrOrderPage_result( + public getKeyCclTimestrOrder_result( java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -544246,7 +543119,7 @@ public getKeyCclTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public getKeyCclTimestrOrderPage_result(getKeyCclTimestrOrderPage_result other) { + public getKeyCclTimestrOrder_result(getKeyCclTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); for (java.util.Map.Entry other_element : other.success.entrySet()) { @@ -544277,8 +543150,8 @@ public getKeyCclTimestrOrderPage_result(getKeyCclTimestrOrderPage_result other) } @Override - public getKeyCclTimestrOrderPage_result deepCopy() { - return new getKeyCclTimestrOrderPage_result(this); + public getKeyCclTimestrOrder_result deepCopy() { + return new getKeyCclTimestrOrder_result(this); } @Override @@ -544306,7 +543179,7 @@ public java.util.Map getSu return this.success; } - public getKeyCclTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getKeyCclTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -544331,7 +543204,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeyCclTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -544356,7 +543229,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeyCclTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -544381,7 +543254,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeyCclTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeyCclTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -544406,7 +543279,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeyCclTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeyCclTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -544519,12 +543392,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeyCclTimestrOrderPage_result) - return this.equals((getKeyCclTimestrOrderPage_result)that); + if (that instanceof getKeyCclTimestrOrder_result) + return this.equals((getKeyCclTimestrOrder_result)that); return false; } - public boolean equals(getKeyCclTimestrOrderPage_result that) { + public boolean equals(getKeyCclTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -544606,7 +543479,7 @@ public int hashCode() { } @Override - public int compareTo(getKeyCclTimestrOrderPage_result other) { + public int compareTo(getKeyCclTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -544683,7 +543556,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -544750,17 +543623,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeyCclTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrOrderPage_resultStandardScheme getScheme() { - return new getKeyCclTimestrOrderPage_resultStandardScheme(); + public getKeyCclTimestrOrder_resultStandardScheme getScheme() { + return new getKeyCclTimestrOrder_resultStandardScheme(); } } - private static class getKeyCclTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -544773,16 +543646,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5796 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map5796.size); - long _key5797; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5798; - for (int _i5799 = 0; _i5799 < _map5796.size; ++_i5799) + org.apache.thrift.protocol.TMap _map5786 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5786.size); + long _key5787; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5788; + for (int _i5789 = 0; _i5789 < _map5786.size; ++_i5789) { - _key5797 = iprot.readI64(); - _val5798 = new com.cinchapi.concourse.thrift.TObject(); - _val5798.read(iprot); - struct.success.put(_key5797, _val5798); + _key5787 = iprot.readI64(); + _val5788 = new com.cinchapi.concourse.thrift.TObject(); + _val5788.read(iprot); + struct.success.put(_key5787, _val5788); } iprot.readMapEnd(); } @@ -544839,7 +543712,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrd } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -544847,10 +543720,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter5800 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5790 : struct.success.entrySet()) { - oprot.writeI64(_iter5800.getKey()); - _iter5800.getValue().write(oprot); + oprot.writeI64(_iter5790.getKey()); + _iter5790.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -544882,17 +543755,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOr } - private static class getKeyCclTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeyCclTimestrOrderPage_resultTupleScheme getScheme() { - return new getKeyCclTimestrOrderPage_resultTupleScheme(); + public getKeyCclTimestrOrder_resultTupleScheme getScheme() { + return new getKeyCclTimestrOrder_resultTupleScheme(); } } - private static class getKeyCclTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -544914,10 +543787,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter5801 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5791 : struct.success.entrySet()) { - oprot.writeI64(_iter5801.getKey()); - _iter5801.getValue().write(oprot); + oprot.writeI64(_iter5791.getKey()); + _iter5791.getValue().write(oprot); } } } @@ -544936,21 +543809,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrd } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5802 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.LinkedHashMap(2*_map5802.size); - long _key5803; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5804; - for (int _i5805 = 0; _i5805 < _map5802.size; ++_i5805) + org.apache.thrift.protocol.TMap _map5792 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5792.size); + long _key5793; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5794; + for (int _i5795 = 0; _i5795 < _map5792.size; ++_i5795) { - _key5803 = iprot.readI64(); - _val5804 = new com.cinchapi.concourse.thrift.TObject(); - _val5804.read(iprot); - struct.success.put(_key5803, _val5804); + _key5793 = iprot.readI64(); + _val5794 = new com.cinchapi.concourse.thrift.TObject(); + _val5794.read(iprot); + struct.success.put(_key5793, _val5794); } } struct.setSuccessIsSet(true); @@ -544983,31 +543856,40 @@ private static S scheme(org.apache. } } - public static class getKeysCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteria_args"); + public static class getKeyCclTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteria_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteria_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEYS((short)1, "keys"), - CRITERIA((short)2, "criteria"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + KEY((short)1, "key"), + CCL((short)2, "ccl"), + TIMESTAMP((short)3, "timestamp"), + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -545023,15 +543905,21 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEYS - return KEYS; - case 2: // CRITERIA - return CRITERIA; - case 3: // CREDS + case 1: // KEY + return KEY; + case 2: // CCL + return CCL; + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 4: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -545079,11 +543967,16 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -545091,22 +543984,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteria_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrOrderPage_args.class, metaDataMap); } - public getKeysCriteria_args() { + public getKeyCclTimestrOrderPage_args() { } - public getKeysCriteria_args( - java.util.List keys, - com.cinchapi.concourse.thrift.TCriteria criteria, + public getKeyCclTimestrOrderPage_args( + java.lang.String key, + java.lang.String ccl, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; - this.criteria = criteria; + this.key = key; + this.ccl = ccl; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -545115,13 +544014,21 @@ public getKeysCriteria_args( /** * Performs a deep copy on other. */ - public getKeysCriteria_args(getKeysCriteria_args other) { - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + public getKeyCclTimestrOrderPage_args(getKeyCclTimestrOrderPage_args other) { + if (other.isSetKey()) { + this.key = other.key; } - if (other.isSetCriteria()) { - this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + if (other.isSetCcl()) { + this.ccl = other.ccl; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -545135,82 +544042,144 @@ public getKeysCriteria_args(getKeysCriteria_args other) { } @Override - public getKeysCriteria_args deepCopy() { - return new getKeysCriteria_args(this); + public getKeyCclTimestrOrderPage_args deepCopy() { + return new getKeyCclTimestrOrderPage_args(this); } @Override public void clear() { - this.keys = null; - this.criteria = null; + this.key = null; + this.ccl = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); + @org.apache.thrift.annotation.Nullable + public java.lang.String getKey() { + return this.key; + } + + public getKeyCclTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; + return this; + } + + public void unsetKey() { + this.key = null; + } + + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; + } + + public void setKeyIsSet(boolean value) { + if (!value) { + this.key = null; + } } @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); + public java.lang.String getCcl() { + return this.ccl; } - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); + public getKeyCclTimestrOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; + return this; + } + + public void unsetCcl() { + this.ccl = null; + } + + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; + } + + public void setCclIsSet(boolean value) { + if (!value) { + this.ccl = null; } - this.keys.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getTimestamp() { + return this.timestamp; } - public getKeysCriteria_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public getKeyCclTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setKeysIsSet(boolean value) { + public void setTimestampIsSet(boolean value) { if (!value) { - this.keys = null; + this.timestamp = null; } } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TCriteria getCriteria() { - return this.criteria; + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public getKeysCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { - this.criteria = criteria; + public getKeyCclTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetCriteria() { - this.criteria = null; + public void unsetOrder() { + this.order = null; } - /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ - public boolean isSetCriteria() { - return this.criteria != null; + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setCriteriaIsSet(boolean value) { + public void setOrderIsSet(boolean value) { if (!value) { - this.criteria = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeyCclTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -545219,7 +544188,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeyCclTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -545244,7 +544213,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeyCclTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -545269,7 +544238,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeyCclTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -545292,19 +544261,43 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: + case KEY: if (value == null) { - unsetKeys(); + unsetKey(); } else { - setKeys((java.util.List)value); + setKey((java.lang.String)value); } break; - case CRITERIA: + case CCL: if (value == null) { - unsetCriteria(); + unsetCcl(); } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + setCcl((java.lang.String)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -545339,11 +544332,20 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); + case KEY: + return getKey(); - case CRITERIA: - return getCriteria(); + case CCL: + return getCcl(); + + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -545366,10 +544368,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); - case CRITERIA: - return isSetCriteria(); + case KEY: + return isSetKey(); + case CCL: + return isSetCcl(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -545382,32 +544390,59 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteria_args) - return this.equals((getKeysCriteria_args)that); + if (that instanceof getKeyCclTimestrOrderPage_args) + return this.equals((getKeyCclTimestrOrderPage_args)that); return false; } - public boolean equals(getKeysCriteria_args that) { + public boolean equals(getKeyCclTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.keys.equals(that.keys)) + if (!this.key.equals(that.key)) return false; } - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.criteria.equals(that.criteria)) + if (!this.ccl.equals(that.ccl)) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -545445,13 +544480,25 @@ public boolean equals(getKeysCriteria_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -545469,29 +544516,59 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteria_args other) { + public int compareTo(getKeyCclTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -545547,22 +544624,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteria_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrOrderPage_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); - sb.append("criteria:"); - if (this.criteria == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.criteria); + sb.append(this.ccl); + } + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -545596,8 +544697,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -545623,17 +544727,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteria_argsStandardScheme getScheme() { - return new getKeysCriteria_argsStandardScheme(); + public getKeyCclTimestrOrderPage_argsStandardScheme getScheme() { + return new getKeyCclTimestrOrderPage_argsStandardScheme(); } } - private static class getKeysCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -545643,34 +544747,49 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_arg break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list5806 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5806.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5807; - for (int _i5808 = 0; _i5808 < _list5806.size; ++_i5808) - { - _elem5807 = iprot.readString(); - struct.keys.add(_elem5807); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CRITERIA + case 2: // CCL + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // ORDER if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -545679,7 +544798,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -545688,7 +544807,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -545708,25 +544827,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5809 : struct.keys) - { - oprot.writeString(_iter5809); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -545750,46 +544877,58 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteria_ar } - private static class getKeysCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteria_argsTupleScheme getScheme() { - return new getKeysCriteria_argsTupleScheme(); + public getKeyCclTimestrOrderPage_argsTupleScheme getScheme() { + return new getKeyCclTimestrOrderPage_argsTupleScheme(); } } - private static class getKeysCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetCriteria()) { + if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetPage()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5810 : struct.keys) - { - oprot.writeString(_iter5810); - } - } + if (struct.isSetCreds()) { + optionals.set(5); } - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); + if (struct.isSetKey()) { + oprot.writeString(struct.key); + } + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -545803,38 +544942,42 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list5811 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5811.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5812; - for (int _i5813 = 0; _i5813 < _list5811.size; ++_i5813) - { - _elem5812 = iprot.readString(); - struct.keys.add(_elem5812); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -545846,28 +544989,31 @@ private static S scheme(org.apache. } } - public static class getKeysCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteria_result"); + public static class getKeyCclTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeyCclTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteria_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteria_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeyCclTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeyCclTimestrOrderPage_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -545891,6 +545037,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -545940,60 +545088,51 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteria_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeyCclTimestrOrderPage_result.class, metaDataMap); } - public getKeysCriteria_result() { + public getKeyCclTimestrOrderPage_result() { } - public getKeysCriteria_result( - java.util.Map> success, + public getKeyCclTimestrOrderPage_result( + java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysCriteria_result(getKeysCriteria_result other) { + public getKeyCclTimestrOrderPage_result(getKeyCclTimestrOrderPage_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map __this__success = new java.util.LinkedHashMap(other.success.size()); + for (java.util.Map.Entry other_element : other.success.entrySet()) { java.lang.Long other_element_key = other_element.getKey(); - java.util.Map other_element_value = other_element.getValue(); + com.cinchapi.concourse.thrift.TObject other_element_value = other_element.getValue(); java.lang.Long __this__success_copy_key = other_element_key; - java.util.Map __this__success_copy_value = new java.util.LinkedHashMap(other_element_value.size()); - for (java.util.Map.Entry other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - com.cinchapi.concourse.thrift.TObject other_element_value_element_value = other_element_value_element.getValue(); - - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; - - com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value); - - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } + com.cinchapi.concourse.thrift.TObject __this__success_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value); __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -546006,13 +545145,16 @@ public getKeysCriteria_result(getKeysCriteria_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getKeysCriteria_result deepCopy() { - return new getKeysCriteria_result(this); + public getKeyCclTimestrOrderPage_result deepCopy() { + return new getKeyCclTimestrOrderPage_result(this); } @Override @@ -546021,25 +545163,26 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map val) { + public void putToSuccess(long key, com.cinchapi.concourse.thrift.TObject val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map getSuccess() { return this.success; } - public getKeysCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public getKeyCclTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -546064,7 +545207,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeyCclTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -546089,7 +545232,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeyCclTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -546110,11 +545253,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeyCclTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -546134,6 +545277,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getKeyCclTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -546141,7 +545309,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map)value); } break; @@ -546165,7 +545333,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -546188,6 +545364,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -546208,18 +545387,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteria_result) - return this.equals((getKeysCriteria_result)that); + if (that instanceof getKeyCclTimestrOrderPage_result) + return this.equals((getKeyCclTimestrOrderPage_result)that); return false; } - public boolean equals(getKeysCriteria_result that) { + public boolean equals(getKeyCclTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -546261,6 +545442,15 @@ public boolean equals(getKeysCriteria_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -546284,11 +545474,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getKeysCriteria_result other) { + public int compareTo(getKeyCclTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -546335,6 +545529,16 @@ public int compareTo(getKeysCriteria_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -546355,7 +545559,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteria_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeyCclTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -546389,6 +545593,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -546414,17 +545626,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteria_resultStandardScheme getScheme() { - return new getKeysCriteria_resultStandardScheme(); + public getKeyCclTimestrOrderPage_resultStandardScheme getScheme() { + return new getKeyCclTimestrOrderPage_resultStandardScheme(); } } - private static class getKeysCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeyCclTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeyCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -546437,28 +545649,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5814 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5814.size); - long _key5815; - @org.apache.thrift.annotation.Nullable java.util.Map _val5816; - for (int _i5817 = 0; _i5817 < _map5814.size; ++_i5817) + org.apache.thrift.protocol.TMap _map5796 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map5796.size); + long _key5797; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5798; + for (int _i5799 = 0; _i5799 < _map5796.size; ++_i5799) { - _key5815 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map5818 = iprot.readMapBegin(); - _val5816 = new java.util.LinkedHashMap(2*_map5818.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5819; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5820; - for (int _i5821 = 0; _i5821 < _map5818.size; ++_i5821) - { - _key5819 = iprot.readString(); - _val5820 = new com.cinchapi.concourse.thrift.TObject(); - _val5820.read(iprot); - _val5816.put(_key5819, _val5820); - } - iprot.readMapEnd(); - } - struct.success.put(_key5815, _val5816); + _key5797 = iprot.readI64(); + _val5798 = new com.cinchapi.concourse.thrift.TObject(); + _val5798.read(iprot); + struct.success.put(_key5797, _val5798); } iprot.readMapEnd(); } @@ -546487,13 +545687,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_res break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -546506,26 +545715,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeyCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5822 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); + for (java.util.Map.Entry _iter5800 : struct.success.entrySet()) { - oprot.writeI64(_iter5822.getKey()); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5822.getValue().size())); - for (java.util.Map.Entry _iter5823 : _iter5822.getValue().entrySet()) - { - oprot.writeString(_iter5823.getKey()); - _iter5823.getValue().write(oprot); - } - oprot.writeMapEnd(); - } + oprot.writeI64(_iter5800.getKey()); + _iter5800.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -546546,23 +545747,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteria_re struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeyCclTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteria_resultTupleScheme getScheme() { - return new getKeysCriteria_resultTupleScheme(); + public getKeyCclTimestrOrderPage_resultTupleScheme getScheme() { + return new getKeyCclTimestrOrderPage_resultTupleScheme(); } } - private static class getKeysCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeyCclTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -546577,21 +545783,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_res if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5824 : struct.success.entrySet()) + for (java.util.Map.Entry _iter5801 : struct.success.entrySet()) { - oprot.writeI64(_iter5824.getKey()); - { - oprot.writeI32(_iter5824.getValue().size()); - for (java.util.Map.Entry _iter5825 : _iter5824.getValue().entrySet()) - { - oprot.writeString(_iter5825.getKey()); - _iter5825.getValue().write(oprot); - } - } + oprot.writeI64(_iter5801.getKey()); + _iter5801.getValue().write(oprot); } } } @@ -546604,35 +545806,27 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_res if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeyCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5826 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5826.size); - long _key5827; - @org.apache.thrift.annotation.Nullable java.util.Map _val5828; - for (int _i5829 = 0; _i5829 < _map5826.size; ++_i5829) + org.apache.thrift.protocol.TMap _map5802 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.LinkedHashMap(2*_map5802.size); + long _key5803; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5804; + for (int _i5805 = 0; _i5805 < _map5802.size; ++_i5805) { - _key5827 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map5830 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5828 = new java.util.LinkedHashMap(2*_map5830.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5831; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5832; - for (int _i5833 = 0; _i5833 < _map5830.size; ++_i5833) - { - _key5831 = iprot.readString(); - _val5832 = new com.cinchapi.concourse.thrift.TObject(); - _val5832.read(iprot); - _val5828.put(_key5831, _val5832); - } - } - struct.success.put(_key5827, _val5828); + _key5803 = iprot.readI64(); + _val5804 = new com.cinchapi.concourse.thrift.TObject(); + _val5804.read(iprot); + struct.success.put(_key5803, _val5804); } } struct.setSuccessIsSet(true); @@ -546648,10 +545842,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_resu struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -546660,22 +545859,20 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaPage_args"); + public static class getKeysCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteria_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteria_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteria_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -546684,10 +545881,9 @@ public static class getKeysCriteriaPage_args implements org.apache.thrift.TBase< public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -546707,13 +545903,11 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // CRITERIA return CRITERIA; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -546766,8 +545960,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -546775,16 +545967,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteria_args.class, metaDataMap); } - public getKeysCriteriaPage_args() { + public getKeysCriteria_args() { } - public getKeysCriteriaPage_args( + public getKeysCriteria_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -546792,7 +545983,6 @@ public getKeysCriteriaPage_args( this(); this.keys = keys; this.criteria = criteria; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -546801,7 +545991,7 @@ public getKeysCriteriaPage_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaPage_args(getKeysCriteriaPage_args other) { + public getKeysCriteria_args(getKeysCriteria_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -546809,9 +545999,6 @@ public getKeysCriteriaPage_args(getKeysCriteriaPage_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -546824,15 +546011,14 @@ public getKeysCriteriaPage_args(getKeysCriteriaPage_args other) { } @Override - public getKeysCriteriaPage_args deepCopy() { - return new getKeysCriteriaPage_args(this); + public getKeysCriteria_args deepCopy() { + return new getKeysCriteria_args(this); } @Override public void clear() { this.keys = null; this.criteria = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -546859,7 +546045,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteria_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -546884,7 +546070,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -546904,37 +546090,12 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -546959,7 +546120,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -546984,7 +546145,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -547023,14 +546184,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -547068,9 +546221,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -547096,8 +546246,6 @@ public boolean isSet(_Fields field) { return isSetKeys(); case CRITERIA: return isSetCriteria(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -547110,12 +546258,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaPage_args) - return this.equals((getKeysCriteriaPage_args)that); + if (that instanceof getKeysCriteria_args) + return this.equals((getKeysCriteria_args)that); return false; } - public boolean equals(getKeysCriteriaPage_args that) { + public boolean equals(getKeysCriteria_args that) { if (that == null) return false; if (this == that) @@ -547139,15 +546287,6 @@ public boolean equals(getKeysCriteriaPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -547190,10 +546329,6 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -547210,7 +546345,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaPage_args other) { + public int compareTo(getKeysCriteria_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -547237,16 +546372,6 @@ public int compareTo(getKeysCriteriaPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -547298,7 +546423,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteria_args("); boolean first = true; sb.append("keys:"); @@ -547317,14 +546442,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -547358,9 +546475,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -547385,17 +546499,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaPage_argsStandardScheme getScheme() { - return new getKeysCriteriaPage_argsStandardScheme(); + public getKeysCriteria_argsStandardScheme getScheme() { + return new getKeysCriteria_argsStandardScheme(); } } - private static class getKeysCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -547408,13 +546522,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5834 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5834.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5835; - for (int _i5836 = 0; _i5836 < _list5834.size; ++_i5836) + org.apache.thrift.protocol.TList _list5806 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5806.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5807; + for (int _i5808 = 0; _i5808 < _list5806.size; ++_i5808) { - _elem5835 = iprot.readString(); - struct.keys.add(_elem5835); + _elem5807 = iprot.readString(); + struct.keys.add(_elem5807); } iprot.readListEnd(); } @@ -547432,16 +546546,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -547450,7 +546555,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -547459,7 +546564,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -547479,7 +546584,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteria_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -547487,9 +546592,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPag oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5837 : struct.keys) + for (java.lang.String _iter5809 : struct.keys) { - oprot.writeString(_iter5837); + oprot.writeString(_iter5809); } oprot.writeListEnd(); } @@ -547500,11 +546605,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPag struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -547526,17 +546626,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPag } - private static class getKeysCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaPage_argsTupleScheme getScheme() { - return new getKeysCriteriaPage_argsTupleScheme(); + public getKeysCriteria_argsTupleScheme getScheme() { + return new getKeysCriteria_argsTupleScheme(); } } - private static class getKeysCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -547545,34 +546645,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage if (struct.isSetCriteria()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5838 : struct.keys) + for (java.lang.String _iter5810 : struct.keys) { - oprot.writeString(_iter5838); + oprot.writeString(_iter5810); } } } if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -547585,18 +546679,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list5839 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5839.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5840; - for (int _i5841 = 0; _i5841 < _list5839.size; ++_i5841) + org.apache.thrift.protocol.TList _list5811 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5811.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5812; + for (int _i5813 = 0; _i5813 < _list5811.size; ++_i5813) { - _elem5840 = iprot.readString(); - struct.keys.add(_elem5840); + _elem5812 = iprot.readString(); + struct.keys.add(_elem5812); } } struct.setKeysIsSet(true); @@ -547607,21 +546701,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_ struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -547633,16 +546722,16 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaPage_result"); + public static class getKeysCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteria_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteria_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteria_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -547737,13 +546826,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteria_result.class, metaDataMap); } - public getKeysCriteriaPage_result() { + public getKeysCriteria_result() { } - public getKeysCriteriaPage_result( + public getKeysCriteria_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -547759,7 +546848,7 @@ public getKeysCriteriaPage_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaPage_result(getKeysCriteriaPage_result other) { + public getKeysCriteria_result(getKeysCriteria_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -547798,8 +546887,8 @@ public getKeysCriteriaPage_result(getKeysCriteriaPage_result other) { } @Override - public getKeysCriteriaPage_result deepCopy() { - return new getKeysCriteriaPage_result(this); + public getKeysCriteria_result deepCopy() { + return new getKeysCriteria_result(this); } @Override @@ -547826,7 +546915,7 @@ public java.util.Map> success) { + public getKeysCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -547851,7 +546940,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -547876,7 +546965,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -547901,7 +546990,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -548001,12 +547090,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaPage_result) - return this.equals((getKeysCriteriaPage_result)that); + if (that instanceof getKeysCriteria_result) + return this.equals((getKeysCriteria_result)that); return false; } - public boolean equals(getKeysCriteriaPage_result that) { + public boolean equals(getKeysCriteria_result that) { if (that == null) return false; if (this == that) @@ -548075,7 +547164,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaPage_result other) { + public int compareTo(getKeysCriteria_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -548142,7 +547231,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteria_result("); boolean first = true; sb.append("success:"); @@ -548201,17 +547290,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaPage_resultStandardScheme getScheme() { - return new getKeysCriteriaPage_resultStandardScheme(); + public getKeysCriteria_resultStandardScheme getScheme() { + return new getKeysCriteria_resultStandardScheme(); } } - private static class getKeysCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -548224,28 +547313,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5842 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5842.size); - long _key5843; - @org.apache.thrift.annotation.Nullable java.util.Map _val5844; - for (int _i5845 = 0; _i5845 < _map5842.size; ++_i5845) + org.apache.thrift.protocol.TMap _map5814 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5814.size); + long _key5815; + @org.apache.thrift.annotation.Nullable java.util.Map _val5816; + for (int _i5817 = 0; _i5817 < _map5814.size; ++_i5817) { - _key5843 = iprot.readI64(); + _key5815 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5846 = iprot.readMapBegin(); - _val5844 = new java.util.LinkedHashMap(2*_map5846.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5847; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5848; - for (int _i5849 = 0; _i5849 < _map5846.size; ++_i5849) + org.apache.thrift.protocol.TMap _map5818 = iprot.readMapBegin(); + _val5816 = new java.util.LinkedHashMap(2*_map5818.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5819; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5820; + for (int _i5821 = 0; _i5821 < _map5818.size; ++_i5821) { - _key5847 = iprot.readString(); - _val5848 = new com.cinchapi.concourse.thrift.TObject(); - _val5848.read(iprot); - _val5844.put(_key5847, _val5848); + _key5819 = iprot.readString(); + _val5820 = new com.cinchapi.concourse.thrift.TObject(); + _val5820.read(iprot); + _val5816.put(_key5819, _val5820); } iprot.readMapEnd(); } - struct.success.put(_key5843, _val5844); + struct.success.put(_key5815, _val5816); } iprot.readMapEnd(); } @@ -548293,7 +547382,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteria_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -548301,15 +547390,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPag oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5850 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5822 : struct.success.entrySet()) { - oprot.writeI64(_iter5850.getKey()); + oprot.writeI64(_iter5822.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5850.getValue().size())); - for (java.util.Map.Entry _iter5851 : _iter5850.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5822.getValue().size())); + for (java.util.Map.Entry _iter5823 : _iter5822.getValue().entrySet()) { - oprot.writeString(_iter5851.getKey()); - _iter5851.getValue().write(oprot); + oprot.writeString(_iter5823.getKey()); + _iter5823.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -548339,17 +547428,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPag } - private static class getKeysCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaPage_resultTupleScheme getScheme() { - return new getKeysCriteriaPage_resultTupleScheme(); + public getKeysCriteria_resultTupleScheme getScheme() { + return new getKeysCriteria_resultTupleScheme(); } } - private static class getKeysCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -548368,15 +547457,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5852 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5824 : struct.success.entrySet()) { - oprot.writeI64(_iter5852.getKey()); + oprot.writeI64(_iter5824.getKey()); { - oprot.writeI32(_iter5852.getValue().size()); - for (java.util.Map.Entry _iter5853 : _iter5852.getValue().entrySet()) + oprot.writeI32(_iter5824.getValue().size()); + for (java.util.Map.Entry _iter5825 : _iter5824.getValue().entrySet()) { - oprot.writeString(_iter5853.getKey()); - _iter5853.getValue().write(oprot); + oprot.writeString(_iter5825.getKey()); + _iter5825.getValue().write(oprot); } } } @@ -548394,32 +547483,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5854 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5854.size); - long _key5855; - @org.apache.thrift.annotation.Nullable java.util.Map _val5856; - for (int _i5857 = 0; _i5857 < _map5854.size; ++_i5857) + org.apache.thrift.protocol.TMap _map5826 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5826.size); + long _key5827; + @org.apache.thrift.annotation.Nullable java.util.Map _val5828; + for (int _i5829 = 0; _i5829 < _map5826.size; ++_i5829) { - _key5855 = iprot.readI64(); + _key5827 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5858 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5856 = new java.util.LinkedHashMap(2*_map5858.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5859; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5860; - for (int _i5861 = 0; _i5861 < _map5858.size; ++_i5861) + org.apache.thrift.protocol.TMap _map5830 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5828 = new java.util.LinkedHashMap(2*_map5830.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5831; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5832; + for (int _i5833 = 0; _i5833 < _map5830.size; ++_i5833) { - _key5859 = iprot.readString(); - _val5860 = new com.cinchapi.concourse.thrift.TObject(); - _val5860.read(iprot); - _val5856.put(_key5859, _val5860); + _key5831 = iprot.readString(); + _val5832 = new com.cinchapi.concourse.thrift.TObject(); + _val5832.read(iprot); + _val5828.put(_key5831, _val5832); } } - struct.success.put(_key5855, _val5856); + struct.success.put(_key5827, _val5828); } } struct.setSuccessIsSet(true); @@ -548447,22 +547536,22 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaOrder_args"); + public static class getKeysCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -548471,7 +547560,7 @@ public static class getKeysCriteriaOrder_args implements org.apache.thrift.TBase public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), - ORDER((short)3, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -548494,8 +547583,8 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // CRITERIA return CRITERIA; - case 3: // ORDER - return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -548553,8 +547642,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -548562,16 +547651,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaPage_args.class, metaDataMap); } - public getKeysCriteriaOrder_args() { + public getKeysCriteriaPage_args() { } - public getKeysCriteriaOrder_args( + public getKeysCriteriaPage_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -548579,7 +547668,7 @@ public getKeysCriteriaOrder_args( this(); this.keys = keys; this.criteria = criteria; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -548588,7 +547677,7 @@ public getKeysCriteriaOrder_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaOrder_args(getKeysCriteriaOrder_args other) { + public getKeysCriteriaPage_args(getKeysCriteriaPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -548596,8 +547685,8 @@ public getKeysCriteriaOrder_args(getKeysCriteriaOrder_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -548611,15 +547700,15 @@ public getKeysCriteriaOrder_args(getKeysCriteriaOrder_args other) { } @Override - public getKeysCriteriaOrder_args deepCopy() { - return new getKeysCriteriaOrder_args(this); + public getKeysCriteriaPage_args deepCopy() { + return new getKeysCriteriaPage_args(this); } @Override public void clear() { this.keys = null; this.criteria = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -548646,7 +547735,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -548671,7 +547760,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -548692,27 +547781,27 @@ public void setCriteriaIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -548721,7 +547810,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -548746,7 +547835,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -548771,7 +547860,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -548810,11 +547899,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -548855,8 +547944,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -548883,8 +547972,8 @@ public boolean isSet(_Fields field) { return isSetKeys(); case CRITERIA: return isSetCriteria(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -548897,12 +547986,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaOrder_args) - return this.equals((getKeysCriteriaOrder_args)that); + if (that instanceof getKeysCriteriaPage_args) + return this.equals((getKeysCriteriaPage_args)that); return false; } - public boolean equals(getKeysCriteriaOrder_args that) { + public boolean equals(getKeysCriteriaPage_args that) { if (that == null) return false; if (this == that) @@ -548926,12 +548015,12 @@ public boolean equals(getKeysCriteriaOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -548977,9 +548066,9 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -548997,7 +548086,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaOrder_args other) { + public int compareTo(getKeysCriteriaPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -549024,12 +548113,12 @@ public int compareTo(getKeysCriteriaOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -549085,7 +548174,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaPage_args("); boolean first = true; sb.append("keys:"); @@ -549104,11 +548193,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -549145,8 +548234,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -549172,17 +548261,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaOrder_argsStandardScheme getScheme() { - return new getKeysCriteriaOrder_argsStandardScheme(); + public getKeysCriteriaPage_argsStandardScheme getScheme() { + return new getKeysCriteriaPage_argsStandardScheme(); } } - private static class getKeysCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -549195,13 +548284,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5862 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5862.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5863; - for (int _i5864 = 0; _i5864 < _list5862.size; ++_i5864) + org.apache.thrift.protocol.TList _list5834 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5834.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5835; + for (int _i5836 = 0; _i5836 < _list5834.size; ++_i5836) { - _elem5863 = iprot.readString(); - struct.keys.add(_elem5863); + _elem5835 = iprot.readString(); + struct.keys.add(_elem5835); } iprot.readListEnd(); } @@ -549219,11 +548308,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -549266,7 +548355,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -549274,9 +548363,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5865 : struct.keys) + for (java.lang.String _iter5837 : struct.keys) { - oprot.writeString(_iter5865); + oprot.writeString(_iter5837); } oprot.writeListEnd(); } @@ -549287,9 +548376,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -549313,17 +548402,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd } - private static class getKeysCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaOrder_argsTupleScheme getScheme() { - return new getKeysCriteriaOrder_argsTupleScheme(); + public getKeysCriteriaPage_argsTupleScheme getScheme() { + return new getKeysCriteriaPage_argsTupleScheme(); } } - private static class getKeysCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -549332,7 +548421,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde if (struct.isSetCriteria()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -549348,17 +548437,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5866 : struct.keys) + for (java.lang.String _iter5838 : struct.keys) { - oprot.writeString(_iter5866); + oprot.writeString(_iter5838); } } } if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -549372,18 +548461,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list5867 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5867.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5868; - for (int _i5869 = 0; _i5869 < _list5867.size; ++_i5869) + org.apache.thrift.protocol.TList _list5839 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5839.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5840; + for (int _i5841 = 0; _i5841 < _list5839.size; ++_i5841) { - _elem5868 = iprot.readString(); - struct.keys.add(_elem5868); + _elem5840 = iprot.readString(); + struct.keys.add(_elem5840); } } struct.setKeysIsSet(true); @@ -549394,9 +548483,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -549420,16 +548509,16 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaOrder_result"); + public static class getKeysCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -549524,13 +548613,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaPage_result.class, metaDataMap); } - public getKeysCriteriaOrder_result() { + public getKeysCriteriaPage_result() { } - public getKeysCriteriaOrder_result( + public getKeysCriteriaPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -549546,7 +548635,7 @@ public getKeysCriteriaOrder_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaOrder_result(getKeysCriteriaOrder_result other) { + public getKeysCriteriaPage_result(getKeysCriteriaPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -549585,8 +548674,8 @@ public getKeysCriteriaOrder_result(getKeysCriteriaOrder_result other) { } @Override - public getKeysCriteriaOrder_result deepCopy() { - return new getKeysCriteriaOrder_result(this); + public getKeysCriteriaPage_result deepCopy() { + return new getKeysCriteriaPage_result(this); } @Override @@ -549613,7 +548702,7 @@ public java.util.Map> success) { + public getKeysCriteriaPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -549638,7 +548727,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -549663,7 +548752,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -549688,7 +548777,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -549788,12 +548877,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaOrder_result) - return this.equals((getKeysCriteriaOrder_result)that); + if (that instanceof getKeysCriteriaPage_result) + return this.equals((getKeysCriteriaPage_result)that); return false; } - public boolean equals(getKeysCriteriaOrder_result that) { + public boolean equals(getKeysCriteriaPage_result that) { if (that == null) return false; if (this == that) @@ -549862,7 +548951,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaOrder_result other) { + public int compareTo(getKeysCriteriaPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -549929,7 +549018,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaPage_result("); boolean first = true; sb.append("success:"); @@ -549988,17 +549077,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaOrder_resultStandardScheme getScheme() { - return new getKeysCriteriaOrder_resultStandardScheme(); + public getKeysCriteriaPage_resultStandardScheme getScheme() { + return new getKeysCriteriaPage_resultStandardScheme(); } } - private static class getKeysCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -550011,28 +549100,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5870 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5870.size); - long _key5871; - @org.apache.thrift.annotation.Nullable java.util.Map _val5872; - for (int _i5873 = 0; _i5873 < _map5870.size; ++_i5873) + org.apache.thrift.protocol.TMap _map5842 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5842.size); + long _key5843; + @org.apache.thrift.annotation.Nullable java.util.Map _val5844; + for (int _i5845 = 0; _i5845 < _map5842.size; ++_i5845) { - _key5871 = iprot.readI64(); + _key5843 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5874 = iprot.readMapBegin(); - _val5872 = new java.util.LinkedHashMap(2*_map5874.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5875; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5876; - for (int _i5877 = 0; _i5877 < _map5874.size; ++_i5877) + org.apache.thrift.protocol.TMap _map5846 = iprot.readMapBegin(); + _val5844 = new java.util.LinkedHashMap(2*_map5846.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5847; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5848; + for (int _i5849 = 0; _i5849 < _map5846.size; ++_i5849) { - _key5875 = iprot.readString(); - _val5876 = new com.cinchapi.concourse.thrift.TObject(); - _val5876.read(iprot); - _val5872.put(_key5875, _val5876); + _key5847 = iprot.readString(); + _val5848 = new com.cinchapi.concourse.thrift.TObject(); + _val5848.read(iprot); + _val5844.put(_key5847, _val5848); } iprot.readMapEnd(); } - struct.success.put(_key5871, _val5872); + struct.success.put(_key5843, _val5844); } iprot.readMapEnd(); } @@ -550080,7 +549169,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -550088,15 +549177,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5878 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5850 : struct.success.entrySet()) { - oprot.writeI64(_iter5878.getKey()); + oprot.writeI64(_iter5850.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5878.getValue().size())); - for (java.util.Map.Entry _iter5879 : _iter5878.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5850.getValue().size())); + for (java.util.Map.Entry _iter5851 : _iter5850.getValue().entrySet()) { - oprot.writeString(_iter5879.getKey()); - _iter5879.getValue().write(oprot); + oprot.writeString(_iter5851.getKey()); + _iter5851.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -550126,17 +549215,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd } - private static class getKeysCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaOrder_resultTupleScheme getScheme() { - return new getKeysCriteriaOrder_resultTupleScheme(); + public getKeysCriteriaPage_resultTupleScheme getScheme() { + return new getKeysCriteriaPage_resultTupleScheme(); } } - private static class getKeysCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -550155,15 +549244,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5880 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5852 : struct.success.entrySet()) { - oprot.writeI64(_iter5880.getKey()); + oprot.writeI64(_iter5852.getKey()); { - oprot.writeI32(_iter5880.getValue().size()); - for (java.util.Map.Entry _iter5881 : _iter5880.getValue().entrySet()) + oprot.writeI32(_iter5852.getValue().size()); + for (java.util.Map.Entry _iter5853 : _iter5852.getValue().entrySet()) { - oprot.writeString(_iter5881.getKey()); - _iter5881.getValue().write(oprot); + oprot.writeString(_iter5853.getKey()); + _iter5853.getValue().write(oprot); } } } @@ -550181,32 +549270,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5882 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5882.size); - long _key5883; - @org.apache.thrift.annotation.Nullable java.util.Map _val5884; - for (int _i5885 = 0; _i5885 < _map5882.size; ++_i5885) + org.apache.thrift.protocol.TMap _map5854 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5854.size); + long _key5855; + @org.apache.thrift.annotation.Nullable java.util.Map _val5856; + for (int _i5857 = 0; _i5857 < _map5854.size; ++_i5857) { - _key5883 = iprot.readI64(); + _key5855 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5886 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5884 = new java.util.LinkedHashMap(2*_map5886.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5887; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5888; - for (int _i5889 = 0; _i5889 < _map5886.size; ++_i5889) + org.apache.thrift.protocol.TMap _map5858 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5856 = new java.util.LinkedHashMap(2*_map5858.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5859; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5860; + for (int _i5861 = 0; _i5861 < _map5858.size; ++_i5861) { - _key5887 = iprot.readString(); - _val5888 = new com.cinchapi.concourse.thrift.TObject(); - _val5888.read(iprot); - _val5884.put(_key5887, _val5888); + _key5859 = iprot.readString(); + _val5860 = new com.cinchapi.concourse.thrift.TObject(); + _val5860.read(iprot); + _val5856.put(_key5859, _val5860); } } - struct.success.put(_key5883, _val5884); + struct.success.put(_key5855, _val5856); } } struct.setSuccessIsSet(true); @@ -550234,24 +549323,22 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaOrderPage_args"); + public static class getKeysCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -550261,10 +549348,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -550286,13 +549372,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -550347,8 +549431,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -550356,17 +549438,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaOrder_args.class, metaDataMap); } - public getKeysCriteriaOrderPage_args() { + public getKeysCriteriaOrder_args() { } - public getKeysCriteriaOrderPage_args( + public getKeysCriteriaOrder_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -550375,7 +549456,6 @@ public getKeysCriteriaOrderPage_args( this.keys = keys; this.criteria = criteria; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -550384,7 +549464,7 @@ public getKeysCriteriaOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaOrderPage_args(getKeysCriteriaOrderPage_args other) { + public getKeysCriteriaOrder_args(getKeysCriteriaOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -550395,9 +549475,6 @@ public getKeysCriteriaOrderPage_args(getKeysCriteriaOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -550410,8 +549487,8 @@ public getKeysCriteriaOrderPage_args(getKeysCriteriaOrderPage_args other) { } @Override - public getKeysCriteriaOrderPage_args deepCopy() { - return new getKeysCriteriaOrderPage_args(this); + public getKeysCriteriaOrder_args deepCopy() { + return new getKeysCriteriaOrder_args(this); } @Override @@ -550419,7 +549496,6 @@ public void clear() { this.keys = null; this.criteria = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -550446,7 +549522,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -550471,7 +549547,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -550496,7 +549572,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -550516,37 +549592,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -550571,7 +549622,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -550596,7 +549647,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -550643,14 +549694,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -550691,9 +549734,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -550721,8 +549761,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -550735,12 +549773,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaOrderPage_args) - return this.equals((getKeysCriteriaOrderPage_args)that); + if (that instanceof getKeysCriteriaOrder_args) + return this.equals((getKeysCriteriaOrder_args)that); return false; } - public boolean equals(getKeysCriteriaOrderPage_args that) { + public boolean equals(getKeysCriteriaOrder_args that) { if (that == null) return false; if (this == that) @@ -550773,15 +549811,6 @@ public boolean equals(getKeysCriteriaOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -550828,10 +549857,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -550848,7 +549873,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaOrderPage_args other) { + public int compareTo(getKeysCriteriaOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -550885,16 +549910,6 @@ public int compareTo(getKeysCriteriaOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -550946,7 +549961,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaOrder_args("); boolean first = true; sb.append("keys:"); @@ -550973,14 +549988,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -551017,9 +550024,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -551044,17 +550048,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaOrderPage_argsStandardScheme getScheme() { - return new getKeysCriteriaOrderPage_argsStandardScheme(); + public getKeysCriteriaOrder_argsStandardScheme getScheme() { + return new getKeysCriteriaOrder_argsStandardScheme(); } } - private static class getKeysCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -551067,13 +550071,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5890 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5890.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5891; - for (int _i5892 = 0; _i5892 < _list5890.size; ++_i5892) + org.apache.thrift.protocol.TList _list5862 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5862.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5863; + for (int _i5864 = 0; _i5864 < _list5862.size; ++_i5864) { - _elem5891 = iprot.readString(); - struct.keys.add(_elem5891); + _elem5863 = iprot.readString(); + struct.keys.add(_elem5863); } iprot.readListEnd(); } @@ -551100,16 +550104,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -551118,7 +550113,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -551127,7 +550122,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -551147,7 +550142,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -551155,9 +550150,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5893 : struct.keys) + for (java.lang.String _iter5865 : struct.keys) { - oprot.writeString(_iter5893); + oprot.writeString(_iter5865); } oprot.writeListEnd(); } @@ -551173,11 +550168,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -551199,17 +550189,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd } - private static class getKeysCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaOrderPage_argsTupleScheme getScheme() { - return new getKeysCriteriaOrderPage_argsTupleScheme(); + public getKeysCriteriaOrder_argsTupleScheme getScheme() { + return new getKeysCriteriaOrder_argsTupleScheme(); } } - private static class getKeysCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -551221,25 +550211,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5894 : struct.keys) + for (java.lang.String _iter5866 : struct.keys) { - oprot.writeString(_iter5894); + oprot.writeString(_iter5866); } } } @@ -551249,9 +550236,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -551264,18 +550248,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list5895 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5895.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5896; - for (int _i5897 = 0; _i5897 < _list5895.size; ++_i5897) + org.apache.thrift.protocol.TList _list5867 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5867.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5868; + for (int _i5869 = 0; _i5869 < _list5867.size; ++_i5869) { - _elem5896 = iprot.readString(); - struct.keys.add(_elem5896); + _elem5868 = iprot.readString(); + struct.keys.add(_elem5868); } } struct.setKeysIsSet(true); @@ -551291,21 +550275,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -551317,16 +550296,16 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaOrderPage_result"); + public static class getKeysCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -551421,13 +550400,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaOrder_result.class, metaDataMap); } - public getKeysCriteriaOrderPage_result() { + public getKeysCriteriaOrder_result() { } - public getKeysCriteriaOrderPage_result( + public getKeysCriteriaOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -551443,7 +550422,7 @@ public getKeysCriteriaOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaOrderPage_result(getKeysCriteriaOrderPage_result other) { + public getKeysCriteriaOrder_result(getKeysCriteriaOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -551482,8 +550461,8 @@ public getKeysCriteriaOrderPage_result(getKeysCriteriaOrderPage_result other) { } @Override - public getKeysCriteriaOrderPage_result deepCopy() { - return new getKeysCriteriaOrderPage_result(this); + public getKeysCriteriaOrder_result deepCopy() { + return new getKeysCriteriaOrder_result(this); } @Override @@ -551510,7 +550489,7 @@ public java.util.Map> success) { + public getKeysCriteriaOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -551535,7 +550514,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -551560,7 +550539,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -551585,7 +550564,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -551685,12 +550664,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaOrderPage_result) - return this.equals((getKeysCriteriaOrderPage_result)that); + if (that instanceof getKeysCriteriaOrder_result) + return this.equals((getKeysCriteriaOrder_result)that); return false; } - public boolean equals(getKeysCriteriaOrderPage_result that) { + public boolean equals(getKeysCriteriaOrder_result that) { if (that == null) return false; if (this == that) @@ -551759,7 +550738,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaOrderPage_result other) { + public int compareTo(getKeysCriteriaOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -551826,7 +550805,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaOrder_result("); boolean first = true; sb.append("success:"); @@ -551885,17 +550864,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaOrderPage_resultStandardScheme getScheme() { - return new getKeysCriteriaOrderPage_resultStandardScheme(); + public getKeysCriteriaOrder_resultStandardScheme getScheme() { + return new getKeysCriteriaOrder_resultStandardScheme(); } } - private static class getKeysCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -551908,28 +550887,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5898 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5898.size); - long _key5899; - @org.apache.thrift.annotation.Nullable java.util.Map _val5900; - for (int _i5901 = 0; _i5901 < _map5898.size; ++_i5901) + org.apache.thrift.protocol.TMap _map5870 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5870.size); + long _key5871; + @org.apache.thrift.annotation.Nullable java.util.Map _val5872; + for (int _i5873 = 0; _i5873 < _map5870.size; ++_i5873) { - _key5899 = iprot.readI64(); + _key5871 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5902 = iprot.readMapBegin(); - _val5900 = new java.util.LinkedHashMap(2*_map5902.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5903; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5904; - for (int _i5905 = 0; _i5905 < _map5902.size; ++_i5905) + org.apache.thrift.protocol.TMap _map5874 = iprot.readMapBegin(); + _val5872 = new java.util.LinkedHashMap(2*_map5874.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5875; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5876; + for (int _i5877 = 0; _i5877 < _map5874.size; ++_i5877) { - _key5903 = iprot.readString(); - _val5904 = new com.cinchapi.concourse.thrift.TObject(); - _val5904.read(iprot); - _val5900.put(_key5903, _val5904); + _key5875 = iprot.readString(); + _val5876 = new com.cinchapi.concourse.thrift.TObject(); + _val5876.read(iprot); + _val5872.put(_key5875, _val5876); } iprot.readMapEnd(); } - struct.success.put(_key5899, _val5900); + struct.success.put(_key5871, _val5872); } iprot.readMapEnd(); } @@ -551977,7 +550956,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrde } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -551985,15 +550964,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5906 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5878 : struct.success.entrySet()) { - oprot.writeI64(_iter5906.getKey()); + oprot.writeI64(_iter5878.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5906.getValue().size())); - for (java.util.Map.Entry _iter5907 : _iter5906.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5878.getValue().size())); + for (java.util.Map.Entry _iter5879 : _iter5878.getValue().entrySet()) { - oprot.writeString(_iter5907.getKey()); - _iter5907.getValue().write(oprot); + oprot.writeString(_iter5879.getKey()); + _iter5879.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -552023,17 +551002,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrd } - private static class getKeysCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaOrderPage_resultTupleScheme getScheme() { - return new getKeysCriteriaOrderPage_resultTupleScheme(); + public getKeysCriteriaOrder_resultTupleScheme getScheme() { + return new getKeysCriteriaOrder_resultTupleScheme(); } } - private static class getKeysCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -552052,15 +551031,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5908 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5880 : struct.success.entrySet()) { - oprot.writeI64(_iter5908.getKey()); + oprot.writeI64(_iter5880.getKey()); { - oprot.writeI32(_iter5908.getValue().size()); - for (java.util.Map.Entry _iter5909 : _iter5908.getValue().entrySet()) + oprot.writeI32(_iter5880.getValue().size()); + for (java.util.Map.Entry _iter5881 : _iter5880.getValue().entrySet()) { - oprot.writeString(_iter5909.getKey()); - _iter5909.getValue().write(oprot); + oprot.writeString(_iter5881.getKey()); + _iter5881.getValue().write(oprot); } } } @@ -552078,32 +551057,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrde } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5910 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5910.size); - long _key5911; - @org.apache.thrift.annotation.Nullable java.util.Map _val5912; - for (int _i5913 = 0; _i5913 < _map5910.size; ++_i5913) + org.apache.thrift.protocol.TMap _map5882 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5882.size); + long _key5883; + @org.apache.thrift.annotation.Nullable java.util.Map _val5884; + for (int _i5885 = 0; _i5885 < _map5882.size; ++_i5885) { - _key5911 = iprot.readI64(); + _key5883 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5914 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5912 = new java.util.LinkedHashMap(2*_map5914.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5915; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5916; - for (int _i5917 = 0; _i5917 < _map5914.size; ++_i5917) + org.apache.thrift.protocol.TMap _map5886 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5884 = new java.util.LinkedHashMap(2*_map5886.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5887; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5888; + for (int _i5889 = 0; _i5889 < _map5886.size; ++_i5889) { - _key5915 = iprot.readString(); - _val5916 = new com.cinchapi.concourse.thrift.TObject(); - _val5916.read(iprot); - _val5912.put(_key5915, _val5916); + _key5887 = iprot.readString(); + _val5888 = new com.cinchapi.concourse.thrift.TObject(); + _val5888.read(iprot); + _val5884.put(_key5887, _val5888); } } - struct.success.put(_key5911, _val5912); + struct.success.put(_key5883, _val5884); } } struct.setSuccessIsSet(true); @@ -552131,20 +551110,24 @@ private static S scheme(org.apache. } } - public static class getKeysCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCcl_args"); + public static class getKeysCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCcl_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCcl_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -552152,10 +551135,12 @@ public static class getKeysCcl_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -552173,13 +551158,17 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // CCL - return CCL; - case 3: // CREDS + case 2: // CRITERIA + return CRITERIA; + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -552230,8 +551219,12 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -552239,22 +551232,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCcl_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaOrderPage_args.class, metaDataMap); } - public getKeysCcl_args() { + public getKeysCriteriaOrderPage_args() { } - public getKeysCcl_args( + public getKeysCriteriaOrderPage_args( java.util.List keys, - java.lang.String ccl, + com.cinchapi.concourse.thrift.TCriteria criteria, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.ccl = ccl; + this.criteria = criteria; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -552263,13 +551260,19 @@ public getKeysCcl_args( /** * Performs a deep copy on other. */ - public getKeysCcl_args(getKeysCcl_args other) { + public getKeysCriteriaOrderPage_args(getKeysCriteriaOrderPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetCcl()) { - this.ccl = other.ccl; + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -552283,14 +551286,16 @@ public getKeysCcl_args(getKeysCcl_args other) { } @Override - public getKeysCcl_args deepCopy() { - return new getKeysCcl_args(this); + public getKeysCriteriaOrderPage_args deepCopy() { + return new getKeysCriteriaOrderPage_args(this); } @Override public void clear() { this.keys = null; - this.ccl = null; + this.criteria = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -552317,7 +551322,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCcl_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -552338,27 +551343,77 @@ public void setKeysIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public getKeysCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public getKeysCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeysCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -552367,7 +551422,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -552392,7 +551447,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -552417,7 +551472,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -552448,11 +551503,27 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -552490,8 +551561,14 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -552516,8 +551593,12 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -552530,12 +551611,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCcl_args) - return this.equals((getKeysCcl_args)that); + if (that instanceof getKeysCriteriaOrderPage_args) + return this.equals((getKeysCriteriaOrderPage_args)that); return false; } - public boolean equals(getKeysCcl_args that) { + public boolean equals(getKeysCriteriaOrderPage_args that) { if (that == null) return false; if (this == that) @@ -552550,12 +551631,30 @@ public boolean equals(getKeysCcl_args that) { return false; } - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -552597,9 +551696,17 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -552617,7 +551724,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCcl_args other) { + public int compareTo(getKeysCriteriaOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -552634,12 +551741,32 @@ public int compareTo(getKeysCcl_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -552695,7 +551822,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCcl_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -552706,11 +551833,27 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -552744,6 +551887,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -552768,17 +551920,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCcl_argsStandardScheme getScheme() { - return new getKeysCcl_argsStandardScheme(); + public getKeysCriteriaOrderPage_argsStandardScheme getScheme() { + return new getKeysCriteriaOrderPage_argsStandardScheme(); } } - private static class getKeysCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -552791,13 +551943,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_args str case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5918 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5918.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5919; - for (int _i5920 = 0; _i5920 < _list5918.size; ++_i5920) + org.apache.thrift.protocol.TList _list5890 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5890.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5891; + for (int _i5892 = 0; _i5892 < _list5890.size; ++_i5892) { - _elem5919 = iprot.readString(); - struct.keys.add(_elem5919); + _elem5891 = iprot.readString(); + struct.keys.add(_elem5891); } iprot.readListEnd(); } @@ -552806,15 +551958,34 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 2: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -552823,7 +551994,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -552832,7 +552003,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -552852,7 +552023,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_args str } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -552860,17 +552031,27 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCcl_args st oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5921 : struct.keys) + for (java.lang.String _iter5893 : struct.keys) { - oprot.writeString(_iter5921); + oprot.writeString(_iter5893); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -552894,46 +552075,58 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCcl_args st } - private static class getKeysCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCcl_argsTupleScheme getScheme() { - return new getKeysCcl_argsTupleScheme(); + public getKeysCriteriaOrderPage_argsTupleScheme getScheme() { + return new getKeysCriteriaOrderPage_argsTupleScheme(); } } - private static class getKeysCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetTransaction()) { + optionals.set(5); + } + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5922 : struct.keys) + for (java.lang.String _iter5894 : struct.keys) { - oprot.writeString(_iter5922); + oprot.writeString(_iter5894); } } } - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -552947,37 +552140,48 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_args str } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list5923 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5923.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5924; - for (int _i5925 = 0; _i5925 < _list5923.size; ++_i5925) + org.apache.thrift.protocol.TList _list5895 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5895.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5896; + for (int _i5897 = 0; _i5897 < _list5895.size; ++_i5897) { - _elem5924 = iprot.readString(); - struct.keys.add(_elem5924); + _elem5896 = iprot.readString(); + struct.keys.add(_elem5896); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(2)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -552989,31 +552193,28 @@ private static S scheme(org.apache. } } - public static class getKeysCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCcl_result"); + public static class getKeysCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCcl_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCcl_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -553037,8 +552238,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -553096,35 +552295,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCcl_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaOrderPage_result.class, metaDataMap); } - public getKeysCcl_result() { + public getKeysCriteriaOrderPage_result() { } - public getKeysCcl_result( + public getKeysCriteriaOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysCcl_result(getKeysCcl_result other) { + public getKeysCriteriaOrderPage_result(getKeysCriteriaOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -553158,16 +552353,13 @@ public getKeysCcl_result(getKeysCcl_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getKeysCcl_result deepCopy() { - return new getKeysCcl_result(this); + public getKeysCriteriaOrderPage_result deepCopy() { + return new getKeysCriteriaOrderPage_result(this); } @Override @@ -553176,7 +552368,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -553195,7 +552386,7 @@ public java.util.Map> success) { + public getKeysCriteriaOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -553220,7 +552411,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -553245,7 +552436,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -553266,11 +552457,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -553290,31 +552481,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getKeysCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -553346,15 +552512,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -553377,9 +552535,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -553400,20 +552555,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCcl_result) - return this.equals((getKeysCcl_result)that); + if (that instanceof getKeysCriteriaOrderPage_result) + return this.equals((getKeysCriteriaOrderPage_result)that); return false; } - public boolean equals(getKeysCcl_result that) { + public boolean equals(getKeysCriteriaOrderPage_result that) { if (that == null) return false; if (this == that) @@ -553455,15 +552608,6 @@ public boolean equals(getKeysCcl_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -553487,15 +552631,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getKeysCcl_result other) { + public int compareTo(getKeysCriteriaOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -553542,16 +552682,6 @@ public int compareTo(getKeysCcl_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -553572,7 +552702,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCcl_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaOrderPage_result("); boolean first = true; sb.append("success:"); @@ -553606,14 +552736,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -553639,17 +552761,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCcl_resultStandardScheme getScheme() { - return new getKeysCcl_resultStandardScheme(); + public getKeysCriteriaOrderPage_resultStandardScheme getScheme() { + return new getKeysCriteriaOrderPage_resultStandardScheme(); } } - private static class getKeysCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -553662,28 +552784,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5926 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5926.size); - long _key5927; - @org.apache.thrift.annotation.Nullable java.util.Map _val5928; - for (int _i5929 = 0; _i5929 < _map5926.size; ++_i5929) + org.apache.thrift.protocol.TMap _map5898 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5898.size); + long _key5899; + @org.apache.thrift.annotation.Nullable java.util.Map _val5900; + for (int _i5901 = 0; _i5901 < _map5898.size; ++_i5901) { - _key5927 = iprot.readI64(); + _key5899 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5930 = iprot.readMapBegin(); - _val5928 = new java.util.LinkedHashMap(2*_map5930.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5931; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5932; - for (int _i5933 = 0; _i5933 < _map5930.size; ++_i5933) + org.apache.thrift.protocol.TMap _map5902 = iprot.readMapBegin(); + _val5900 = new java.util.LinkedHashMap(2*_map5902.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5903; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5904; + for (int _i5905 = 0; _i5905 < _map5902.size; ++_i5905) { - _key5931 = iprot.readString(); - _val5932 = new com.cinchapi.concourse.thrift.TObject(); - _val5932.read(iprot); - _val5928.put(_key5931, _val5932); + _key5903 = iprot.readString(); + _val5904 = new com.cinchapi.concourse.thrift.TObject(); + _val5904.read(iprot); + _val5900.put(_key5903, _val5904); } iprot.readMapEnd(); } - struct.success.put(_key5927, _val5928); + struct.success.put(_key5899, _val5900); } iprot.readMapEnd(); } @@ -553712,22 +552834,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_result s break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -553740,7 +552853,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_result s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -553748,15 +552861,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCcl_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5934 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5906 : struct.success.entrySet()) { - oprot.writeI64(_iter5934.getKey()); + oprot.writeI64(_iter5906.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5934.getValue().size())); - for (java.util.Map.Entry _iter5935 : _iter5934.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5906.getValue().size())); + for (java.util.Map.Entry _iter5907 : _iter5906.getValue().entrySet()) { - oprot.writeString(_iter5935.getKey()); - _iter5935.getValue().write(oprot); + oprot.writeString(_iter5907.getKey()); + _iter5907.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -553780,28 +552893,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCcl_result struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCcl_resultTupleScheme getScheme() { - return new getKeysCcl_resultTupleScheme(); + public getKeysCriteriaOrderPage_resultTupleScheme getScheme() { + return new getKeysCriteriaOrderPage_resultTupleScheme(); } } - private static class getKeysCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -553816,22 +552924,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_result s if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5936 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5908 : struct.success.entrySet()) { - oprot.writeI64(_iter5936.getKey()); + oprot.writeI64(_iter5908.getKey()); { - oprot.writeI32(_iter5936.getValue().size()); - for (java.util.Map.Entry _iter5937 : _iter5936.getValue().entrySet()) + oprot.writeI32(_iter5908.getValue().size()); + for (java.util.Map.Entry _iter5909 : _iter5908.getValue().entrySet()) { - oprot.writeString(_iter5937.getKey()); - _iter5937.getValue().write(oprot); + oprot.writeString(_iter5909.getKey()); + _iter5909.getValue().write(oprot); } } } @@ -553846,38 +552951,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_result s if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5938 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5938.size); - long _key5939; - @org.apache.thrift.annotation.Nullable java.util.Map _val5940; - for (int _i5941 = 0; _i5941 < _map5938.size; ++_i5941) + org.apache.thrift.protocol.TMap _map5910 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5910.size); + long _key5911; + @org.apache.thrift.annotation.Nullable java.util.Map _val5912; + for (int _i5913 = 0; _i5913 < _map5910.size; ++_i5913) { - _key5939 = iprot.readI64(); + _key5911 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5942 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5940 = new java.util.LinkedHashMap(2*_map5942.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5943; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5944; - for (int _i5945 = 0; _i5945 < _map5942.size; ++_i5945) + org.apache.thrift.protocol.TMap _map5914 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5912 = new java.util.LinkedHashMap(2*_map5914.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5915; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5916; + for (int _i5917 = 0; _i5917 < _map5914.size; ++_i5917) { - _key5943 = iprot.readString(); - _val5944 = new com.cinchapi.concourse.thrift.TObject(); - _val5944.read(iprot); - _val5940.put(_key5943, _val5944); + _key5915 = iprot.readString(); + _val5916 = new com.cinchapi.concourse.thrift.TObject(); + _val5916.read(iprot); + _val5912.put(_key5915, _val5916); } } - struct.success.put(_key5939, _val5940); + struct.success.put(_key5911, _val5912); } } struct.setSuccessIsSet(true); @@ -553893,15 +552995,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_result st struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -553910,22 +553007,20 @@ private static S scheme(org.apache. } } - public static class getKeysCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclPage_args"); + public static class getKeysCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCcl_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCcl_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCcl_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -553934,10 +553029,9 @@ public static class getKeysCclPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -553957,13 +553051,11 @@ public static _Fields findByThriftId(int fieldId) { return KEYS; case 2: // CCL return CCL; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -554016,8 +553108,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -554025,16 +553115,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCcl_args.class, metaDataMap); } - public getKeysCclPage_args() { + public getKeysCcl_args() { } - public getKeysCclPage_args( + public getKeysCcl_args( java.util.List keys, java.lang.String ccl, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -554042,7 +553131,6 @@ public getKeysCclPage_args( this(); this.keys = keys; this.ccl = ccl; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -554051,7 +553139,7 @@ public getKeysCclPage_args( /** * Performs a deep copy on other. */ - public getKeysCclPage_args(getKeysCclPage_args other) { + public getKeysCcl_args(getKeysCcl_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -554059,9 +553147,6 @@ public getKeysCclPage_args(getKeysCclPage_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -554074,15 +553159,14 @@ public getKeysCclPage_args(getKeysCclPage_args other) { } @Override - public getKeysCclPage_args deepCopy() { - return new getKeysCclPage_args(this); + public getKeysCcl_args deepCopy() { + return new getKeysCcl_args(this); } @Override public void clear() { this.keys = null; this.ccl = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -554109,7 +553193,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCcl_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -554134,7 +553218,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -554154,37 +553238,12 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -554209,7 +553268,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -554234,7 +553293,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -554273,14 +553332,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -554318,9 +553369,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -554346,8 +553394,6 @@ public boolean isSet(_Fields field) { return isSetKeys(); case CCL: return isSetCcl(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -554360,12 +553406,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclPage_args) - return this.equals((getKeysCclPage_args)that); + if (that instanceof getKeysCcl_args) + return this.equals((getKeysCcl_args)that); return false; } - public boolean equals(getKeysCclPage_args that) { + public boolean equals(getKeysCcl_args that) { if (that == null) return false; if (this == that) @@ -554389,15 +553435,6 @@ public boolean equals(getKeysCclPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -554440,10 +553477,6 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -554460,7 +553493,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclPage_args other) { + public int compareTo(getKeysCcl_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -554487,16 +553520,6 @@ public int compareTo(getKeysCclPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -554548,7 +553571,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCcl_args("); boolean first = true; sb.append("keys:"); @@ -554567,14 +553590,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -554605,9 +553620,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -554632,17 +553644,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclPage_argsStandardScheme getScheme() { - return new getKeysCclPage_argsStandardScheme(); + public getKeysCcl_argsStandardScheme getScheme() { + return new getKeysCcl_argsStandardScheme(); } } - private static class getKeysCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -554655,13 +553667,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_args case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5946 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5946.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5947; - for (int _i5948 = 0; _i5948 < _list5946.size; ++_i5948) + org.apache.thrift.protocol.TList _list5918 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5918.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5919; + for (int _i5920 = 0; _i5920 < _list5918.size; ++_i5920) { - _elem5947 = iprot.readString(); - struct.keys.add(_elem5947); + _elem5919 = iprot.readString(); + struct.keys.add(_elem5919); } iprot.readListEnd(); } @@ -554678,16 +553690,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -554696,7 +553699,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -554705,7 +553708,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -554725,7 +553728,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCcl_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -554733,9 +553736,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_arg oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5949 : struct.keys) + for (java.lang.String _iter5921 : struct.keys) { - oprot.writeString(_iter5949); + oprot.writeString(_iter5921); } oprot.writeListEnd(); } @@ -554746,11 +553749,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_arg oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -554772,17 +553770,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_arg } - private static class getKeysCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclPage_argsTupleScheme getScheme() { - return new getKeysCclPage_argsTupleScheme(); + public getKeysCcl_argsTupleScheme getScheme() { + return new getKeysCcl_argsTupleScheme(); } } - private static class getKeysCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -554791,34 +553789,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_args if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5950 : struct.keys) + for (java.lang.String _iter5922 : struct.keys) { - oprot.writeString(_iter5950); + oprot.writeString(_iter5922); } } } if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -554831,18 +553823,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list5951 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5951.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5952; - for (int _i5953 = 0; _i5953 < _list5951.size; ++_i5953) + org.apache.thrift.protocol.TList _list5923 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5923.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5924; + for (int _i5925 = 0; _i5925 < _list5923.size; ++_i5925) { - _elem5952 = iprot.readString(); - struct.keys.add(_elem5952); + _elem5924 = iprot.readString(); + struct.keys.add(_elem5924); } } struct.setKeysIsSet(true); @@ -554852,21 +553844,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_args struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -554878,8 +553865,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclPage_result"); + public static class getKeysCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCcl_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -554887,8 +553874,8 @@ public static class getKeysCclPage_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -554989,13 +553976,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCcl_result.class, metaDataMap); } - public getKeysCclPage_result() { + public getKeysCcl_result() { } - public getKeysCclPage_result( + public getKeysCcl_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -555013,7 +554000,7 @@ public getKeysCclPage_result( /** * Performs a deep copy on other. */ - public getKeysCclPage_result(getKeysCclPage_result other) { + public getKeysCcl_result(getKeysCcl_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -555055,8 +554042,8 @@ public getKeysCclPage_result(getKeysCclPage_result other) { } @Override - public getKeysCclPage_result deepCopy() { - return new getKeysCclPage_result(this); + public getKeysCcl_result deepCopy() { + return new getKeysCcl_result(this); } @Override @@ -555084,7 +554071,7 @@ public java.util.Map> success) { + public getKeysCcl_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -555109,7 +554096,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -555134,7 +554121,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -555159,7 +554146,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -555184,7 +554171,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -555297,12 +554284,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclPage_result) - return this.equals((getKeysCclPage_result)that); + if (that instanceof getKeysCcl_result) + return this.equals((getKeysCcl_result)that); return false; } - public boolean equals(getKeysCclPage_result that) { + public boolean equals(getKeysCcl_result that) { if (that == null) return false; if (this == that) @@ -555384,7 +554371,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclPage_result other) { + public int compareTo(getKeysCcl_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -555461,7 +554448,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCcl_result("); boolean first = true; sb.append("success:"); @@ -555528,17 +554515,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclPage_resultStandardScheme getScheme() { - return new getKeysCclPage_resultStandardScheme(); + public getKeysCcl_resultStandardScheme getScheme() { + return new getKeysCcl_resultStandardScheme(); } } - private static class getKeysCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -555551,28 +554538,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5954 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5954.size); - long _key5955; - @org.apache.thrift.annotation.Nullable java.util.Map _val5956; - for (int _i5957 = 0; _i5957 < _map5954.size; ++_i5957) + org.apache.thrift.protocol.TMap _map5926 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5926.size); + long _key5927; + @org.apache.thrift.annotation.Nullable java.util.Map _val5928; + for (int _i5929 = 0; _i5929 < _map5926.size; ++_i5929) { - _key5955 = iprot.readI64(); + _key5927 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5958 = iprot.readMapBegin(); - _val5956 = new java.util.LinkedHashMap(2*_map5958.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5959; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5960; - for (int _i5961 = 0; _i5961 < _map5958.size; ++_i5961) + org.apache.thrift.protocol.TMap _map5930 = iprot.readMapBegin(); + _val5928 = new java.util.LinkedHashMap(2*_map5930.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5931; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5932; + for (int _i5933 = 0; _i5933 < _map5930.size; ++_i5933) { - _key5959 = iprot.readString(); - _val5960 = new com.cinchapi.concourse.thrift.TObject(); - _val5960.read(iprot); - _val5956.put(_key5959, _val5960); + _key5931 = iprot.readString(); + _val5932 = new com.cinchapi.concourse.thrift.TObject(); + _val5932.read(iprot); + _val5928.put(_key5931, _val5932); } iprot.readMapEnd(); } - struct.success.put(_key5955, _val5956); + struct.success.put(_key5927, _val5928); } iprot.readMapEnd(); } @@ -555629,7 +554616,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCcl_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -555637,15 +554624,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5962 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5934 : struct.success.entrySet()) { - oprot.writeI64(_iter5962.getKey()); + oprot.writeI64(_iter5934.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5962.getValue().size())); - for (java.util.Map.Entry _iter5963 : _iter5962.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5934.getValue().size())); + for (java.util.Map.Entry _iter5935 : _iter5934.getValue().entrySet()) { - oprot.writeString(_iter5963.getKey()); - _iter5963.getValue().write(oprot); + oprot.writeString(_iter5935.getKey()); + _iter5935.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -555680,17 +554667,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_res } - private static class getKeysCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclPage_resultTupleScheme getScheme() { - return new getKeysCclPage_resultTupleScheme(); + public getKeysCcl_resultTupleScheme getScheme() { + return new getKeysCcl_resultTupleScheme(); } } - private static class getKeysCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -555712,15 +554699,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5964 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5936 : struct.success.entrySet()) { - oprot.writeI64(_iter5964.getKey()); + oprot.writeI64(_iter5936.getKey()); { - oprot.writeI32(_iter5964.getValue().size()); - for (java.util.Map.Entry _iter5965 : _iter5964.getValue().entrySet()) + oprot.writeI32(_iter5936.getValue().size()); + for (java.util.Map.Entry _iter5937 : _iter5936.getValue().entrySet()) { - oprot.writeString(_iter5965.getKey()); - _iter5965.getValue().write(oprot); + oprot.writeString(_iter5937.getKey()); + _iter5937.getValue().write(oprot); } } } @@ -555741,32 +554728,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_resu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5966 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5966.size); - long _key5967; - @org.apache.thrift.annotation.Nullable java.util.Map _val5968; - for (int _i5969 = 0; _i5969 < _map5966.size; ++_i5969) + org.apache.thrift.protocol.TMap _map5938 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5938.size); + long _key5939; + @org.apache.thrift.annotation.Nullable java.util.Map _val5940; + for (int _i5941 = 0; _i5941 < _map5938.size; ++_i5941) { - _key5967 = iprot.readI64(); + _key5939 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5970 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5968 = new java.util.LinkedHashMap(2*_map5970.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5971; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5972; - for (int _i5973 = 0; _i5973 < _map5970.size; ++_i5973) + org.apache.thrift.protocol.TMap _map5942 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5940 = new java.util.LinkedHashMap(2*_map5942.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5943; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5944; + for (int _i5945 = 0; _i5945 < _map5942.size; ++_i5945) { - _key5971 = iprot.readString(); - _val5972 = new com.cinchapi.concourse.thrift.TObject(); - _val5972.read(iprot); - _val5968.put(_key5971, _val5972); + _key5943 = iprot.readString(); + _val5944 = new com.cinchapi.concourse.thrift.TObject(); + _val5944.read(iprot); + _val5940.put(_key5943, _val5944); } } - struct.success.put(_key5967, _val5968); + struct.success.put(_key5939, _val5940); } } struct.setSuccessIsSet(true); @@ -555799,22 +554786,22 @@ private static S scheme(org.apache. } } - public static class getKeysCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclOrder_args"); + public static class getKeysCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -555823,7 +554810,7 @@ public static class getKeysCclOrder_args implements org.apache.thrift.TBase keys, java.lang.String ccl, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -555931,7 +554918,7 @@ public getKeysCclOrder_args( this(); this.keys = keys; this.ccl = ccl; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -555940,7 +554927,7 @@ public getKeysCclOrder_args( /** * Performs a deep copy on other. */ - public getKeysCclOrder_args(getKeysCclOrder_args other) { + public getKeysCclPage_args(getKeysCclPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -555948,8 +554935,8 @@ public getKeysCclOrder_args(getKeysCclOrder_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -555963,15 +554950,15 @@ public getKeysCclOrder_args(getKeysCclOrder_args other) { } @Override - public getKeysCclOrder_args deepCopy() { - return new getKeysCclOrder_args(this); + public getKeysCclPage_args deepCopy() { + return new getKeysCclPage_args(this); } @Override public void clear() { this.keys = null; this.ccl = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -555998,7 +554985,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -556023,7 +555010,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -556044,27 +555031,27 @@ public void setCclIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -556073,7 +555060,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -556098,7 +555085,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -556123,7 +555110,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -556162,11 +555149,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -556207,8 +555194,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -556235,8 +555222,8 @@ public boolean isSet(_Fields field) { return isSetKeys(); case CCL: return isSetCcl(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -556249,12 +555236,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclOrder_args) - return this.equals((getKeysCclOrder_args)that); + if (that instanceof getKeysCclPage_args) + return this.equals((getKeysCclPage_args)that); return false; } - public boolean equals(getKeysCclOrder_args that) { + public boolean equals(getKeysCclPage_args that) { if (that == null) return false; if (this == that) @@ -556278,12 +555265,12 @@ public boolean equals(getKeysCclOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -556329,9 +555316,9 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -556349,7 +555336,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclOrder_args other) { + public int compareTo(getKeysCclPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -556376,12 +555363,12 @@ public int compareTo(getKeysCclOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -556437,7 +555424,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclPage_args("); boolean first = true; sb.append("keys:"); @@ -556456,11 +555443,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -556494,8 +555481,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -556521,17 +555508,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclOrder_argsStandardScheme getScheme() { - return new getKeysCclOrder_argsStandardScheme(); + public getKeysCclPage_argsStandardScheme getScheme() { + return new getKeysCclPage_argsStandardScheme(); } } - private static class getKeysCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -556544,13 +555531,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_arg case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list5974 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list5974.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5975; - for (int _i5976 = 0; _i5976 < _list5974.size; ++_i5976) + org.apache.thrift.protocol.TList _list5946 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5946.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5947; + for (int _i5948 = 0; _i5948 < _list5946.size; ++_i5948) { - _elem5975 = iprot.readString(); - struct.keys.add(_elem5975); + _elem5947 = iprot.readString(); + struct.keys.add(_elem5947); } iprot.readListEnd(); } @@ -556567,11 +555554,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_arg org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ORDER + case 3: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -556614,7 +555601,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -556622,9 +555609,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_ar oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter5977 : struct.keys) + for (java.lang.String _iter5949 : struct.keys) { - oprot.writeString(_iter5977); + oprot.writeString(_iter5949); } oprot.writeListEnd(); } @@ -556635,9 +555622,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_ar oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -556661,17 +555648,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_ar } - private static class getKeysCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclOrder_argsTupleScheme getScheme() { - return new getKeysCclOrder_argsTupleScheme(); + public getKeysCclPage_argsTupleScheme getScheme() { + return new getKeysCclPage_argsTupleScheme(); } } - private static class getKeysCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -556680,7 +555667,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_arg if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -556696,17 +555683,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_arg if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter5978 : struct.keys) + for (java.lang.String _iter5950 : struct.keys) { - oprot.writeString(_iter5978); + oprot.writeString(_iter5950); } } } if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -556720,18 +555707,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list5979 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list5979.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem5980; - for (int _i5981 = 0; _i5981 < _list5979.size; ++_i5981) + org.apache.thrift.protocol.TList _list5951 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5951.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5952; + for (int _i5953 = 0; _i5953 < _list5951.size; ++_i5953) { - _elem5980 = iprot.readString(); - struct.keys.add(_elem5980); + _elem5952 = iprot.readString(); + struct.keys.add(_elem5952); } } struct.setKeysIsSet(true); @@ -556741,9 +555728,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_args struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -556767,8 +555754,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclOrder_result"); + public static class getKeysCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -556776,8 +555763,8 @@ public static class getKeysCclOrder_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -556878,13 +555865,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclPage_result.class, metaDataMap); } - public getKeysCclOrder_result() { + public getKeysCclPage_result() { } - public getKeysCclOrder_result( + public getKeysCclPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -556902,7 +555889,7 @@ public getKeysCclOrder_result( /** * Performs a deep copy on other. */ - public getKeysCclOrder_result(getKeysCclOrder_result other) { + public getKeysCclPage_result(getKeysCclPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -556944,8 +555931,8 @@ public getKeysCclOrder_result(getKeysCclOrder_result other) { } @Override - public getKeysCclOrder_result deepCopy() { - return new getKeysCclOrder_result(this); + public getKeysCclPage_result deepCopy() { + return new getKeysCclPage_result(this); } @Override @@ -556973,7 +555960,7 @@ public java.util.Map> success) { + public getKeysCclPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -556998,7 +555985,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -557023,7 +556010,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -557048,7 +556035,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -557073,7 +556060,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -557186,12 +556173,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclOrder_result) - return this.equals((getKeysCclOrder_result)that); + if (that instanceof getKeysCclPage_result) + return this.equals((getKeysCclPage_result)that); return false; } - public boolean equals(getKeysCclOrder_result that) { + public boolean equals(getKeysCclPage_result that) { if (that == null) return false; if (this == that) @@ -557273,7 +556260,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclOrder_result other) { + public int compareTo(getKeysCclPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -557350,7 +556337,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclPage_result("); boolean first = true; sb.append("success:"); @@ -557417,17 +556404,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclOrder_resultStandardScheme getScheme() { - return new getKeysCclOrder_resultStandardScheme(); + public getKeysCclPage_resultStandardScheme getScheme() { + return new getKeysCclPage_resultStandardScheme(); } } - private static class getKeysCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -557440,28 +556427,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map5982 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map5982.size); - long _key5983; - @org.apache.thrift.annotation.Nullable java.util.Map _val5984; - for (int _i5985 = 0; _i5985 < _map5982.size; ++_i5985) + org.apache.thrift.protocol.TMap _map5954 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5954.size); + long _key5955; + @org.apache.thrift.annotation.Nullable java.util.Map _val5956; + for (int _i5957 = 0; _i5957 < _map5954.size; ++_i5957) { - _key5983 = iprot.readI64(); + _key5955 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5986 = iprot.readMapBegin(); - _val5984 = new java.util.LinkedHashMap(2*_map5986.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5987; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5988; - for (int _i5989 = 0; _i5989 < _map5986.size; ++_i5989) + org.apache.thrift.protocol.TMap _map5958 = iprot.readMapBegin(); + _val5956 = new java.util.LinkedHashMap(2*_map5958.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5959; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5960; + for (int _i5961 = 0; _i5961 < _map5958.size; ++_i5961) { - _key5987 = iprot.readString(); - _val5988 = new com.cinchapi.concourse.thrift.TObject(); - _val5988.read(iprot); - _val5984.put(_key5987, _val5988); + _key5959 = iprot.readString(); + _val5960 = new com.cinchapi.concourse.thrift.TObject(); + _val5960.read(iprot); + _val5956.put(_key5959, _val5960); } iprot.readMapEnd(); } - struct.success.put(_key5983, _val5984); + struct.success.put(_key5955, _val5956); } iprot.readMapEnd(); } @@ -557518,7 +556505,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -557526,15 +556513,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter5990 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5962 : struct.success.entrySet()) { - oprot.writeI64(_iter5990.getKey()); + oprot.writeI64(_iter5962.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5990.getValue().size())); - for (java.util.Map.Entry _iter5991 : _iter5990.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5962.getValue().size())); + for (java.util.Map.Entry _iter5963 : _iter5962.getValue().entrySet()) { - oprot.writeString(_iter5991.getKey()); - _iter5991.getValue().write(oprot); + oprot.writeString(_iter5963.getKey()); + _iter5963.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -557569,17 +556556,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_re } - private static class getKeysCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclOrder_resultTupleScheme getScheme() { - return new getKeysCclOrder_resultTupleScheme(); + public getKeysCclPage_resultTupleScheme getScheme() { + return new getKeysCclPage_resultTupleScheme(); } } - private static class getKeysCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -557601,15 +556588,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter5992 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5964 : struct.success.entrySet()) { - oprot.writeI64(_iter5992.getKey()); + oprot.writeI64(_iter5964.getKey()); { - oprot.writeI32(_iter5992.getValue().size()); - for (java.util.Map.Entry _iter5993 : _iter5992.getValue().entrySet()) + oprot.writeI32(_iter5964.getValue().size()); + for (java.util.Map.Entry _iter5965 : _iter5964.getValue().entrySet()) { - oprot.writeString(_iter5993.getKey()); - _iter5993.getValue().write(oprot); + oprot.writeString(_iter5965.getKey()); + _iter5965.getValue().write(oprot); } } } @@ -557630,32 +556617,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_res } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map5994 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map5994.size); - long _key5995; - @org.apache.thrift.annotation.Nullable java.util.Map _val5996; - for (int _i5997 = 0; _i5997 < _map5994.size; ++_i5997) + org.apache.thrift.protocol.TMap _map5966 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5966.size); + long _key5967; + @org.apache.thrift.annotation.Nullable java.util.Map _val5968; + for (int _i5969 = 0; _i5969 < _map5966.size; ++_i5969) { - _key5995 = iprot.readI64(); + _key5967 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map5998 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val5996 = new java.util.LinkedHashMap(2*_map5998.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key5999; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6000; - for (int _i6001 = 0; _i6001 < _map5998.size; ++_i6001) + org.apache.thrift.protocol.TMap _map5970 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5968 = new java.util.LinkedHashMap(2*_map5970.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5971; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5972; + for (int _i5973 = 0; _i5973 < _map5970.size; ++_i5973) { - _key5999 = iprot.readString(); - _val6000 = new com.cinchapi.concourse.thrift.TObject(); - _val6000.read(iprot); - _val5996.put(_key5999, _val6000); + _key5971 = iprot.readString(); + _val5972 = new com.cinchapi.concourse.thrift.TObject(); + _val5972.read(iprot); + _val5968.put(_key5971, _val5972); } } - struct.success.put(_key5995, _val5996); + struct.success.put(_key5967, _val5968); } } struct.setSuccessIsSet(true); @@ -557688,24 +556675,22 @@ private static S scheme(org.apache. } } - public static class getKeysCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclOrderPage_args"); + public static class getKeysCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -557715,10 +556700,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), ORDER((short)3, "order"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -557740,13 +556724,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // ORDER return ORDER; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -557801,8 +556783,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -557810,17 +556790,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclOrder_args.class, metaDataMap); } - public getKeysCclOrderPage_args() { + public getKeysCclOrder_args() { } - public getKeysCclOrderPage_args( + public getKeysCclOrder_args( java.util.List keys, java.lang.String ccl, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -557829,7 +556808,6 @@ public getKeysCclOrderPage_args( this.keys = keys; this.ccl = ccl; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -557838,7 +556816,7 @@ public getKeysCclOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysCclOrderPage_args(getKeysCclOrderPage_args other) { + public getKeysCclOrder_args(getKeysCclOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -557849,9 +556827,6 @@ public getKeysCclOrderPage_args(getKeysCclOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -557864,8 +556839,8 @@ public getKeysCclOrderPage_args(getKeysCclOrderPage_args other) { } @Override - public getKeysCclOrderPage_args deepCopy() { - return new getKeysCclOrderPage_args(this); + public getKeysCclOrder_args deepCopy() { + return new getKeysCclOrder_args(this); } @Override @@ -557873,7 +556848,6 @@ public void clear() { this.keys = null; this.ccl = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -557900,7 +556874,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -557925,7 +556899,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -557950,7 +556924,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -557970,37 +556944,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -558025,7 +556974,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -558050,7 +556999,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -558097,14 +557046,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -558145,9 +557086,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -558175,8 +557113,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -558189,12 +557125,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclOrderPage_args) - return this.equals((getKeysCclOrderPage_args)that); + if (that instanceof getKeysCclOrder_args) + return this.equals((getKeysCclOrder_args)that); return false; } - public boolean equals(getKeysCclOrderPage_args that) { + public boolean equals(getKeysCclOrder_args that) { if (that == null) return false; if (this == that) @@ -558227,15 +557163,6 @@ public boolean equals(getKeysCclOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -558282,10 +557209,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -558302,7 +557225,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclOrderPage_args other) { + public int compareTo(getKeysCclOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -558339,16 +557262,6 @@ public int compareTo(getKeysCclOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -558400,7 +557313,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclOrder_args("); boolean first = true; sb.append("keys:"); @@ -558427,14 +557340,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -558468,9 +557373,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -558495,17 +557397,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclOrderPage_argsStandardScheme getScheme() { - return new getKeysCclOrderPage_argsStandardScheme(); + public getKeysCclOrder_argsStandardScheme getScheme() { + return new getKeysCclOrder_argsStandardScheme(); } } - private static class getKeysCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -558518,13 +557420,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6002 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6002.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6003; - for (int _i6004 = 0; _i6004 < _list6002.size; ++_i6004) + org.apache.thrift.protocol.TList _list5974 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list5974.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5975; + for (int _i5976 = 0; _i5976 < _list5974.size; ++_i5976) { - _elem6003 = iprot.readString(); - struct.keys.add(_elem6003); + _elem5975 = iprot.readString(); + struct.keys.add(_elem5975); } iprot.readListEnd(); } @@ -558550,16 +557452,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -558568,7 +557461,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -558577,7 +557470,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -558597,7 +557490,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -558605,9 +557498,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPag oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6005 : struct.keys) + for (java.lang.String _iter5977 : struct.keys) { - oprot.writeString(_iter6005); + oprot.writeString(_iter5977); } oprot.writeListEnd(); } @@ -558623,11 +557516,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPag struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -558649,17 +557537,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPag } - private static class getKeysCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclOrderPage_argsTupleScheme getScheme() { - return new getKeysCclOrderPage_argsTupleScheme(); + public getKeysCclOrder_argsTupleScheme getScheme() { + return new getKeysCclOrder_argsTupleScheme(); } } - private static class getKeysCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -558671,25 +557559,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6006 : struct.keys) + for (java.lang.String _iter5978 : struct.keys) { - oprot.writeString(_iter6006); + oprot.writeString(_iter5978); } } } @@ -558699,9 +557584,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -558714,18 +557596,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6007 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6007.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6008; - for (int _i6009 = 0; _i6009 < _list6007.size; ++_i6009) + org.apache.thrift.protocol.TList _list5979 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list5979.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem5980; + for (int _i5981 = 0; _i5981 < _list5979.size; ++_i5981) { - _elem6008 = iprot.readString(); - struct.keys.add(_elem6008); + _elem5980 = iprot.readString(); + struct.keys.add(_elem5980); } } struct.setKeysIsSet(true); @@ -558740,21 +557622,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_ struct.setOrderIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -558766,8 +557643,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclOrderPage_result"); + public static class getKeysCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -558775,8 +557652,8 @@ public static class getKeysCclOrderPage_result implements org.apache.thrift.TBas private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -558877,13 +557754,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclOrder_result.class, metaDataMap); } - public getKeysCclOrderPage_result() { + public getKeysCclOrder_result() { } - public getKeysCclOrderPage_result( + public getKeysCclOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -558901,7 +557778,7 @@ public getKeysCclOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysCclOrderPage_result(getKeysCclOrderPage_result other) { + public getKeysCclOrder_result(getKeysCclOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -558943,8 +557820,8 @@ public getKeysCclOrderPage_result(getKeysCclOrderPage_result other) { } @Override - public getKeysCclOrderPage_result deepCopy() { - return new getKeysCclOrderPage_result(this); + public getKeysCclOrder_result deepCopy() { + return new getKeysCclOrder_result(this); } @Override @@ -558972,7 +557849,7 @@ public java.util.Map> success) { + public getKeysCclOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -558997,7 +557874,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -559022,7 +557899,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -559047,7 +557924,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -559072,7 +557949,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -559185,12 +558062,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclOrderPage_result) - return this.equals((getKeysCclOrderPage_result)that); + if (that instanceof getKeysCclOrder_result) + return this.equals((getKeysCclOrder_result)that); return false; } - public boolean equals(getKeysCclOrderPage_result that) { + public boolean equals(getKeysCclOrder_result that) { if (that == null) return false; if (this == that) @@ -559272,7 +558149,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclOrderPage_result other) { + public int compareTo(getKeysCclOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -559349,7 +558226,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclOrder_result("); boolean first = true; sb.append("success:"); @@ -559416,17 +558293,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclOrderPage_resultStandardScheme getScheme() { - return new getKeysCclOrderPage_resultStandardScheme(); + public getKeysCclOrder_resultStandardScheme getScheme() { + return new getKeysCclOrder_resultStandardScheme(); } } - private static class getKeysCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -559439,28 +558316,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6010 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6010.size); - long _key6011; - @org.apache.thrift.annotation.Nullable java.util.Map _val6012; - for (int _i6013 = 0; _i6013 < _map6010.size; ++_i6013) + org.apache.thrift.protocol.TMap _map5982 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map5982.size); + long _key5983; + @org.apache.thrift.annotation.Nullable java.util.Map _val5984; + for (int _i5985 = 0; _i5985 < _map5982.size; ++_i5985) { - _key6011 = iprot.readI64(); + _key5983 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6014 = iprot.readMapBegin(); - _val6012 = new java.util.LinkedHashMap(2*_map6014.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6015; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6016; - for (int _i6017 = 0; _i6017 < _map6014.size; ++_i6017) + org.apache.thrift.protocol.TMap _map5986 = iprot.readMapBegin(); + _val5984 = new java.util.LinkedHashMap(2*_map5986.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5987; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val5988; + for (int _i5989 = 0; _i5989 < _map5986.size; ++_i5989) { - _key6015 = iprot.readString(); - _val6016 = new com.cinchapi.concourse.thrift.TObject(); - _val6016.read(iprot); - _val6012.put(_key6015, _val6016); + _key5987 = iprot.readString(); + _val5988 = new com.cinchapi.concourse.thrift.TObject(); + _val5988.read(iprot); + _val5984.put(_key5987, _val5988); } iprot.readMapEnd(); } - struct.success.put(_key6011, _val6012); + struct.success.put(_key5983, _val5984); } iprot.readMapEnd(); } @@ -559517,7 +558394,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -559525,15 +558402,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPag oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6018 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5990 : struct.success.entrySet()) { - oprot.writeI64(_iter6018.getKey()); + oprot.writeI64(_iter5990.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6018.getValue().size())); - for (java.util.Map.Entry _iter6019 : _iter6018.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter5990.getValue().size())); + for (java.util.Map.Entry _iter5991 : _iter5990.getValue().entrySet()) { - oprot.writeString(_iter6019.getKey()); - _iter6019.getValue().write(oprot); + oprot.writeString(_iter5991.getKey()); + _iter5991.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -559568,17 +558445,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPag } - private static class getKeysCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclOrderPage_resultTupleScheme getScheme() { - return new getKeysCclOrderPage_resultTupleScheme(); + public getKeysCclOrder_resultTupleScheme getScheme() { + return new getKeysCclOrder_resultTupleScheme(); } } - private static class getKeysCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -559600,15 +558477,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6020 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter5992 : struct.success.entrySet()) { - oprot.writeI64(_iter6020.getKey()); + oprot.writeI64(_iter5992.getKey()); { - oprot.writeI32(_iter6020.getValue().size()); - for (java.util.Map.Entry _iter6021 : _iter6020.getValue().entrySet()) + oprot.writeI32(_iter5992.getValue().size()); + for (java.util.Map.Entry _iter5993 : _iter5992.getValue().entrySet()) { - oprot.writeString(_iter6021.getKey()); - _iter6021.getValue().write(oprot); + oprot.writeString(_iter5993.getKey()); + _iter5993.getValue().write(oprot); } } } @@ -559629,32 +558506,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6022 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6022.size); - long _key6023; - @org.apache.thrift.annotation.Nullable java.util.Map _val6024; - for (int _i6025 = 0; _i6025 < _map6022.size; ++_i6025) + org.apache.thrift.protocol.TMap _map5994 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map5994.size); + long _key5995; + @org.apache.thrift.annotation.Nullable java.util.Map _val5996; + for (int _i5997 = 0; _i5997 < _map5994.size; ++_i5997) { - _key6023 = iprot.readI64(); + _key5995 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6026 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6024 = new java.util.LinkedHashMap(2*_map6026.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6027; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6028; - for (int _i6029 = 0; _i6029 < _map6026.size; ++_i6029) + org.apache.thrift.protocol.TMap _map5998 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val5996 = new java.util.LinkedHashMap(2*_map5998.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key5999; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6000; + for (int _i6001 = 0; _i6001 < _map5998.size; ++_i6001) { - _key6027 = iprot.readString(); - _val6028 = new com.cinchapi.concourse.thrift.TObject(); - _val6028.read(iprot); - _val6024.put(_key6027, _val6028); + _key5999 = iprot.readString(); + _val6000 = new com.cinchapi.concourse.thrift.TObject(); + _val6000.read(iprot); + _val5996.put(_key5999, _val6000); } } - struct.success.put(_key6023, _val6024); + struct.success.put(_key5995, _val5996); } } struct.setSuccessIsSet(true); @@ -559687,22 +558564,24 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTime_args"); + public static class getKeysCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -559710,11 +558589,12 @@ public static class getKeysCriteriaTime_args implements org.apache.thrift.TBase< /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), - CRITERIA((short)2, "criteria"), - TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CCL((short)2, "ccl"), + ORDER((short)3, "order"), + PAGE((short)4, "page"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -559732,15 +558612,17 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // CRITERIA - return CRITERIA; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 2: // CCL + return CCL; + case 3: // ORDER + return ORDER; + case 4: // PAGE + return PAGE; + case 5: // CREDS return CREDS; - case 5: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -559785,18 +558667,18 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -559804,25 +558686,26 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclOrderPage_args.class, metaDataMap); } - public getKeysCriteriaTime_args() { + public getKeysCclOrderPage_args() { } - public getKeysCriteriaTime_args( + public getKeysCclOrderPage_args( java.util.List keys, - com.cinchapi.concourse.thrift.TCriteria criteria, - long timestamp, + java.lang.String ccl, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.criteria = criteria; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.ccl = ccl; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -559831,16 +558714,20 @@ public getKeysCriteriaTime_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaTime_args(getKeysCriteriaTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public getKeysCclOrderPage_args(getKeysCclOrderPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetCriteria()) { - this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + if (other.isSetCcl()) { + this.ccl = other.ccl; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -559853,16 +558740,16 @@ public getKeysCriteriaTime_args(getKeysCriteriaTime_args other) { } @Override - public getKeysCriteriaTime_args deepCopy() { - return new getKeysCriteriaTime_args(this); + public getKeysCclOrderPage_args deepCopy() { + return new getKeysCclOrderPage_args(this); } @Override public void clear() { this.keys = null; - this.criteria = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.ccl = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -559889,7 +558776,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -559910,51 +558797,78 @@ public void setKeysIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TCriteria getCriteria() { - return this.criteria; + public java.lang.String getCcl() { + return this.ccl; } - public getKeysCriteriaTime_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { - this.criteria = criteria; + public getKeysCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetCriteria() { - this.criteria = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ - public boolean isSetCriteria() { - return this.criteria != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setCriteriaIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.criteria = null; + this.ccl = null; } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public getKeysCriteriaTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public getKeysCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -559962,7 +558876,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -559987,7 +558901,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -560012,7 +558926,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -560043,19 +558957,27 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case CRITERIA: + case CCL: if (value == null) { - unsetCriteria(); + unsetCcl(); } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + setCcl((java.lang.String)value); } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -560093,11 +559015,14 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case CRITERIA: - return getCriteria(); + case CCL: + return getCcl(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -560122,10 +559047,12 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case CRITERIA: - return isSetCriteria(); - case TIMESTAMP: - return isSetTimestamp(); + case CCL: + return isSetCcl(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -560138,12 +559065,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTime_args) - return this.equals((getKeysCriteriaTime_args)that); + if (that instanceof getKeysCclOrderPage_args) + return this.equals((getKeysCclOrderPage_args)that); return false; } - public boolean equals(getKeysCriteriaTime_args that) { + public boolean equals(getKeysCclOrderPage_args that) { if (that == null) return false; if (this == that) @@ -560158,21 +559085,30 @@ public boolean equals(getKeysCriteriaTime_args that) { return false; } - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.criteria.equals(that.criteria)) + if (!this.ccl.equals(that.ccl)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -560214,11 +559150,17 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -560236,7 +559178,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTime_args other) { + public int compareTo(getKeysCclOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -560253,22 +559195,32 @@ public int compareTo(getKeysCriteriaTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -560324,7 +559276,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -560335,16 +559287,28 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("criteria:"); - if (this.criteria == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.criteria); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -560377,8 +559341,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -560398,25 +559365,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeysCriteriaTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTime_argsStandardScheme getScheme() { - return new getKeysCriteriaTime_argsStandardScheme(); + public getKeysCclOrderPage_argsStandardScheme getScheme() { + return new getKeysCclOrderPage_argsStandardScheme(); } } - private static class getKeysCriteriaTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -560429,13 +559394,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6030 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6030.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6031; - for (int _i6032 = 0; _i6032 < _list6030.size; ++_i6032) + org.apache.thrift.protocol.TList _list6002 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6002.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6003; + for (int _i6004 = 0; _i6004 < _list6002.size; ++_i6004) { - _elem6031 = iprot.readString(); - struct.keys.add(_elem6031); + _elem6003 = iprot.readString(); + struct.keys.add(_elem6003); } iprot.readListEnd(); } @@ -560444,24 +559409,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CRITERIA + case 2: // CCL + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // ORDER if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 4: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -560470,7 +559444,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -560479,7 +559453,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -560499,7 +559473,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -560507,22 +559481,29 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6033 : struct.keys) + for (java.lang.String _iter6005 : struct.keys) { - oprot.writeString(_iter6033); + oprot.writeString(_iter6005); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -560544,52 +559525,58 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTime_argsTupleScheme getScheme() { - return new getKeysCriteriaTime_argsTupleScheme(); + public getKeysCclOrderPage_argsTupleScheme getScheme() { + return new getKeysCclOrderPage_argsTupleScheme(); } } - private static class getKeysCriteriaTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetCriteria()) { + if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6034 : struct.keys) + for (java.lang.String _iter6006 : struct.keys) { - oprot.writeString(_iter6034); + oprot.writeString(_iter6006); } } } - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -560603,42 +559590,47 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6035 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6035.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6036; - for (int _i6037 = 0; _i6037 < _list6035.size; ++_i6037) + org.apache.thrift.protocol.TList _list6007 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6007.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6008; + for (int _i6009 = 0; _i6009 < _list6007.size; ++_i6009) { - _elem6036 = iprot.readString(); - struct.keys.add(_elem6036); + _elem6008 = iprot.readString(); + struct.keys.add(_elem6008); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(3)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -560650,28 +559642,31 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTime_result"); + public static class getKeysCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -560695,6 +559690,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -560752,31 +559749,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclOrderPage_result.class, metaDataMap); } - public getKeysCriteriaTime_result() { + public getKeysCclOrderPage_result() { } - public getKeysCriteriaTime_result( + public getKeysCclOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysCriteriaTime_result(getKeysCriteriaTime_result other) { + public getKeysCclOrderPage_result(getKeysCclOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -560810,13 +559811,16 @@ public getKeysCriteriaTime_result(getKeysCriteriaTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public getKeysCriteriaTime_result deepCopy() { - return new getKeysCriteriaTime_result(this); + public getKeysCclOrderPage_result deepCopy() { + return new getKeysCclOrderPage_result(this); } @Override @@ -560825,6 +559829,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -560843,7 +559848,7 @@ public java.util.Map> success) { + public getKeysCclOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -560868,7 +559873,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -560893,7 +559898,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -560914,11 +559919,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCriteriaTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -560938,6 +559943,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getKeysCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -560969,7 +559999,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -560992,6 +560030,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -561012,18 +560053,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTime_result) - return this.equals((getKeysCriteriaTime_result)that); + if (that instanceof getKeysCclOrderPage_result) + return this.equals((getKeysCclOrderPage_result)that); return false; } - public boolean equals(getKeysCriteriaTime_result that) { + public boolean equals(getKeysCclOrderPage_result that) { if (that == null) return false; if (this == that) @@ -561065,6 +560108,15 @@ public boolean equals(getKeysCriteriaTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -561088,11 +560140,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(getKeysCriteriaTime_result other) { + public int compareTo(getKeysCclOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -561139,6 +560195,16 @@ public int compareTo(getKeysCriteriaTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -561159,7 +560225,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclOrderPage_result("); boolean first = true; sb.append("success:"); @@ -561193,6 +560259,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -561218,17 +560292,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTime_resultStandardScheme getScheme() { - return new getKeysCriteriaTime_resultStandardScheme(); + public getKeysCclOrderPage_resultStandardScheme getScheme() { + return new getKeysCclOrderPage_resultStandardScheme(); } } - private static class getKeysCriteriaTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -561241,28 +560315,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6038 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6038.size); - long _key6039; - @org.apache.thrift.annotation.Nullable java.util.Map _val6040; - for (int _i6041 = 0; _i6041 < _map6038.size; ++_i6041) + org.apache.thrift.protocol.TMap _map6010 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6010.size); + long _key6011; + @org.apache.thrift.annotation.Nullable java.util.Map _val6012; + for (int _i6013 = 0; _i6013 < _map6010.size; ++_i6013) { - _key6039 = iprot.readI64(); + _key6011 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6042 = iprot.readMapBegin(); - _val6040 = new java.util.LinkedHashMap(2*_map6042.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6043; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6044; - for (int _i6045 = 0; _i6045 < _map6042.size; ++_i6045) + org.apache.thrift.protocol.TMap _map6014 = iprot.readMapBegin(); + _val6012 = new java.util.LinkedHashMap(2*_map6014.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6015; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6016; + for (int _i6017 = 0; _i6017 < _map6014.size; ++_i6017) { - _key6043 = iprot.readString(); - _val6044 = new com.cinchapi.concourse.thrift.TObject(); - _val6044.read(iprot); - _val6040.put(_key6043, _val6044); + _key6015 = iprot.readString(); + _val6016 = new com.cinchapi.concourse.thrift.TObject(); + _val6016.read(iprot); + _val6012.put(_key6015, _val6016); } iprot.readMapEnd(); } - struct.success.put(_key6039, _val6040); + struct.success.put(_key6011, _val6012); } iprot.readMapEnd(); } @@ -561291,13 +560365,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -561310,7 +560393,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -561318,15 +560401,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6046 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6018 : struct.success.entrySet()) { - oprot.writeI64(_iter6046.getKey()); + oprot.writeI64(_iter6018.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6046.getValue().size())); - for (java.util.Map.Entry _iter6047 : _iter6046.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6018.getValue().size())); + for (java.util.Map.Entry _iter6019 : _iter6018.getValue().entrySet()) { - oprot.writeString(_iter6047.getKey()); - _iter6047.getValue().write(oprot); + oprot.writeString(_iter6019.getKey()); + _iter6019.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -561350,23 +560433,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysCriteriaTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTime_resultTupleScheme getScheme() { - return new getKeysCriteriaTime_resultTupleScheme(); + public getKeysCclOrderPage_resultTupleScheme getScheme() { + return new getKeysCclOrderPage_resultTupleScheme(); } } - private static class getKeysCriteriaTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -561381,19 +560469,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6048 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6020 : struct.success.entrySet()) { - oprot.writeI64(_iter6048.getKey()); + oprot.writeI64(_iter6020.getKey()); { - oprot.writeI32(_iter6048.getValue().size()); - for (java.util.Map.Entry _iter6049 : _iter6048.getValue().entrySet()) + oprot.writeI32(_iter6020.getValue().size()); + for (java.util.Map.Entry _iter6021 : _iter6020.getValue().entrySet()) { - oprot.writeString(_iter6049.getKey()); - _iter6049.getValue().write(oprot); + oprot.writeString(_iter6021.getKey()); + _iter6021.getValue().write(oprot); } } } @@ -561408,35 +560499,38 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6050 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6050.size); - long _key6051; - @org.apache.thrift.annotation.Nullable java.util.Map _val6052; - for (int _i6053 = 0; _i6053 < _map6050.size; ++_i6053) + org.apache.thrift.protocol.TMap _map6022 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6022.size); + long _key6023; + @org.apache.thrift.annotation.Nullable java.util.Map _val6024; + for (int _i6025 = 0; _i6025 < _map6022.size; ++_i6025) { - _key6051 = iprot.readI64(); + _key6023 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6054 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6052 = new java.util.LinkedHashMap(2*_map6054.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6055; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6056; - for (int _i6057 = 0; _i6057 < _map6054.size; ++_i6057) + org.apache.thrift.protocol.TMap _map6026 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6024 = new java.util.LinkedHashMap(2*_map6026.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6027; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6028; + for (int _i6029 = 0; _i6029 < _map6026.size; ++_i6029) { - _key6055 = iprot.readString(); - _val6056 = new com.cinchapi.concourse.thrift.TObject(); - _val6056.read(iprot); - _val6052.put(_key6055, _val6056); + _key6027 = iprot.readString(); + _val6028 = new com.cinchapi.concourse.thrift.TObject(); + _val6028.read(iprot); + _val6024.put(_key6027, _val6028); } } - struct.success.put(_key6051, _val6052); + struct.success.put(_key6023, _val6024); } } struct.setSuccessIsSet(true); @@ -561452,10 +560546,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_ struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -561464,24 +560563,22 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimePage_args"); + public static class getKeysCriteriaTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -561491,10 +560588,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -561516,13 +560612,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -561579,8 +560673,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -561588,17 +560680,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTime_args.class, metaDataMap); } - public getKeysCriteriaTimePage_args() { + public getKeysCriteriaTime_args() { } - public getKeysCriteriaTimePage_args( + public getKeysCriteriaTime_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -561608,7 +560699,6 @@ public getKeysCriteriaTimePage_args( this.criteria = criteria; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -561617,7 +560707,7 @@ public getKeysCriteriaTimePage_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimePage_args(getKeysCriteriaTimePage_args other) { + public getKeysCriteriaTime_args(getKeysCriteriaTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -561627,9 +560717,6 @@ public getKeysCriteriaTimePage_args(getKeysCriteriaTimePage_args other) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -561642,8 +560729,8 @@ public getKeysCriteriaTimePage_args(getKeysCriteriaTimePage_args other) { } @Override - public getKeysCriteriaTimePage_args deepCopy() { - return new getKeysCriteriaTimePage_args(this); + public getKeysCriteriaTime_args deepCopy() { + return new getKeysCriteriaTime_args(this); } @Override @@ -561652,7 +560739,6 @@ public void clear() { this.criteria = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -561679,7 +560765,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -561704,7 +560790,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaTimePage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaTime_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -561728,7 +560814,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysCriteriaTimePage_args setTimestamp(long timestamp) { + public getKeysCriteriaTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -561747,37 +560833,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCriteriaTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -561802,7 +560863,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -561827,7 +560888,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -561874,14 +560935,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -561922,9 +560975,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -561952,8 +561002,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -561966,12 +561014,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimePage_args) - return this.equals((getKeysCriteriaTimePage_args)that); + if (that instanceof getKeysCriteriaTime_args) + return this.equals((getKeysCriteriaTime_args)that); return false; } - public boolean equals(getKeysCriteriaTimePage_args that) { + public boolean equals(getKeysCriteriaTime_args that) { if (that == null) return false; if (this == that) @@ -562004,15 +561052,6 @@ public boolean equals(getKeysCriteriaTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -562057,10 +561096,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -562077,7 +561112,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimePage_args other) { + public int compareTo(getKeysCriteriaTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -562114,16 +561149,6 @@ public int compareTo(getKeysCriteriaTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -562175,7 +561200,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTime_args("); boolean first = true; sb.append("keys:"); @@ -562198,14 +561223,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -562239,9 +561256,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -562268,17 +561282,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimePage_argsStandardScheme getScheme() { - return new getKeysCriteriaTimePage_argsStandardScheme(); + public getKeysCriteriaTime_argsStandardScheme getScheme() { + return new getKeysCriteriaTime_argsStandardScheme(); } } - private static class getKeysCriteriaTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -562291,13 +561305,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6058 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6058.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6059; - for (int _i6060 = 0; _i6060 < _list6058.size; ++_i6060) + org.apache.thrift.protocol.TList _list6030 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6030.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6031; + for (int _i6032 = 0; _i6032 < _list6030.size; ++_i6032) { - _elem6059 = iprot.readString(); - struct.keys.add(_elem6059); + _elem6031 = iprot.readString(); + struct.keys.add(_elem6031); } iprot.readListEnd(); } @@ -562323,16 +561337,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -562341,7 +561346,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -562350,7 +561355,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -562370,7 +561375,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -562378,9 +561383,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6061 : struct.keys) + for (java.lang.String _iter6033 : struct.keys) { - oprot.writeString(_iter6061); + oprot.writeString(_iter6033); } oprot.writeListEnd(); } @@ -562394,11 +561399,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -562420,17 +561420,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimePage_argsTupleScheme getScheme() { - return new getKeysCriteriaTimePage_argsTupleScheme(); + public getKeysCriteriaTime_argsTupleScheme getScheme() { + return new getKeysCriteriaTime_argsTupleScheme(); } } - private static class getKeysCriteriaTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -562442,25 +561442,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6062 : struct.keys) + for (java.lang.String _iter6034 : struct.keys) { - oprot.writeString(_iter6062); + oprot.writeString(_iter6034); } } } @@ -562470,9 +561467,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -562485,18 +561479,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6063 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6063.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6064; - for (int _i6065 = 0; _i6065 < _list6063.size; ++_i6065) + org.apache.thrift.protocol.TList _list6035 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6035.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6036; + for (int _i6037 = 0; _i6037 < _list6035.size; ++_i6037) { - _elem6064 = iprot.readString(); - struct.keys.add(_elem6064); + _elem6036 = iprot.readString(); + struct.keys.add(_elem6036); } } struct.setKeysIsSet(true); @@ -562511,21 +561505,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeP struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -562537,16 +561526,16 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimePage_result"); + public static class getKeysCriteriaTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -562641,13 +561630,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTime_result.class, metaDataMap); } - public getKeysCriteriaTimePage_result() { + public getKeysCriteriaTime_result() { } - public getKeysCriteriaTimePage_result( + public getKeysCriteriaTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -562663,7 +561652,7 @@ public getKeysCriteriaTimePage_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimePage_result(getKeysCriteriaTimePage_result other) { + public getKeysCriteriaTime_result(getKeysCriteriaTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -562702,8 +561691,8 @@ public getKeysCriteriaTimePage_result(getKeysCriteriaTimePage_result other) { } @Override - public getKeysCriteriaTimePage_result deepCopy() { - return new getKeysCriteriaTimePage_result(this); + public getKeysCriteriaTime_result deepCopy() { + return new getKeysCriteriaTime_result(this); } @Override @@ -562730,7 +561719,7 @@ public java.util.Map> success) { + public getKeysCriteriaTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -562755,7 +561744,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -562780,7 +561769,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -562805,7 +561794,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysCriteriaTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysCriteriaTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -562905,12 +561894,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimePage_result) - return this.equals((getKeysCriteriaTimePage_result)that); + if (that instanceof getKeysCriteriaTime_result) + return this.equals((getKeysCriteriaTime_result)that); return false; } - public boolean equals(getKeysCriteriaTimePage_result that) { + public boolean equals(getKeysCriteriaTime_result that) { if (that == null) return false; if (this == that) @@ -562979,7 +561968,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimePage_result other) { + public int compareTo(getKeysCriteriaTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -563046,7 +562035,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTime_result("); boolean first = true; sb.append("success:"); @@ -563105,17 +562094,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimePage_resultStandardScheme getScheme() { - return new getKeysCriteriaTimePage_resultStandardScheme(); + public getKeysCriteriaTime_resultStandardScheme getScheme() { + return new getKeysCriteriaTime_resultStandardScheme(); } } - private static class getKeysCriteriaTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -563128,28 +562117,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6066 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6066.size); - long _key6067; - @org.apache.thrift.annotation.Nullable java.util.Map _val6068; - for (int _i6069 = 0; _i6069 < _map6066.size; ++_i6069) + org.apache.thrift.protocol.TMap _map6038 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6038.size); + long _key6039; + @org.apache.thrift.annotation.Nullable java.util.Map _val6040; + for (int _i6041 = 0; _i6041 < _map6038.size; ++_i6041) { - _key6067 = iprot.readI64(); + _key6039 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6070 = iprot.readMapBegin(); - _val6068 = new java.util.LinkedHashMap(2*_map6070.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6071; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6072; - for (int _i6073 = 0; _i6073 < _map6070.size; ++_i6073) + org.apache.thrift.protocol.TMap _map6042 = iprot.readMapBegin(); + _val6040 = new java.util.LinkedHashMap(2*_map6042.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6043; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6044; + for (int _i6045 = 0; _i6045 < _map6042.size; ++_i6045) { - _key6071 = iprot.readString(); - _val6072 = new com.cinchapi.concourse.thrift.TObject(); - _val6072.read(iprot); - _val6068.put(_key6071, _val6072); + _key6043 = iprot.readString(); + _val6044 = new com.cinchapi.concourse.thrift.TObject(); + _val6044.read(iprot); + _val6040.put(_key6043, _val6044); } iprot.readMapEnd(); } - struct.success.put(_key6067, _val6068); + struct.success.put(_key6039, _val6040); } iprot.readMapEnd(); } @@ -563197,7 +562186,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -563205,15 +562194,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6074 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6046 : struct.success.entrySet()) { - oprot.writeI64(_iter6074.getKey()); + oprot.writeI64(_iter6046.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6074.getValue().size())); - for (java.util.Map.Entry _iter6075 : _iter6074.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6046.getValue().size())); + for (java.util.Map.Entry _iter6047 : _iter6046.getValue().entrySet()) { - oprot.writeString(_iter6075.getKey()); - _iter6075.getValue().write(oprot); + oprot.writeString(_iter6047.getKey()); + _iter6047.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -563243,17 +562232,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimePage_resultTupleScheme getScheme() { - return new getKeysCriteriaTimePage_resultTupleScheme(); + public getKeysCriteriaTime_resultTupleScheme getScheme() { + return new getKeysCriteriaTime_resultTupleScheme(); } } - private static class getKeysCriteriaTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -563272,15 +562261,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6076 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6048 : struct.success.entrySet()) { - oprot.writeI64(_iter6076.getKey()); + oprot.writeI64(_iter6048.getKey()); { - oprot.writeI32(_iter6076.getValue().size()); - for (java.util.Map.Entry _iter6077 : _iter6076.getValue().entrySet()) + oprot.writeI32(_iter6048.getValue().size()); + for (java.util.Map.Entry _iter6049 : _iter6048.getValue().entrySet()) { - oprot.writeString(_iter6077.getKey()); - _iter6077.getValue().write(oprot); + oprot.writeString(_iter6049.getKey()); + _iter6049.getValue().write(oprot); } } } @@ -563298,32 +562287,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6078 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6078.size); - long _key6079; - @org.apache.thrift.annotation.Nullable java.util.Map _val6080; - for (int _i6081 = 0; _i6081 < _map6078.size; ++_i6081) + org.apache.thrift.protocol.TMap _map6050 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6050.size); + long _key6051; + @org.apache.thrift.annotation.Nullable java.util.Map _val6052; + for (int _i6053 = 0; _i6053 < _map6050.size; ++_i6053) { - _key6079 = iprot.readI64(); + _key6051 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6082 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6080 = new java.util.LinkedHashMap(2*_map6082.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6083; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6084; - for (int _i6085 = 0; _i6085 < _map6082.size; ++_i6085) + org.apache.thrift.protocol.TMap _map6054 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6052 = new java.util.LinkedHashMap(2*_map6054.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6055; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6056; + for (int _i6057 = 0; _i6057 < _map6054.size; ++_i6057) { - _key6083 = iprot.readString(); - _val6084 = new com.cinchapi.concourse.thrift.TObject(); - _val6084.read(iprot); - _val6080.put(_key6083, _val6084); + _key6055 = iprot.readString(); + _val6056 = new com.cinchapi.concourse.thrift.TObject(); + _val6056.read(iprot); + _val6052.put(_key6055, _val6056); } } - struct.success.put(_key6079, _val6080); + struct.success.put(_key6051, _val6052); } } struct.setSuccessIsSet(true); @@ -563351,24 +562340,24 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimeOrder_args"); + public static class getKeysCriteriaTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimePage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -563378,7 +562367,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -563403,8 +562392,8 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -563466,8 +562455,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -563475,17 +562464,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimePage_args.class, metaDataMap); } - public getKeysCriteriaTimeOrder_args() { + public getKeysCriteriaTimePage_args() { } - public getKeysCriteriaTimeOrder_args( + public getKeysCriteriaTimePage_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -563495,7 +562484,7 @@ public getKeysCriteriaTimeOrder_args( this.criteria = criteria; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -563504,7 +562493,7 @@ public getKeysCriteriaTimeOrder_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimeOrder_args(getKeysCriteriaTimeOrder_args other) { + public getKeysCriteriaTimePage_args(getKeysCriteriaTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -563514,8 +562503,8 @@ public getKeysCriteriaTimeOrder_args(getKeysCriteriaTimeOrder_args other) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -563529,8 +562518,8 @@ public getKeysCriteriaTimeOrder_args(getKeysCriteriaTimeOrder_args other) { } @Override - public getKeysCriteriaTimeOrder_args deepCopy() { - return new getKeysCriteriaTimeOrder_args(this); + public getKeysCriteriaTimePage_args deepCopy() { + return new getKeysCriteriaTimePage_args(this); } @Override @@ -563539,7 +562528,7 @@ public void clear() { this.criteria = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -563566,7 +562555,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -563591,7 +562580,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaTimeOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaTimePage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -563615,7 +562604,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysCriteriaTimeOrder_args setTimestamp(long timestamp) { + public getKeysCriteriaTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -563635,27 +562624,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysCriteriaTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysCriteriaTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -563664,7 +562653,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -563689,7 +562678,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -563714,7 +562703,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -563761,11 +562750,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -563809,8 +562798,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -563839,8 +562828,8 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -563853,12 +562842,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimeOrder_args) - return this.equals((getKeysCriteriaTimeOrder_args)that); + if (that instanceof getKeysCriteriaTimePage_args) + return this.equals((getKeysCriteriaTimePage_args)that); return false; } - public boolean equals(getKeysCriteriaTimeOrder_args that) { + public boolean equals(getKeysCriteriaTimePage_args that) { if (that == null) return false; if (this == that) @@ -563891,12 +562880,12 @@ public boolean equals(getKeysCriteriaTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -563944,9 +562933,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -563964,7 +562953,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimeOrder_args other) { + public int compareTo(getKeysCriteriaTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -564001,12 +562990,12 @@ public int compareTo(getKeysCriteriaTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -564062,7 +563051,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimePage_args("); boolean first = true; sb.append("keys:"); @@ -564085,11 +563074,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -564126,8 +563115,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -564155,17 +563144,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimeOrder_argsStandardScheme getScheme() { - return new getKeysCriteriaTimeOrder_argsStandardScheme(); + public getKeysCriteriaTimePage_argsStandardScheme getScheme() { + return new getKeysCriteriaTimePage_argsStandardScheme(); } } - private static class getKeysCriteriaTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -564178,13 +563167,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6086 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6086.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6087; - for (int _i6088 = 0; _i6088 < _list6086.size; ++_i6088) + org.apache.thrift.protocol.TList _list6058 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6058.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6059; + for (int _i6060 = 0; _i6060 < _list6058.size; ++_i6060) { - _elem6087 = iprot.readString(); - struct.keys.add(_elem6087); + _elem6059 = iprot.readString(); + struct.keys.add(_elem6059); } iprot.readListEnd(); } @@ -564210,11 +563199,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -564257,7 +563246,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -564265,9 +563254,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6089 : struct.keys) + for (java.lang.String _iter6061 : struct.keys) { - oprot.writeString(_iter6089); + oprot.writeString(_iter6061); } oprot.writeListEnd(); } @@ -564281,9 +563270,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -564307,17 +563296,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimeOrder_argsTupleScheme getScheme() { - return new getKeysCriteriaTimeOrder_argsTupleScheme(); + public getKeysCriteriaTimePage_argsTupleScheme getScheme() { + return new getKeysCriteriaTimePage_argsTupleScheme(); } } - private static class getKeysCriteriaTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -564329,7 +563318,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -564345,9 +563334,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6090 : struct.keys) + for (java.lang.String _iter6062 : struct.keys) { - oprot.writeString(_iter6090); + oprot.writeString(_iter6062); } } } @@ -564357,8 +563346,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -564372,18 +563361,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6091 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6091.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6092; - for (int _i6093 = 0; _i6093 < _list6091.size; ++_i6093) + org.apache.thrift.protocol.TList _list6063 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6063.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6064; + for (int _i6065 = 0; _i6065 < _list6063.size; ++_i6065) { - _elem6092 = iprot.readString(); - struct.keys.add(_elem6092); + _elem6064 = iprot.readString(); + struct.keys.add(_elem6064); } } struct.setKeysIsSet(true); @@ -564398,9 +563387,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeO struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -564424,16 +563413,16 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimeOrder_result"); + public static class getKeysCriteriaTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -564528,13 +563517,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimePage_result.class, metaDataMap); } - public getKeysCriteriaTimeOrder_result() { + public getKeysCriteriaTimePage_result() { } - public getKeysCriteriaTimeOrder_result( + public getKeysCriteriaTimePage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -564550,7 +563539,7 @@ public getKeysCriteriaTimeOrder_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimeOrder_result(getKeysCriteriaTimeOrder_result other) { + public getKeysCriteriaTimePage_result(getKeysCriteriaTimePage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -564589,8 +563578,8 @@ public getKeysCriteriaTimeOrder_result(getKeysCriteriaTimeOrder_result other) { } @Override - public getKeysCriteriaTimeOrder_result deepCopy() { - return new getKeysCriteriaTimeOrder_result(this); + public getKeysCriteriaTimePage_result deepCopy() { + return new getKeysCriteriaTimePage_result(this); } @Override @@ -564617,7 +563606,7 @@ public java.util.Map> success) { + public getKeysCriteriaTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -564642,7 +563631,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -564667,7 +563656,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -564692,7 +563681,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysCriteriaTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysCriteriaTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -564792,12 +563781,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimeOrder_result) - return this.equals((getKeysCriteriaTimeOrder_result)that); + if (that instanceof getKeysCriteriaTimePage_result) + return this.equals((getKeysCriteriaTimePage_result)that); return false; } - public boolean equals(getKeysCriteriaTimeOrder_result that) { + public boolean equals(getKeysCriteriaTimePage_result that) { if (that == null) return false; if (this == that) @@ -564866,7 +563855,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimeOrder_result other) { + public int compareTo(getKeysCriteriaTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -564933,7 +563922,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimePage_result("); boolean first = true; sb.append("success:"); @@ -564992,17 +563981,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimeOrder_resultStandardScheme getScheme() { - return new getKeysCriteriaTimeOrder_resultStandardScheme(); + public getKeysCriteriaTimePage_resultStandardScheme getScheme() { + return new getKeysCriteriaTimePage_resultStandardScheme(); } } - private static class getKeysCriteriaTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -565015,28 +564004,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6094 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6094.size); - long _key6095; - @org.apache.thrift.annotation.Nullable java.util.Map _val6096; - for (int _i6097 = 0; _i6097 < _map6094.size; ++_i6097) + org.apache.thrift.protocol.TMap _map6066 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6066.size); + long _key6067; + @org.apache.thrift.annotation.Nullable java.util.Map _val6068; + for (int _i6069 = 0; _i6069 < _map6066.size; ++_i6069) { - _key6095 = iprot.readI64(); + _key6067 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6098 = iprot.readMapBegin(); - _val6096 = new java.util.LinkedHashMap(2*_map6098.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6099; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6100; - for (int _i6101 = 0; _i6101 < _map6098.size; ++_i6101) + org.apache.thrift.protocol.TMap _map6070 = iprot.readMapBegin(); + _val6068 = new java.util.LinkedHashMap(2*_map6070.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6071; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6072; + for (int _i6073 = 0; _i6073 < _map6070.size; ++_i6073) { - _key6099 = iprot.readString(); - _val6100 = new com.cinchapi.concourse.thrift.TObject(); - _val6100.read(iprot); - _val6096.put(_key6099, _val6100); + _key6071 = iprot.readString(); + _val6072 = new com.cinchapi.concourse.thrift.TObject(); + _val6072.read(iprot); + _val6068.put(_key6071, _val6072); } iprot.readMapEnd(); } - struct.success.put(_key6095, _val6096); + struct.success.put(_key6067, _val6068); } iprot.readMapEnd(); } @@ -565084,7 +564073,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -565092,15 +564081,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6102 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6074 : struct.success.entrySet()) { - oprot.writeI64(_iter6102.getKey()); + oprot.writeI64(_iter6074.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6102.getValue().size())); - for (java.util.Map.Entry _iter6103 : _iter6102.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6074.getValue().size())); + for (java.util.Map.Entry _iter6075 : _iter6074.getValue().entrySet()) { - oprot.writeString(_iter6103.getKey()); - _iter6103.getValue().write(oprot); + oprot.writeString(_iter6075.getKey()); + _iter6075.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -565130,17 +564119,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimeOrder_resultTupleScheme getScheme() { - return new getKeysCriteriaTimeOrder_resultTupleScheme(); + public getKeysCriteriaTimePage_resultTupleScheme getScheme() { + return new getKeysCriteriaTimePage_resultTupleScheme(); } } - private static class getKeysCriteriaTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -565159,15 +564148,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6104 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6076 : struct.success.entrySet()) { - oprot.writeI64(_iter6104.getKey()); + oprot.writeI64(_iter6076.getKey()); { - oprot.writeI32(_iter6104.getValue().size()); - for (java.util.Map.Entry _iter6105 : _iter6104.getValue().entrySet()) + oprot.writeI32(_iter6076.getValue().size()); + for (java.util.Map.Entry _iter6077 : _iter6076.getValue().entrySet()) { - oprot.writeString(_iter6105.getKey()); - _iter6105.getValue().write(oprot); + oprot.writeString(_iter6077.getKey()); + _iter6077.getValue().write(oprot); } } } @@ -565185,32 +564174,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6106 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6106.size); - long _key6107; - @org.apache.thrift.annotation.Nullable java.util.Map _val6108; - for (int _i6109 = 0; _i6109 < _map6106.size; ++_i6109) + org.apache.thrift.protocol.TMap _map6078 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6078.size); + long _key6079; + @org.apache.thrift.annotation.Nullable java.util.Map _val6080; + for (int _i6081 = 0; _i6081 < _map6078.size; ++_i6081) { - _key6107 = iprot.readI64(); + _key6079 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6110 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6108 = new java.util.LinkedHashMap(2*_map6110.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6111; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6112; - for (int _i6113 = 0; _i6113 < _map6110.size; ++_i6113) + org.apache.thrift.protocol.TMap _map6082 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6080 = new java.util.LinkedHashMap(2*_map6082.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6083; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6084; + for (int _i6085 = 0; _i6085 < _map6082.size; ++_i6085) { - _key6111 = iprot.readString(); - _val6112 = new com.cinchapi.concourse.thrift.TObject(); - _val6112.read(iprot); - _val6108.put(_key6111, _val6112); + _key6083 = iprot.readString(); + _val6084 = new com.cinchapi.concourse.thrift.TObject(); + _val6084.read(iprot); + _val6080.put(_key6083, _val6084); } } - struct.success.put(_key6107, _val6108); + struct.success.put(_key6079, _val6080); } } struct.setSuccessIsSet(true); @@ -565238,26 +564227,24 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimeOrderPage_args"); + public static class getKeysCriteriaTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -565268,10 +564255,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -565295,13 +564281,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -565360,8 +564344,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -565369,18 +564351,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimeOrder_args.class, metaDataMap); } - public getKeysCriteriaTimeOrderPage_args() { + public getKeysCriteriaTimeOrder_args() { } - public getKeysCriteriaTimeOrderPage_args( + public getKeysCriteriaTimeOrder_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -565391,7 +564372,6 @@ public getKeysCriteriaTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -565400,7 +564380,7 @@ public getKeysCriteriaTimeOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimeOrderPage_args(getKeysCriteriaTimeOrderPage_args other) { + public getKeysCriteriaTimeOrder_args(getKeysCriteriaTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -565413,9 +564393,6 @@ public getKeysCriteriaTimeOrderPage_args(getKeysCriteriaTimeOrderPage_args other if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -565428,8 +564405,8 @@ public getKeysCriteriaTimeOrderPage_args(getKeysCriteriaTimeOrderPage_args other } @Override - public getKeysCriteriaTimeOrderPage_args deepCopy() { - return new getKeysCriteriaTimeOrderPage_args(this); + public getKeysCriteriaTimeOrder_args deepCopy() { + return new getKeysCriteriaTimeOrder_args(this); } @Override @@ -565439,7 +564416,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -565466,7 +564442,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -565491,7 +564467,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaTimeOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaTimeOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -565515,7 +564491,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysCriteriaTimeOrderPage_args setTimestamp(long timestamp) { + public getKeysCriteriaTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -565539,7 +564515,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysCriteriaTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysCriteriaTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -565559,37 +564535,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCriteriaTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -565614,7 +564565,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -565639,7 +564590,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -565694,14 +564645,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -565745,9 +564688,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -565777,8 +564717,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -565791,12 +564729,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimeOrderPage_args) - return this.equals((getKeysCriteriaTimeOrderPage_args)that); + if (that instanceof getKeysCriteriaTimeOrder_args) + return this.equals((getKeysCriteriaTimeOrder_args)that); return false; } - public boolean equals(getKeysCriteriaTimeOrderPage_args that) { + public boolean equals(getKeysCriteriaTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -565838,15 +564776,6 @@ public boolean equals(getKeysCriteriaTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -565895,10 +564824,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -565915,7 +564840,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimeOrderPage_args other) { + public int compareTo(getKeysCriteriaTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -565962,16 +564887,6 @@ public int compareTo(getKeysCriteriaTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -566023,7 +564938,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimeOrder_args("); boolean first = true; sb.append("keys:"); @@ -566054,14 +564969,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -566098,9 +565005,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -566127,17 +565031,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimeOrderPage_argsStandardScheme getScheme() { - return new getKeysCriteriaTimeOrderPage_argsStandardScheme(); + public getKeysCriteriaTimeOrder_argsStandardScheme getScheme() { + return new getKeysCriteriaTimeOrder_argsStandardScheme(); } } - private static class getKeysCriteriaTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -566150,13 +565054,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6114 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6114.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6115; - for (int _i6116 = 0; _i6116 < _list6114.size; ++_i6116) + org.apache.thrift.protocol.TList _list6086 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6086.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6087; + for (int _i6088 = 0; _i6088 < _list6086.size; ++_i6088) { - _elem6115 = iprot.readString(); - struct.keys.add(_elem6115); + _elem6087 = iprot.readString(); + struct.keys.add(_elem6087); } iprot.readListEnd(); } @@ -566191,16 +565095,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -566209,7 +565104,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -566218,7 +565113,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -566238,7 +565133,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -566246,9 +565141,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6117 : struct.keys) + for (java.lang.String _iter6089 : struct.keys) { - oprot.writeString(_iter6117); + oprot.writeString(_iter6089); } oprot.writeListEnd(); } @@ -566267,11 +565162,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -566293,17 +565183,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimeOrderPage_argsTupleScheme getScheme() { - return new getKeysCriteriaTimeOrderPage_argsTupleScheme(); + public getKeysCriteriaTimeOrder_argsTupleScheme getScheme() { + return new getKeysCriteriaTimeOrder_argsTupleScheme(); } } - private static class getKeysCriteriaTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -566318,25 +565208,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6118 : struct.keys) + for (java.lang.String _iter6090 : struct.keys) { - oprot.writeString(_iter6118); + oprot.writeString(_iter6090); } } } @@ -566349,9 +565236,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -566364,18 +565248,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6119 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6119.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6120; - for (int _i6121 = 0; _i6121 < _list6119.size; ++_i6121) + org.apache.thrift.protocol.TList _list6091 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6091.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6092; + for (int _i6093 = 0; _i6093 < _list6091.size; ++_i6093) { - _elem6120 = iprot.readString(); - struct.keys.add(_elem6120); + _elem6092 = iprot.readString(); + struct.keys.add(_elem6092); } } struct.setKeysIsSet(true); @@ -566395,21 +565279,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeO struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -566421,16 +565300,16 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimeOrderPage_result"); + public static class getKeysCriteriaTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -566525,13 +565404,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimeOrder_result.class, metaDataMap); } - public getKeysCriteriaTimeOrderPage_result() { + public getKeysCriteriaTimeOrder_result() { } - public getKeysCriteriaTimeOrderPage_result( + public getKeysCriteriaTimeOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -566547,7 +565426,7 @@ public getKeysCriteriaTimeOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimeOrderPage_result(getKeysCriteriaTimeOrderPage_result other) { + public getKeysCriteriaTimeOrder_result(getKeysCriteriaTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -566586,8 +565465,8 @@ public getKeysCriteriaTimeOrderPage_result(getKeysCriteriaTimeOrderPage_result o } @Override - public getKeysCriteriaTimeOrderPage_result deepCopy() { - return new getKeysCriteriaTimeOrderPage_result(this); + public getKeysCriteriaTimeOrder_result deepCopy() { + return new getKeysCriteriaTimeOrder_result(this); } @Override @@ -566614,7 +565493,7 @@ public java.util.Map> success) { + public getKeysCriteriaTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -566639,7 +565518,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -566664,7 +565543,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -566689,7 +565568,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysCriteriaTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysCriteriaTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -566789,12 +565668,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimeOrderPage_result) - return this.equals((getKeysCriteriaTimeOrderPage_result)that); + if (that instanceof getKeysCriteriaTimeOrder_result) + return this.equals((getKeysCriteriaTimeOrder_result)that); return false; } - public boolean equals(getKeysCriteriaTimeOrderPage_result that) { + public boolean equals(getKeysCriteriaTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -566863,7 +565742,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimeOrderPage_result other) { + public int compareTo(getKeysCriteriaTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -566930,7 +565809,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -566989,17 +565868,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimeOrderPage_resultStandardScheme getScheme() { - return new getKeysCriteriaTimeOrderPage_resultStandardScheme(); + public getKeysCriteriaTimeOrder_resultStandardScheme getScheme() { + return new getKeysCriteriaTimeOrder_resultStandardScheme(); } } - private static class getKeysCriteriaTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -567012,28 +565891,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6122 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6122.size); - long _key6123; - @org.apache.thrift.annotation.Nullable java.util.Map _val6124; - for (int _i6125 = 0; _i6125 < _map6122.size; ++_i6125) + org.apache.thrift.protocol.TMap _map6094 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6094.size); + long _key6095; + @org.apache.thrift.annotation.Nullable java.util.Map _val6096; + for (int _i6097 = 0; _i6097 < _map6094.size; ++_i6097) { - _key6123 = iprot.readI64(); + _key6095 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6126 = iprot.readMapBegin(); - _val6124 = new java.util.LinkedHashMap(2*_map6126.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6127; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6128; - for (int _i6129 = 0; _i6129 < _map6126.size; ++_i6129) + org.apache.thrift.protocol.TMap _map6098 = iprot.readMapBegin(); + _val6096 = new java.util.LinkedHashMap(2*_map6098.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6099; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6100; + for (int _i6101 = 0; _i6101 < _map6098.size; ++_i6101) { - _key6127 = iprot.readString(); - _val6128 = new com.cinchapi.concourse.thrift.TObject(); - _val6128.read(iprot); - _val6124.put(_key6127, _val6128); + _key6099 = iprot.readString(); + _val6100 = new com.cinchapi.concourse.thrift.TObject(); + _val6100.read(iprot); + _val6096.put(_key6099, _val6100); } iprot.readMapEnd(); } - struct.success.put(_key6123, _val6124); + struct.success.put(_key6095, _val6096); } iprot.readMapEnd(); } @@ -567081,7 +565960,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -567089,15 +565968,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6130 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6102 : struct.success.entrySet()) { - oprot.writeI64(_iter6130.getKey()); + oprot.writeI64(_iter6102.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6130.getValue().size())); - for (java.util.Map.Entry _iter6131 : _iter6130.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6102.getValue().size())); + for (java.util.Map.Entry _iter6103 : _iter6102.getValue().entrySet()) { - oprot.writeString(_iter6131.getKey()); - _iter6131.getValue().write(oprot); + oprot.writeString(_iter6103.getKey()); + _iter6103.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -567127,17 +566006,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimeOrderPage_resultTupleScheme getScheme() { - return new getKeysCriteriaTimeOrderPage_resultTupleScheme(); + public getKeysCriteriaTimeOrder_resultTupleScheme getScheme() { + return new getKeysCriteriaTimeOrder_resultTupleScheme(); } } - private static class getKeysCriteriaTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -567156,15 +566035,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6132 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6104 : struct.success.entrySet()) { - oprot.writeI64(_iter6132.getKey()); + oprot.writeI64(_iter6104.getKey()); { - oprot.writeI32(_iter6132.getValue().size()); - for (java.util.Map.Entry _iter6133 : _iter6132.getValue().entrySet()) + oprot.writeI32(_iter6104.getValue().size()); + for (java.util.Map.Entry _iter6105 : _iter6104.getValue().entrySet()) { - oprot.writeString(_iter6133.getKey()); - _iter6133.getValue().write(oprot); + oprot.writeString(_iter6105.getKey()); + _iter6105.getValue().write(oprot); } } } @@ -567182,32 +566061,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6134 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6134.size); - long _key6135; - @org.apache.thrift.annotation.Nullable java.util.Map _val6136; - for (int _i6137 = 0; _i6137 < _map6134.size; ++_i6137) + org.apache.thrift.protocol.TMap _map6106 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6106.size); + long _key6107; + @org.apache.thrift.annotation.Nullable java.util.Map _val6108; + for (int _i6109 = 0; _i6109 < _map6106.size; ++_i6109) { - _key6135 = iprot.readI64(); + _key6107 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6138 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6136 = new java.util.LinkedHashMap(2*_map6138.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6139; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6140; - for (int _i6141 = 0; _i6141 < _map6138.size; ++_i6141) + org.apache.thrift.protocol.TMap _map6110 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6108 = new java.util.LinkedHashMap(2*_map6110.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6111; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6112; + for (int _i6113 = 0; _i6113 < _map6110.size; ++_i6113) { - _key6139 = iprot.readString(); - _val6140 = new com.cinchapi.concourse.thrift.TObject(); - _val6140.read(iprot); - _val6136.put(_key6139, _val6140); + _key6111 = iprot.readString(); + _val6112 = new com.cinchapi.concourse.thrift.TObject(); + _val6112.read(iprot); + _val6108.put(_key6111, _val6112); } } - struct.success.put(_key6135, _val6136); + struct.success.put(_key6107, _val6108); } } struct.setSuccessIsSet(true); @@ -567235,22 +566114,26 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestr_args"); + public static class getKeysCriteriaTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -567260,9 +566143,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -567284,11 +566169,15 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -567333,6 +566222,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -567342,7 +566233,11 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -567350,16 +566245,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimeOrderPage_args.class, metaDataMap); } - public getKeysCriteriaTimestr_args() { + public getKeysCriteriaTimeOrderPage_args() { } - public getKeysCriteriaTimestr_args( + public getKeysCriteriaTimeOrderPage_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -567368,6 +566265,9 @@ public getKeysCriteriaTimestr_args( this.keys = keys; this.criteria = criteria; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -567376,7 +566276,8 @@ public getKeysCriteriaTimestr_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimestr_args(getKeysCriteriaTimestr_args other) { + public getKeysCriteriaTimeOrderPage_args(getKeysCriteriaTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -567384,8 +566285,12 @@ public getKeysCriteriaTimestr_args(getKeysCriteriaTimestr_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -567399,15 +566304,18 @@ public getKeysCriteriaTimestr_args(getKeysCriteriaTimestr_args other) { } @Override - public getKeysCriteriaTimestr_args deepCopy() { - return new getKeysCriteriaTimestr_args(this); + public getKeysCriteriaTimeOrderPage_args deepCopy() { + return new getKeysCriteriaTimeOrderPage_args(this); } @Override public void clear() { this.keys = null; this.criteria = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -567434,7 +566342,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -567459,7 +566367,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaTimestr_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaTimeOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -567479,28 +566387,76 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getKeysCriteriaTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysCriteriaTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeysCriteriaTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysCriteriaTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -567509,7 +566465,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -567534,7 +566490,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -567559,7 +566515,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -567602,7 +566558,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -567646,6 +566618,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -567673,6 +566651,10 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -567685,12 +566667,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimestr_args) - return this.equals((getKeysCriteriaTimestr_args)that); + if (that instanceof getKeysCriteriaTimeOrderPage_args) + return this.equals((getKeysCriteriaTimeOrderPage_args)that); return false; } - public boolean equals(getKeysCriteriaTimestr_args that) { + public boolean equals(getKeysCriteriaTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -567714,12 +566696,30 @@ public boolean equals(getKeysCriteriaTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -567765,9 +566765,15 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -567785,7 +566791,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimestr_args other) { + public int compareTo(getKeysCriteriaTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -567822,6 +566828,26 @@ public int compareTo(getKeysCriteriaTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -567873,7 +566899,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimeOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -567893,10 +566919,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -567933,6 +566971,12 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -567951,23 +566995,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeysCriteriaTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestr_argsStandardScheme getScheme() { - return new getKeysCriteriaTimestr_argsStandardScheme(); + public getKeysCriteriaTimeOrderPage_argsStandardScheme getScheme() { + return new getKeysCriteriaTimeOrderPage_argsStandardScheme(); } } - private static class getKeysCriteriaTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -567980,13 +567026,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6142 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6142.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6143; - for (int _i6144 = 0; _i6144 < _list6142.size; ++_i6144) + org.apache.thrift.protocol.TList _list6114 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6114.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6115; + for (int _i6116 = 0; _i6116 < _list6114.size; ++_i6116) { - _elem6143 = iprot.readString(); - struct.keys.add(_elem6143); + _elem6115 = iprot.readString(); + struct.keys.add(_elem6115); } iprot.readListEnd(); } @@ -568005,14 +567051,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -568021,7 +567085,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -568030,7 +567094,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -568050,7 +567114,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -568058,9 +567122,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6145 : struct.keys) + for (java.lang.String _iter6117 : struct.keys) { - oprot.writeString(_iter6145); + oprot.writeString(_iter6117); } oprot.writeListEnd(); } @@ -568071,9 +567135,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -568097,17 +567169,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestr_argsTupleScheme getScheme() { - return new getKeysCriteriaTimestr_argsTupleScheme(); + public getKeysCriteriaTimeOrderPage_argsTupleScheme getScheme() { + return new getKeysCriteriaTimeOrderPage_argsTupleScheme(); } } - private static class getKeysCriteriaTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -568119,22 +567191,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6146 : struct.keys) + for (java.lang.String _iter6118 : struct.keys) { - oprot.writeString(_iter6146); + oprot.writeString(_iter6118); } } } @@ -568142,7 +567220,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -568156,18 +567240,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6147 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6147.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6148; - for (int _i6149 = 0; _i6149 < _list6147.size; ++_i6149) + org.apache.thrift.protocol.TList _list6119 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6119.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6120; + for (int _i6121 = 0; _i6121 < _list6119.size; ++_i6121) { - _elem6148 = iprot.readString(); - struct.keys.add(_elem6148); + _elem6120 = iprot.readString(); + struct.keys.add(_elem6120); } } struct.setKeysIsSet(true); @@ -568178,20 +567262,30 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimes struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -568203,31 +567297,28 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestr_result"); + public static class getKeysCriteriaTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -568251,8 +567342,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -568310,35 +567399,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimeOrderPage_result.class, metaDataMap); } - public getKeysCriteriaTimestr_result() { + public getKeysCriteriaTimeOrderPage_result() { } - public getKeysCriteriaTimestr_result( + public getKeysCriteriaTimeOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public getKeysCriteriaTimestr_result(getKeysCriteriaTimestr_result other) { + public getKeysCriteriaTimeOrderPage_result(getKeysCriteriaTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -568372,16 +567457,13 @@ public getKeysCriteriaTimestr_result(getKeysCriteriaTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public getKeysCriteriaTimestr_result deepCopy() { - return new getKeysCriteriaTimestr_result(this); + public getKeysCriteriaTimeOrderPage_result deepCopy() { + return new getKeysCriteriaTimeOrderPage_result(this); } @Override @@ -568390,7 +567472,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -568409,7 +567490,7 @@ public java.util.Map> success) { + public getKeysCriteriaTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -568434,7 +567515,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -568459,7 +567540,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -568480,11 +567561,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getKeysCriteriaTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCriteriaTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -568504,31 +567585,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public getKeysCriteriaTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -568560,15 +567616,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -568591,9 +567639,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -568614,20 +567659,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimestr_result) - return this.equals((getKeysCriteriaTimestr_result)that); + if (that instanceof getKeysCriteriaTimeOrderPage_result) + return this.equals((getKeysCriteriaTimeOrderPage_result)that); return false; } - public boolean equals(getKeysCriteriaTimestr_result that) { + public boolean equals(getKeysCriteriaTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -568669,15 +567712,6 @@ public boolean equals(getKeysCriteriaTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -568701,15 +567735,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(getKeysCriteriaTimestr_result other) { + public int compareTo(getKeysCriteriaTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -568756,16 +567786,6 @@ public int compareTo(getKeysCriteriaTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -568786,7 +567806,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -568820,14 +567840,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -568853,17 +567865,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestr_resultStandardScheme getScheme() { - return new getKeysCriteriaTimestr_resultStandardScheme(); + public getKeysCriteriaTimeOrderPage_resultStandardScheme getScheme() { + return new getKeysCriteriaTimeOrderPage_resultStandardScheme(); } } - private static class getKeysCriteriaTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -568876,28 +567888,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6150 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6150.size); - long _key6151; - @org.apache.thrift.annotation.Nullable java.util.Map _val6152; - for (int _i6153 = 0; _i6153 < _map6150.size; ++_i6153) + org.apache.thrift.protocol.TMap _map6122 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6122.size); + long _key6123; + @org.apache.thrift.annotation.Nullable java.util.Map _val6124; + for (int _i6125 = 0; _i6125 < _map6122.size; ++_i6125) { - _key6151 = iprot.readI64(); + _key6123 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6154 = iprot.readMapBegin(); - _val6152 = new java.util.LinkedHashMap(2*_map6154.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6155; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6156; - for (int _i6157 = 0; _i6157 < _map6154.size; ++_i6157) + org.apache.thrift.protocol.TMap _map6126 = iprot.readMapBegin(); + _val6124 = new java.util.LinkedHashMap(2*_map6126.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6127; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6128; + for (int _i6129 = 0; _i6129 < _map6126.size; ++_i6129) { - _key6155 = iprot.readString(); - _val6156 = new com.cinchapi.concourse.thrift.TObject(); - _val6156.read(iprot); - _val6152.put(_key6155, _val6156); + _key6127 = iprot.readString(); + _val6128 = new com.cinchapi.concourse.thrift.TObject(); + _val6128.read(iprot); + _val6124.put(_key6127, _val6128); } iprot.readMapEnd(); } - struct.success.put(_key6151, _val6152); + struct.success.put(_key6123, _val6124); } iprot.readMapEnd(); } @@ -568926,22 +567938,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -568954,7 +567957,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -568962,15 +567965,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6158 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6130 : struct.success.entrySet()) { - oprot.writeI64(_iter6158.getKey()); + oprot.writeI64(_iter6130.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6158.getValue().size())); - for (java.util.Map.Entry _iter6159 : _iter6158.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6130.getValue().size())); + for (java.util.Map.Entry _iter6131 : _iter6130.getValue().entrySet()) { - oprot.writeString(_iter6159.getKey()); - _iter6159.getValue().write(oprot); + oprot.writeString(_iter6131.getKey()); + _iter6131.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -568994,28 +567997,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getKeysCriteriaTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestr_resultTupleScheme getScheme() { - return new getKeysCriteriaTimestr_resultTupleScheme(); + public getKeysCriteriaTimeOrderPage_resultTupleScheme getScheme() { + return new getKeysCriteriaTimeOrderPage_resultTupleScheme(); } } - private static class getKeysCriteriaTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -569030,22 +568028,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6160 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6132 : struct.success.entrySet()) { - oprot.writeI64(_iter6160.getKey()); + oprot.writeI64(_iter6132.getKey()); { - oprot.writeI32(_iter6160.getValue().size()); - for (java.util.Map.Entry _iter6161 : _iter6160.getValue().entrySet()) + oprot.writeI32(_iter6132.getValue().size()); + for (java.util.Map.Entry _iter6133 : _iter6132.getValue().entrySet()) { - oprot.writeString(_iter6161.getKey()); - _iter6161.getValue().write(oprot); + oprot.writeString(_iter6133.getKey()); + _iter6133.getValue().write(oprot); } } } @@ -569060,38 +568055,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6162 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6162.size); - long _key6163; - @org.apache.thrift.annotation.Nullable java.util.Map _val6164; - for (int _i6165 = 0; _i6165 < _map6162.size; ++_i6165) + org.apache.thrift.protocol.TMap _map6134 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6134.size); + long _key6135; + @org.apache.thrift.annotation.Nullable java.util.Map _val6136; + for (int _i6137 = 0; _i6137 < _map6134.size; ++_i6137) { - _key6163 = iprot.readI64(); + _key6135 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6166 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6164 = new java.util.LinkedHashMap(2*_map6166.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6167; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6168; - for (int _i6169 = 0; _i6169 < _map6166.size; ++_i6169) + org.apache.thrift.protocol.TMap _map6138 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6136 = new java.util.LinkedHashMap(2*_map6138.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6139; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6140; + for (int _i6141 = 0; _i6141 < _map6138.size; ++_i6141) { - _key6167 = iprot.readString(); - _val6168 = new com.cinchapi.concourse.thrift.TObject(); - _val6168.read(iprot); - _val6164.put(_key6167, _val6168); + _key6139 = iprot.readString(); + _val6140 = new com.cinchapi.concourse.thrift.TObject(); + _val6140.read(iprot); + _val6136.put(_key6139, _val6140); } } - struct.success.put(_key6163, _val6164); + struct.success.put(_key6135, _val6136); } } struct.setSuccessIsSet(true); @@ -569107,15 +568099,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimes struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -569124,24 +568111,22 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrPage_args"); + public static class getKeysCriteriaTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -569151,10 +568136,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -569176,13 +568160,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -569237,8 +568219,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -569246,17 +568226,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestr_args.class, metaDataMap); } - public getKeysCriteriaTimestrPage_args() { + public getKeysCriteriaTimestr_args() { } - public getKeysCriteriaTimestrPage_args( + public getKeysCriteriaTimestr_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -569265,7 +568244,6 @@ public getKeysCriteriaTimestrPage_args( this.keys = keys; this.criteria = criteria; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -569274,7 +568252,7 @@ public getKeysCriteriaTimestrPage_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimestrPage_args(getKeysCriteriaTimestrPage_args other) { + public getKeysCriteriaTimestr_args(getKeysCriteriaTimestr_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -569285,9 +568263,6 @@ public getKeysCriteriaTimestrPage_args(getKeysCriteriaTimestrPage_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -569300,8 +568275,8 @@ public getKeysCriteriaTimestrPage_args(getKeysCriteriaTimestrPage_args other) { } @Override - public getKeysCriteriaTimestrPage_args deepCopy() { - return new getKeysCriteriaTimestrPage_args(this); + public getKeysCriteriaTimestr_args deepCopy() { + return new getKeysCriteriaTimestr_args(this); } @Override @@ -569309,7 +568284,6 @@ public void clear() { this.keys = null; this.criteria = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -569336,7 +568310,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -569361,7 +568335,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaTimestrPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaTimestr_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -569386,7 +568360,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysCriteriaTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysCriteriaTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -569406,37 +568380,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCriteriaTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -569461,7 +568410,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -569486,7 +568435,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -569533,14 +568482,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -569581,9 +568522,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -569611,8 +568549,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -569625,12 +568561,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimestrPage_args) - return this.equals((getKeysCriteriaTimestrPage_args)that); + if (that instanceof getKeysCriteriaTimestr_args) + return this.equals((getKeysCriteriaTimestr_args)that); return false; } - public boolean equals(getKeysCriteriaTimestrPage_args that) { + public boolean equals(getKeysCriteriaTimestr_args that) { if (that == null) return false; if (this == that) @@ -569663,15 +568599,6 @@ public boolean equals(getKeysCriteriaTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -569718,10 +568645,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -569738,7 +568661,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimestrPage_args other) { + public int compareTo(getKeysCriteriaTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -569775,16 +568698,6 @@ public int compareTo(getKeysCriteriaTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -569836,7 +568749,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestr_args("); boolean first = true; sb.append("keys:"); @@ -569863,14 +568776,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -569904,9 +568809,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -569931,17 +568833,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrPage_argsStandardScheme getScheme() { - return new getKeysCriteriaTimestrPage_argsStandardScheme(); + public getKeysCriteriaTimestr_argsStandardScheme getScheme() { + return new getKeysCriteriaTimestr_argsStandardScheme(); } } - private static class getKeysCriteriaTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -569954,13 +568856,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6170 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6170.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6171; - for (int _i6172 = 0; _i6172 < _list6170.size; ++_i6172) + org.apache.thrift.protocol.TList _list6142 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6142.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6143; + for (int _i6144 = 0; _i6144 < _list6142.size; ++_i6144) { - _elem6171 = iprot.readString(); - struct.keys.add(_elem6171); + _elem6143 = iprot.readString(); + struct.keys.add(_elem6143); } iprot.readListEnd(); } @@ -569986,16 +568888,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -570004,7 +568897,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -570013,7 +568906,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -570033,7 +568926,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -570041,9 +568934,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6173 : struct.keys) + for (java.lang.String _iter6145 : struct.keys) { - oprot.writeString(_iter6173); + oprot.writeString(_iter6145); } oprot.writeListEnd(); } @@ -570059,11 +568952,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -570085,17 +568973,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrPage_argsTupleScheme getScheme() { - return new getKeysCriteriaTimestrPage_argsTupleScheme(); + public getKeysCriteriaTimestr_argsTupleScheme getScheme() { + return new getKeysCriteriaTimestr_argsTupleScheme(); } } - private static class getKeysCriteriaTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -570107,25 +568995,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6174 : struct.keys) + for (java.lang.String _iter6146 : struct.keys) { - oprot.writeString(_iter6174); + oprot.writeString(_iter6146); } } } @@ -570135,9 +569020,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -570150,18 +569032,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6175 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6175.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6176; - for (int _i6177 = 0; _i6177 < _list6175.size; ++_i6177) + org.apache.thrift.protocol.TList _list6147 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6147.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6148; + for (int _i6149 = 0; _i6149 < _list6147.size; ++_i6149) { - _elem6176 = iprot.readString(); - struct.keys.add(_elem6176); + _elem6148 = iprot.readString(); + struct.keys.add(_elem6148); } } struct.setKeysIsSet(true); @@ -570176,21 +569058,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimes struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -570202,8 +569079,8 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrPage_result"); + public static class getKeysCriteriaTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -570211,8 +569088,8 @@ public static class getKeysCriteriaTimestrPage_result implements org.apache.thri private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -570313,13 +569190,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestr_result.class, metaDataMap); } - public getKeysCriteriaTimestrPage_result() { + public getKeysCriteriaTimestr_result() { } - public getKeysCriteriaTimestrPage_result( + public getKeysCriteriaTimestr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -570337,7 +569214,7 @@ public getKeysCriteriaTimestrPage_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimestrPage_result(getKeysCriteriaTimestrPage_result other) { + public getKeysCriteriaTimestr_result(getKeysCriteriaTimestr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -570379,8 +569256,8 @@ public getKeysCriteriaTimestrPage_result(getKeysCriteriaTimestrPage_result other } @Override - public getKeysCriteriaTimestrPage_result deepCopy() { - return new getKeysCriteriaTimestrPage_result(this); + public getKeysCriteriaTimestr_result deepCopy() { + return new getKeysCriteriaTimestr_result(this); } @Override @@ -570408,7 +569285,7 @@ public java.util.Map> success) { + public getKeysCriteriaTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -570433,7 +569310,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -570458,7 +569335,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -570483,7 +569360,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCriteriaTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCriteriaTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -570508,7 +569385,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCriteriaTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCriteriaTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -570621,12 +569498,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimestrPage_result) - return this.equals((getKeysCriteriaTimestrPage_result)that); + if (that instanceof getKeysCriteriaTimestr_result) + return this.equals((getKeysCriteriaTimestr_result)that); return false; } - public boolean equals(getKeysCriteriaTimestrPage_result that) { + public boolean equals(getKeysCriteriaTimestr_result that) { if (that == null) return false; if (this == that) @@ -570708,7 +569585,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimestrPage_result other) { + public int compareTo(getKeysCriteriaTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -570785,7 +569662,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestr_result("); boolean first = true; sb.append("success:"); @@ -570852,17 +569729,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrPage_resultStandardScheme getScheme() { - return new getKeysCriteriaTimestrPage_resultStandardScheme(); + public getKeysCriteriaTimestr_resultStandardScheme getScheme() { + return new getKeysCriteriaTimestr_resultStandardScheme(); } } - private static class getKeysCriteriaTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -570875,28 +569752,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6178 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6178.size); - long _key6179; - @org.apache.thrift.annotation.Nullable java.util.Map _val6180; - for (int _i6181 = 0; _i6181 < _map6178.size; ++_i6181) + org.apache.thrift.protocol.TMap _map6150 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6150.size); + long _key6151; + @org.apache.thrift.annotation.Nullable java.util.Map _val6152; + for (int _i6153 = 0; _i6153 < _map6150.size; ++_i6153) { - _key6179 = iprot.readI64(); + _key6151 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6182 = iprot.readMapBegin(); - _val6180 = new java.util.LinkedHashMap(2*_map6182.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6183; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6184; - for (int _i6185 = 0; _i6185 < _map6182.size; ++_i6185) + org.apache.thrift.protocol.TMap _map6154 = iprot.readMapBegin(); + _val6152 = new java.util.LinkedHashMap(2*_map6154.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6155; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6156; + for (int _i6157 = 0; _i6157 < _map6154.size; ++_i6157) { - _key6183 = iprot.readString(); - _val6184 = new com.cinchapi.concourse.thrift.TObject(); - _val6184.read(iprot); - _val6180.put(_key6183, _val6184); + _key6155 = iprot.readString(); + _val6156 = new com.cinchapi.concourse.thrift.TObject(); + _val6156.read(iprot); + _val6152.put(_key6155, _val6156); } iprot.readMapEnd(); } - struct.success.put(_key6179, _val6180); + struct.success.put(_key6151, _val6152); } iprot.readMapEnd(); } @@ -570953,7 +569830,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -570961,15 +569838,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6186 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6158 : struct.success.entrySet()) { - oprot.writeI64(_iter6186.getKey()); + oprot.writeI64(_iter6158.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6186.getValue().size())); - for (java.util.Map.Entry _iter6187 : _iter6186.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6158.getValue().size())); + for (java.util.Map.Entry _iter6159 : _iter6158.getValue().entrySet()) { - oprot.writeString(_iter6187.getKey()); - _iter6187.getValue().write(oprot); + oprot.writeString(_iter6159.getKey()); + _iter6159.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -571004,17 +569881,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrPage_resultTupleScheme getScheme() { - return new getKeysCriteriaTimestrPage_resultTupleScheme(); + public getKeysCriteriaTimestr_resultTupleScheme getScheme() { + return new getKeysCriteriaTimestr_resultTupleScheme(); } } - private static class getKeysCriteriaTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -571036,15 +569913,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6188 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6160 : struct.success.entrySet()) { - oprot.writeI64(_iter6188.getKey()); + oprot.writeI64(_iter6160.getKey()); { - oprot.writeI32(_iter6188.getValue().size()); - for (java.util.Map.Entry _iter6189 : _iter6188.getValue().entrySet()) + oprot.writeI32(_iter6160.getValue().size()); + for (java.util.Map.Entry _iter6161 : _iter6160.getValue().entrySet()) { - oprot.writeString(_iter6189.getKey()); - _iter6189.getValue().write(oprot); + oprot.writeString(_iter6161.getKey()); + _iter6161.getValue().write(oprot); } } } @@ -571065,32 +569942,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6190 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6190.size); - long _key6191; - @org.apache.thrift.annotation.Nullable java.util.Map _val6192; - for (int _i6193 = 0; _i6193 < _map6190.size; ++_i6193) + org.apache.thrift.protocol.TMap _map6162 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6162.size); + long _key6163; + @org.apache.thrift.annotation.Nullable java.util.Map _val6164; + for (int _i6165 = 0; _i6165 < _map6162.size; ++_i6165) { - _key6191 = iprot.readI64(); + _key6163 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6194 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6192 = new java.util.LinkedHashMap(2*_map6194.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6195; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6196; - for (int _i6197 = 0; _i6197 < _map6194.size; ++_i6197) + org.apache.thrift.protocol.TMap _map6166 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6164 = new java.util.LinkedHashMap(2*_map6166.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6167; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6168; + for (int _i6169 = 0; _i6169 < _map6166.size; ++_i6169) { - _key6195 = iprot.readString(); - _val6196 = new com.cinchapi.concourse.thrift.TObject(); - _val6196.read(iprot); - _val6192.put(_key6195, _val6196); + _key6167 = iprot.readString(); + _val6168 = new com.cinchapi.concourse.thrift.TObject(); + _val6168.read(iprot); + _val6164.put(_key6167, _val6168); } } - struct.success.put(_key6191, _val6192); + struct.success.put(_key6163, _val6164); } } struct.setSuccessIsSet(true); @@ -571123,24 +570000,24 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrOrder_args"); + public static class getKeysCriteriaTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -571150,7 +570027,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -571175,8 +570052,8 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -571236,8 +570113,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -571245,17 +570122,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrPage_args.class, metaDataMap); } - public getKeysCriteriaTimestrOrder_args() { + public getKeysCriteriaTimestrPage_args() { } - public getKeysCriteriaTimestrOrder_args( + public getKeysCriteriaTimestrPage_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -571264,7 +570141,7 @@ public getKeysCriteriaTimestrOrder_args( this.keys = keys; this.criteria = criteria; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -571273,7 +570150,7 @@ public getKeysCriteriaTimestrOrder_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimestrOrder_args(getKeysCriteriaTimestrOrder_args other) { + public getKeysCriteriaTimestrPage_args(getKeysCriteriaTimestrPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -571284,8 +570161,8 @@ public getKeysCriteriaTimestrOrder_args(getKeysCriteriaTimestrOrder_args other) if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -571299,8 +570176,8 @@ public getKeysCriteriaTimestrOrder_args(getKeysCriteriaTimestrOrder_args other) } @Override - public getKeysCriteriaTimestrOrder_args deepCopy() { - return new getKeysCriteriaTimestrOrder_args(this); + public getKeysCriteriaTimestrPage_args deepCopy() { + return new getKeysCriteriaTimestrPage_args(this); } @Override @@ -571308,7 +570185,7 @@ public void clear() { this.keys = null; this.criteria = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -571335,7 +570212,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -571360,7 +570237,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaTimestrOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaTimestrPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -571385,7 +570262,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysCriteriaTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysCriteriaTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -571406,27 +570283,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysCriteriaTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysCriteriaTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -571435,7 +570312,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -571460,7 +570337,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -571485,7 +570362,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -571532,11 +570409,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -571580,8 +570457,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -571610,8 +570487,8 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -571624,12 +570501,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimestrOrder_args) - return this.equals((getKeysCriteriaTimestrOrder_args)that); + if (that instanceof getKeysCriteriaTimestrPage_args) + return this.equals((getKeysCriteriaTimestrPage_args)that); return false; } - public boolean equals(getKeysCriteriaTimestrOrder_args that) { + public boolean equals(getKeysCriteriaTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -571662,12 +570539,12 @@ public boolean equals(getKeysCriteriaTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -571717,9 +570594,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -571737,7 +570614,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimestrOrder_args other) { + public int compareTo(getKeysCriteriaTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -571774,12 +570651,12 @@ public int compareTo(getKeysCriteriaTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -571835,7 +570712,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrPage_args("); boolean first = true; sb.append("keys:"); @@ -571862,11 +570739,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -571903,8 +570780,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -571930,17 +570807,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrOrder_argsStandardScheme getScheme() { - return new getKeysCriteriaTimestrOrder_argsStandardScheme(); + public getKeysCriteriaTimestrPage_argsStandardScheme getScheme() { + return new getKeysCriteriaTimestrPage_argsStandardScheme(); } } - private static class getKeysCriteriaTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -571953,13 +570830,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6198 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6198.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6199; - for (int _i6200 = 0; _i6200 < _list6198.size; ++_i6200) + org.apache.thrift.protocol.TList _list6170 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6170.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6171; + for (int _i6172 = 0; _i6172 < _list6170.size; ++_i6172) { - _elem6199 = iprot.readString(); - struct.keys.add(_elem6199); + _elem6171 = iprot.readString(); + struct.keys.add(_elem6171); } iprot.readListEnd(); } @@ -571985,11 +570862,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -572032,7 +570909,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -572040,9 +570917,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6201 : struct.keys) + for (java.lang.String _iter6173 : struct.keys) { - oprot.writeString(_iter6201); + oprot.writeString(_iter6173); } oprot.writeListEnd(); } @@ -572058,9 +570935,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -572084,17 +570961,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrOrder_argsTupleScheme getScheme() { - return new getKeysCriteriaTimestrOrder_argsTupleScheme(); + public getKeysCriteriaTimestrPage_argsTupleScheme getScheme() { + return new getKeysCriteriaTimestrPage_argsTupleScheme(); } } - private static class getKeysCriteriaTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -572106,7 +570983,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -572122,9 +570999,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6202 : struct.keys) + for (java.lang.String _iter6174 : struct.keys) { - oprot.writeString(_iter6202); + oprot.writeString(_iter6174); } } } @@ -572134,8 +571011,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -572149,18 +571026,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6203 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6203.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6204; - for (int _i6205 = 0; _i6205 < _list6203.size; ++_i6205) + org.apache.thrift.protocol.TList _list6175 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6175.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6176; + for (int _i6177 = 0; _i6177 < _list6175.size; ++_i6177) { - _elem6204 = iprot.readString(); - struct.keys.add(_elem6204); + _elem6176 = iprot.readString(); + struct.keys.add(_elem6176); } } struct.setKeysIsSet(true); @@ -572175,9 +571052,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimes struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -572201,8 +571078,8 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrOrder_result"); + public static class getKeysCriteriaTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -572210,8 +571087,8 @@ public static class getKeysCriteriaTimestrOrder_result implements org.apache.thr private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -572312,13 +571189,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrPage_result.class, metaDataMap); } - public getKeysCriteriaTimestrOrder_result() { + public getKeysCriteriaTimestrPage_result() { } - public getKeysCriteriaTimestrOrder_result( + public getKeysCriteriaTimestrPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -572336,7 +571213,7 @@ public getKeysCriteriaTimestrOrder_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimestrOrder_result(getKeysCriteriaTimestrOrder_result other) { + public getKeysCriteriaTimestrPage_result(getKeysCriteriaTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -572378,8 +571255,8 @@ public getKeysCriteriaTimestrOrder_result(getKeysCriteriaTimestrOrder_result oth } @Override - public getKeysCriteriaTimestrOrder_result deepCopy() { - return new getKeysCriteriaTimestrOrder_result(this); + public getKeysCriteriaTimestrPage_result deepCopy() { + return new getKeysCriteriaTimestrPage_result(this); } @Override @@ -572407,7 +571284,7 @@ public java.util.Map> success) { + public getKeysCriteriaTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -572432,7 +571309,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -572457,7 +571334,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -572482,7 +571359,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCriteriaTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCriteriaTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -572507,7 +571384,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCriteriaTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCriteriaTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -572620,12 +571497,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimestrOrder_result) - return this.equals((getKeysCriteriaTimestrOrder_result)that); + if (that instanceof getKeysCriteriaTimestrPage_result) + return this.equals((getKeysCriteriaTimestrPage_result)that); return false; } - public boolean equals(getKeysCriteriaTimestrOrder_result that) { + public boolean equals(getKeysCriteriaTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -572707,7 +571584,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimestrOrder_result other) { + public int compareTo(getKeysCriteriaTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -572784,7 +571661,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -572851,17 +571728,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrOrder_resultStandardScheme getScheme() { - return new getKeysCriteriaTimestrOrder_resultStandardScheme(); + public getKeysCriteriaTimestrPage_resultStandardScheme getScheme() { + return new getKeysCriteriaTimestrPage_resultStandardScheme(); } } - private static class getKeysCriteriaTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -572874,28 +571751,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6206 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6206.size); - long _key6207; - @org.apache.thrift.annotation.Nullable java.util.Map _val6208; - for (int _i6209 = 0; _i6209 < _map6206.size; ++_i6209) + org.apache.thrift.protocol.TMap _map6178 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6178.size); + long _key6179; + @org.apache.thrift.annotation.Nullable java.util.Map _val6180; + for (int _i6181 = 0; _i6181 < _map6178.size; ++_i6181) { - _key6207 = iprot.readI64(); + _key6179 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6210 = iprot.readMapBegin(); - _val6208 = new java.util.LinkedHashMap(2*_map6210.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6211; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6212; - for (int _i6213 = 0; _i6213 < _map6210.size; ++_i6213) + org.apache.thrift.protocol.TMap _map6182 = iprot.readMapBegin(); + _val6180 = new java.util.LinkedHashMap(2*_map6182.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6183; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6184; + for (int _i6185 = 0; _i6185 < _map6182.size; ++_i6185) { - _key6211 = iprot.readString(); - _val6212 = new com.cinchapi.concourse.thrift.TObject(); - _val6212.read(iprot); - _val6208.put(_key6211, _val6212); + _key6183 = iprot.readString(); + _val6184 = new com.cinchapi.concourse.thrift.TObject(); + _val6184.read(iprot); + _val6180.put(_key6183, _val6184); } iprot.readMapEnd(); } - struct.success.put(_key6207, _val6208); + struct.success.put(_key6179, _val6180); } iprot.readMapEnd(); } @@ -572952,7 +571829,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -572960,15 +571837,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6214 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6186 : struct.success.entrySet()) { - oprot.writeI64(_iter6214.getKey()); + oprot.writeI64(_iter6186.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6214.getValue().size())); - for (java.util.Map.Entry _iter6215 : _iter6214.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6186.getValue().size())); + for (java.util.Map.Entry _iter6187 : _iter6186.getValue().entrySet()) { - oprot.writeString(_iter6215.getKey()); - _iter6215.getValue().write(oprot); + oprot.writeString(_iter6187.getKey()); + _iter6187.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -573003,17 +571880,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrOrder_resultTupleScheme getScheme() { - return new getKeysCriteriaTimestrOrder_resultTupleScheme(); + public getKeysCriteriaTimestrPage_resultTupleScheme getScheme() { + return new getKeysCriteriaTimestrPage_resultTupleScheme(); } } - private static class getKeysCriteriaTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -573035,15 +571912,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6216 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6188 : struct.success.entrySet()) { - oprot.writeI64(_iter6216.getKey()); + oprot.writeI64(_iter6188.getKey()); { - oprot.writeI32(_iter6216.getValue().size()); - for (java.util.Map.Entry _iter6217 : _iter6216.getValue().entrySet()) + oprot.writeI32(_iter6188.getValue().size()); + for (java.util.Map.Entry _iter6189 : _iter6188.getValue().entrySet()) { - oprot.writeString(_iter6217.getKey()); - _iter6217.getValue().write(oprot); + oprot.writeString(_iter6189.getKey()); + _iter6189.getValue().write(oprot); } } } @@ -573064,32 +571941,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6218 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6218.size); - long _key6219; - @org.apache.thrift.annotation.Nullable java.util.Map _val6220; - for (int _i6221 = 0; _i6221 < _map6218.size; ++_i6221) + org.apache.thrift.protocol.TMap _map6190 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6190.size); + long _key6191; + @org.apache.thrift.annotation.Nullable java.util.Map _val6192; + for (int _i6193 = 0; _i6193 < _map6190.size; ++_i6193) { - _key6219 = iprot.readI64(); + _key6191 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6222 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6220 = new java.util.LinkedHashMap(2*_map6222.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6223; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6224; - for (int _i6225 = 0; _i6225 < _map6222.size; ++_i6225) + org.apache.thrift.protocol.TMap _map6194 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6192 = new java.util.LinkedHashMap(2*_map6194.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6195; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6196; + for (int _i6197 = 0; _i6197 < _map6194.size; ++_i6197) { - _key6223 = iprot.readString(); - _val6224 = new com.cinchapi.concourse.thrift.TObject(); - _val6224.read(iprot); - _val6220.put(_key6223, _val6224); + _key6195 = iprot.readString(); + _val6196 = new com.cinchapi.concourse.thrift.TObject(); + _val6196.read(iprot); + _val6192.put(_key6195, _val6196); } } - struct.success.put(_key6219, _val6220); + struct.success.put(_key6191, _val6192); } } struct.setSuccessIsSet(true); @@ -573122,26 +571999,24 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrOrderPage_args"); + public static class getKeysCriteriaTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -573152,10 +572027,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)2, "criteria"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -573179,13 +572053,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -573242,8 +572114,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -573251,18 +572121,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrOrder_args.class, metaDataMap); } - public getKeysCriteriaTimestrOrderPage_args() { + public getKeysCriteriaTimestrOrder_args() { } - public getKeysCriteriaTimestrOrderPage_args( + public getKeysCriteriaTimestrOrder_args( java.util.List keys, com.cinchapi.concourse.thrift.TCriteria criteria, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -573272,7 +572141,6 @@ public getKeysCriteriaTimestrOrderPage_args( this.criteria = criteria; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -573281,7 +572149,7 @@ public getKeysCriteriaTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimestrOrderPage_args(getKeysCriteriaTimestrOrderPage_args other) { + public getKeysCriteriaTimestrOrder_args(getKeysCriteriaTimestrOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -573295,9 +572163,6 @@ public getKeysCriteriaTimestrOrderPage_args(getKeysCriteriaTimestrOrderPage_args if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -573310,8 +572175,8 @@ public getKeysCriteriaTimestrOrderPage_args(getKeysCriteriaTimestrOrderPage_args } @Override - public getKeysCriteriaTimestrOrderPage_args deepCopy() { - return new getKeysCriteriaTimestrOrderPage_args(this); + public getKeysCriteriaTimestrOrder_args deepCopy() { + return new getKeysCriteriaTimestrOrder_args(this); } @Override @@ -573320,7 +572185,6 @@ public void clear() { this.criteria = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -573347,7 +572211,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCriteriaTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -573372,7 +572236,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public getKeysCriteriaTimestrOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public getKeysCriteriaTimestrOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -573397,7 +572261,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysCriteriaTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysCriteriaTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -573422,7 +572286,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysCriteriaTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysCriteriaTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -573442,37 +572306,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCriteriaTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCriteriaTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -573497,7 +572336,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCriteriaTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -573522,7 +572361,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCriteriaTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -573577,14 +572416,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -573628,9 +572459,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -573660,8 +572488,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -573674,12 +572500,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimestrOrderPage_args) - return this.equals((getKeysCriteriaTimestrOrderPage_args)that); + if (that instanceof getKeysCriteriaTimestrOrder_args) + return this.equals((getKeysCriteriaTimestrOrder_args)that); return false; } - public boolean equals(getKeysCriteriaTimestrOrderPage_args that) { + public boolean equals(getKeysCriteriaTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -573721,15 +572547,6 @@ public boolean equals(getKeysCriteriaTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -573780,10 +572597,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -573800,7 +572613,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimestrOrderPage_args other) { + public int compareTo(getKeysCriteriaTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -573847,16 +572660,6 @@ public int compareTo(getKeysCriteriaTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -573908,7 +572711,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrOrder_args("); boolean first = true; sb.append("keys:"); @@ -573943,14 +572746,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -573987,9 +572782,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -574014,17 +572806,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrOrderPage_argsStandardScheme getScheme() { - return new getKeysCriteriaTimestrOrderPage_argsStandardScheme(); + public getKeysCriteriaTimestrOrder_argsStandardScheme getScheme() { + return new getKeysCriteriaTimestrOrder_argsStandardScheme(); } } - private static class getKeysCriteriaTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -574037,13 +572829,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6226 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6226.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6227; - for (int _i6228 = 0; _i6228 < _list6226.size; ++_i6228) + org.apache.thrift.protocol.TList _list6198 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6198.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6199; + for (int _i6200 = 0; _i6200 < _list6198.size; ++_i6200) { - _elem6227 = iprot.readString(); - struct.keys.add(_elem6227); + _elem6199 = iprot.readString(); + struct.keys.add(_elem6199); } iprot.readListEnd(); } @@ -574078,16 +572870,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -574096,7 +572879,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -574105,7 +572888,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -574125,7 +572908,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -574133,9 +572916,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6229 : struct.keys) + for (java.lang.String _iter6201 : struct.keys) { - oprot.writeString(_iter6229); + oprot.writeString(_iter6201); } oprot.writeListEnd(); } @@ -574156,11 +572939,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -574182,17 +572960,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrOrderPage_argsTupleScheme getScheme() { - return new getKeysCriteriaTimestrOrderPage_argsTupleScheme(); + public getKeysCriteriaTimestrOrder_argsTupleScheme getScheme() { + return new getKeysCriteriaTimestrOrder_argsTupleScheme(); } } - private static class getKeysCriteriaTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -574207,25 +572985,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6230 : struct.keys) + for (java.lang.String _iter6202 : struct.keys) { - oprot.writeString(_iter6230); + oprot.writeString(_iter6202); } } } @@ -574238,9 +573013,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -574253,18 +573025,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6231 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6231.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6232; - for (int _i6233 = 0; _i6233 < _list6231.size; ++_i6233) + org.apache.thrift.protocol.TList _list6203 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6203.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6204; + for (int _i6205 = 0; _i6205 < _list6203.size; ++_i6205) { - _elem6232 = iprot.readString(); - struct.keys.add(_elem6232); + _elem6204 = iprot.readString(); + struct.keys.add(_elem6204); } } struct.setKeysIsSet(true); @@ -574284,21 +573056,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimes struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -574310,8 +573077,8 @@ private static S scheme(org.apache. } } - public static class getKeysCriteriaTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrOrderPage_result"); + public static class getKeysCriteriaTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -574319,8 +573086,8 @@ public static class getKeysCriteriaTimestrOrderPage_result implements org.apache private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -574421,13 +573188,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrOrder_result.class, metaDataMap); } - public getKeysCriteriaTimestrOrderPage_result() { + public getKeysCriteriaTimestrOrder_result() { } - public getKeysCriteriaTimestrOrderPage_result( + public getKeysCriteriaTimestrOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -574445,7 +573212,7 @@ public getKeysCriteriaTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysCriteriaTimestrOrderPage_result(getKeysCriteriaTimestrOrderPage_result other) { + public getKeysCriteriaTimestrOrder_result(getKeysCriteriaTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -574487,8 +573254,8 @@ public getKeysCriteriaTimestrOrderPage_result(getKeysCriteriaTimestrOrderPage_re } @Override - public getKeysCriteriaTimestrOrderPage_result deepCopy() { - return new getKeysCriteriaTimestrOrderPage_result(this); + public getKeysCriteriaTimestrOrder_result deepCopy() { + return new getKeysCriteriaTimestrOrder_result(this); } @Override @@ -574516,7 +573283,7 @@ public java.util.Map> success) { + public getKeysCriteriaTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -574541,7 +573308,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCriteriaTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -574566,7 +573333,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCriteriaTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -574591,7 +573358,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCriteriaTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCriteriaTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -574616,7 +573383,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCriteriaTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCriteriaTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -574729,12 +573496,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCriteriaTimestrOrderPage_result) - return this.equals((getKeysCriteriaTimestrOrderPage_result)that); + if (that instanceof getKeysCriteriaTimestrOrder_result) + return this.equals((getKeysCriteriaTimestrOrder_result)that); return false; } - public boolean equals(getKeysCriteriaTimestrOrderPage_result that) { + public boolean equals(getKeysCriteriaTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -574816,7 +573583,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCriteriaTimestrOrderPage_result other) { + public int compareTo(getKeysCriteriaTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -574893,7 +573660,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -574960,17 +573727,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCriteriaTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrOrderPage_resultStandardScheme getScheme() { - return new getKeysCriteriaTimestrOrderPage_resultStandardScheme(); + public getKeysCriteriaTimestrOrder_resultStandardScheme getScheme() { + return new getKeysCriteriaTimestrOrder_resultStandardScheme(); } } - private static class getKeysCriteriaTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -574983,28 +573750,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6234 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6234.size); - long _key6235; - @org.apache.thrift.annotation.Nullable java.util.Map _val6236; - for (int _i6237 = 0; _i6237 < _map6234.size; ++_i6237) + org.apache.thrift.protocol.TMap _map6206 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6206.size); + long _key6207; + @org.apache.thrift.annotation.Nullable java.util.Map _val6208; + for (int _i6209 = 0; _i6209 < _map6206.size; ++_i6209) { - _key6235 = iprot.readI64(); + _key6207 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6238 = iprot.readMapBegin(); - _val6236 = new java.util.LinkedHashMap(2*_map6238.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6239; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6240; - for (int _i6241 = 0; _i6241 < _map6238.size; ++_i6241) + org.apache.thrift.protocol.TMap _map6210 = iprot.readMapBegin(); + _val6208 = new java.util.LinkedHashMap(2*_map6210.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6211; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6212; + for (int _i6213 = 0; _i6213 < _map6210.size; ++_i6213) { - _key6239 = iprot.readString(); - _val6240 = new com.cinchapi.concourse.thrift.TObject(); - _val6240.read(iprot); - _val6236.put(_key6239, _val6240); + _key6211 = iprot.readString(); + _val6212 = new com.cinchapi.concourse.thrift.TObject(); + _val6212.read(iprot); + _val6208.put(_key6211, _val6212); } iprot.readMapEnd(); } - struct.success.put(_key6235, _val6236); + struct.success.put(_key6207, _val6208); } iprot.readMapEnd(); } @@ -575061,7 +573828,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -575069,15 +573836,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6242 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6214 : struct.success.entrySet()) { - oprot.writeI64(_iter6242.getKey()); + oprot.writeI64(_iter6214.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6242.getValue().size())); - for (java.util.Map.Entry _iter6243 : _iter6242.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6214.getValue().size())); + for (java.util.Map.Entry _iter6215 : _iter6214.getValue().entrySet()) { - oprot.writeString(_iter6243.getKey()); - _iter6243.getValue().write(oprot); + oprot.writeString(_iter6215.getKey()); + _iter6215.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -575112,17 +573879,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTim } - private static class getKeysCriteriaTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCriteriaTimestrOrderPage_resultTupleScheme getScheme() { - return new getKeysCriteriaTimestrOrderPage_resultTupleScheme(); + public getKeysCriteriaTimestrOrder_resultTupleScheme getScheme() { + return new getKeysCriteriaTimestrOrder_resultTupleScheme(); } } - private static class getKeysCriteriaTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -575144,15 +573911,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6244 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6216 : struct.success.entrySet()) { - oprot.writeI64(_iter6244.getKey()); + oprot.writeI64(_iter6216.getKey()); { - oprot.writeI32(_iter6244.getValue().size()); - for (java.util.Map.Entry _iter6245 : _iter6244.getValue().entrySet()) + oprot.writeI32(_iter6216.getValue().size()); + for (java.util.Map.Entry _iter6217 : _iter6216.getValue().entrySet()) { - oprot.writeString(_iter6245.getKey()); - _iter6245.getValue().write(oprot); + oprot.writeString(_iter6217.getKey()); + _iter6217.getValue().write(oprot); } } } @@ -575173,32 +573940,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6246 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6246.size); - long _key6247; - @org.apache.thrift.annotation.Nullable java.util.Map _val6248; - for (int _i6249 = 0; _i6249 < _map6246.size; ++_i6249) + org.apache.thrift.protocol.TMap _map6218 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6218.size); + long _key6219; + @org.apache.thrift.annotation.Nullable java.util.Map _val6220; + for (int _i6221 = 0; _i6221 < _map6218.size; ++_i6221) { - _key6247 = iprot.readI64(); + _key6219 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6250 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6248 = new java.util.LinkedHashMap(2*_map6250.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6251; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6252; - for (int _i6253 = 0; _i6253 < _map6250.size; ++_i6253) + org.apache.thrift.protocol.TMap _map6222 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6220 = new java.util.LinkedHashMap(2*_map6222.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6223; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6224; + for (int _i6225 = 0; _i6225 < _map6222.size; ++_i6225) { - _key6251 = iprot.readString(); - _val6252 = new com.cinchapi.concourse.thrift.TObject(); - _val6252.read(iprot); - _val6248.put(_key6251, _val6252); + _key6223 = iprot.readString(); + _val6224 = new com.cinchapi.concourse.thrift.TObject(); + _val6224.read(iprot); + _val6220.put(_key6223, _val6224); } } - struct.success.put(_key6247, _val6248); + struct.success.put(_key6219, _val6220); } } struct.setSuccessIsSet(true); @@ -575231,22 +573998,26 @@ private static S scheme(org.apache. } } - public static class getKeysCclTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTime_args"); + public static class getKeysCriteriaTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCriteriaTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCriteriaTimestrOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -575254,11 +574025,13 @@ public static class getKeysCclTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -575276,15 +574049,19 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // CCL - return CCL; + case 2: // CRITERIA + return CRITERIA; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -575329,18 +574106,20 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -575348,25 +574127,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrOrderPage_args.class, metaDataMap); } - public getKeysCclTime_args() { + public getKeysCriteriaTimestrOrderPage_args() { } - public getKeysCclTime_args( + public getKeysCriteriaTimestrOrderPage_args( java.util.List keys, - java.lang.String ccl, - long timestamp, + com.cinchapi.concourse.thrift.TCriteria criteria, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.ccl = ccl; + this.criteria = criteria; this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -575375,16 +574157,23 @@ public getKeysCclTime_args( /** * Performs a deep copy on other. */ - public getKeysCclTime_args(getKeysCclTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public getKeysCriteriaTimestrOrderPage_args(getKeysCriteriaTimestrOrderPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - if (other.isSetCcl()) { - this.ccl = other.ccl; + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -575397,16 +574186,17 @@ public getKeysCclTime_args(getKeysCclTime_args other) { } @Override - public getKeysCclTime_args deepCopy() { - return new getKeysCclTime_args(this); + public getKeysCriteriaTimestrOrderPage_args deepCopy() { + return new getKeysCriteriaTimestrOrderPage_args(this); } @Override public void clear() { this.keys = null; - this.ccl = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.criteria = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -575433,7 +574223,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCriteriaTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -575454,51 +574244,103 @@ public void setKeysIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public getKeysCclTime_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public getKeysCriteriaTimestrOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysCclTime_args setTimestamp(long timestamp) { + public getKeysCriteriaTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeysCriteriaTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysCriteriaTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -575506,7 +574348,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCriteriaTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -575531,7 +574373,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCriteriaTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -575556,7 +574398,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCriteriaTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -575587,11 +574429,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); } break; @@ -575599,7 +574441,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -575637,12 +574495,18 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -575666,10 +574530,14 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -575682,12 +574550,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTime_args) - return this.equals((getKeysCclTime_args)that); + if (that instanceof getKeysCriteriaTimestrOrderPage_args) + return this.equals((getKeysCriteriaTimestrOrderPage_args)that); return false; } - public boolean equals(getKeysCclTime_args that) { + public boolean equals(getKeysCriteriaTimestrOrderPage_args that) { if (that == null) return false; if (this == that) @@ -575702,21 +574570,39 @@ public boolean equals(getKeysCclTime_args that) { return false; } - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -575758,11 +574644,21 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -575780,7 +574676,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTime_args other) { + public int compareTo(getKeysCriteriaTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -575797,12 +574693,12 @@ public int compareTo(getKeysCclTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); if (lastComparison != 0) { return lastComparison; } @@ -575817,6 +574713,26 @@ public int compareTo(getKeysCclTime_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -575868,7 +574784,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -575879,16 +574795,36 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); } first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -575921,6 +574857,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -575939,25 +574884,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeysCclTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTime_argsStandardScheme getScheme() { - return new getKeysCclTime_argsStandardScheme(); + public getKeysCriteriaTimestrOrderPage_argsStandardScheme getScheme() { + return new getKeysCriteriaTimestrOrderPage_argsStandardScheme(); } } - private static class getKeysCclTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -575970,13 +574913,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_args case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6254 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6254.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6255; - for (int _i6256 = 0; _i6256 < _list6254.size; ++_i6256) + org.apache.thrift.protocol.TList _list6226 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6226.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6227; + for (int _i6228 = 0; _i6228 < _list6226.size; ++_i6228) { - _elem6255 = iprot.readString(); - struct.keys.add(_elem6255); + _elem6227 = iprot.readString(); + struct.keys.add(_elem6227); } iprot.readListEnd(); } @@ -575985,23 +574928,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 2: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -576010,7 +574972,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -576019,7 +574981,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -576039,7 +575001,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -576047,22 +575009,34 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTime_arg oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6257 : struct.keys) + for (java.lang.String _iter6229 : struct.keys) { - oprot.writeString(_iter6257); + oprot.writeString(_iter6229); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -576084,52 +575058,64 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTime_arg } - private static class getKeysCclTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTime_argsTupleScheme getScheme() { - return new getKeysCclTime_argsTupleScheme(); + public getKeysCriteriaTimestrOrderPage_argsTupleScheme getScheme() { + return new getKeysCriteriaTimestrOrderPage_argsTupleScheme(); } } - private static class getKeysCclTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(1); } if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6258 : struct.keys) + for (java.lang.String _iter6230 : struct.keys) { - oprot.writeString(_iter6258); + oprot.writeString(_iter6230); } } } - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -576143,41 +575129,52 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6259 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6259.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6260; - for (int _i6261 = 0; _i6261 < _list6259.size; ++_i6261) + org.apache.thrift.protocol.TList _list6231 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6231.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6232; + for (int _i6233 = 0; _i6233 < _list6231.size; ++_i6233) { - _elem6260 = iprot.readString(); - struct.keys.add(_elem6260); + _elem6232 = iprot.readString(); + struct.keys.add(_elem6232); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -576189,8 +575186,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTime_result"); + public static class getKeysCriteriaTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCriteriaTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -576198,8 +575195,8 @@ public static class getKeysCclTime_result implements org.apache.thrift.TBase> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -576300,13 +575297,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCriteriaTimestrOrderPage_result.class, metaDataMap); } - public getKeysCclTime_result() { + public getKeysCriteriaTimestrOrderPage_result() { } - public getKeysCclTime_result( + public getKeysCriteriaTimestrOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -576324,7 +575321,7 @@ public getKeysCclTime_result( /** * Performs a deep copy on other. */ - public getKeysCclTime_result(getKeysCclTime_result other) { + public getKeysCriteriaTimestrOrderPage_result(getKeysCriteriaTimestrOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -576366,8 +575363,8 @@ public getKeysCclTime_result(getKeysCclTime_result other) { } @Override - public getKeysCclTime_result deepCopy() { - return new getKeysCclTime_result(this); + public getKeysCriteriaTimestrOrderPage_result deepCopy() { + return new getKeysCriteriaTimestrOrderPage_result(this); } @Override @@ -576395,7 +575392,7 @@ public java.util.Map> success) { + public getKeysCriteriaTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -576420,7 +575417,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCriteriaTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -576445,7 +575442,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCriteriaTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -576470,7 +575467,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCriteriaTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -576495,7 +575492,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCriteriaTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -576608,12 +575605,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTime_result) - return this.equals((getKeysCclTime_result)that); + if (that instanceof getKeysCriteriaTimestrOrderPage_result) + return this.equals((getKeysCriteriaTimestrOrderPage_result)that); return false; } - public boolean equals(getKeysCclTime_result that) { + public boolean equals(getKeysCriteriaTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -576695,7 +575692,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTime_result other) { + public int compareTo(getKeysCriteriaTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -576772,7 +575769,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCriteriaTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -576839,17 +575836,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTime_resultStandardScheme getScheme() { - return new getKeysCclTime_resultStandardScheme(); + public getKeysCriteriaTimestrOrderPage_resultStandardScheme getScheme() { + return new getKeysCriteriaTimestrOrderPage_resultStandardScheme(); } } - private static class getKeysCclTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCriteriaTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -576862,28 +575859,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6262 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6262.size); - long _key6263; - @org.apache.thrift.annotation.Nullable java.util.Map _val6264; - for (int _i6265 = 0; _i6265 < _map6262.size; ++_i6265) + org.apache.thrift.protocol.TMap _map6234 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6234.size); + long _key6235; + @org.apache.thrift.annotation.Nullable java.util.Map _val6236; + for (int _i6237 = 0; _i6237 < _map6234.size; ++_i6237) { - _key6263 = iprot.readI64(); + _key6235 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6266 = iprot.readMapBegin(); - _val6264 = new java.util.LinkedHashMap(2*_map6266.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6267; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6268; - for (int _i6269 = 0; _i6269 < _map6266.size; ++_i6269) + org.apache.thrift.protocol.TMap _map6238 = iprot.readMapBegin(); + _val6236 = new java.util.LinkedHashMap(2*_map6238.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6239; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6240; + for (int _i6241 = 0; _i6241 < _map6238.size; ++_i6241) { - _key6267 = iprot.readString(); - _val6268 = new com.cinchapi.concourse.thrift.TObject(); - _val6268.read(iprot); - _val6264.put(_key6267, _val6268); + _key6239 = iprot.readString(); + _val6240 = new com.cinchapi.concourse.thrift.TObject(); + _val6240.read(iprot); + _val6236.put(_key6239, _val6240); } iprot.readMapEnd(); } - struct.success.put(_key6263, _val6264); + struct.success.put(_key6235, _val6236); } iprot.readMapEnd(); } @@ -576940,7 +575937,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -576948,15 +575945,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTime_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6270 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6242 : struct.success.entrySet()) { - oprot.writeI64(_iter6270.getKey()); + oprot.writeI64(_iter6242.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6270.getValue().size())); - for (java.util.Map.Entry _iter6271 : _iter6270.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6242.getValue().size())); + for (java.util.Map.Entry _iter6243 : _iter6242.getValue().entrySet()) { - oprot.writeString(_iter6271.getKey()); - _iter6271.getValue().write(oprot); + oprot.writeString(_iter6243.getKey()); + _iter6243.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -576991,17 +575988,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTime_res } - private static class getKeysCclTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCriteriaTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTime_resultTupleScheme getScheme() { - return new getKeysCclTime_resultTupleScheme(); + public getKeysCriteriaTimestrOrderPage_resultTupleScheme getScheme() { + return new getKeysCriteriaTimestrOrderPage_resultTupleScheme(); } } - private static class getKeysCclTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCriteriaTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -577023,15 +576020,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6272 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6244 : struct.success.entrySet()) { - oprot.writeI64(_iter6272.getKey()); + oprot.writeI64(_iter6244.getKey()); { - oprot.writeI32(_iter6272.getValue().size()); - for (java.util.Map.Entry _iter6273 : _iter6272.getValue().entrySet()) + oprot.writeI32(_iter6244.getValue().size()); + for (java.util.Map.Entry _iter6245 : _iter6244.getValue().entrySet()) { - oprot.writeString(_iter6273.getKey()); - _iter6273.getValue().write(oprot); + oprot.writeString(_iter6245.getKey()); + _iter6245.getValue().write(oprot); } } } @@ -577052,32 +576049,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_resu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCriteriaTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6274 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6274.size); - long _key6275; - @org.apache.thrift.annotation.Nullable java.util.Map _val6276; - for (int _i6277 = 0; _i6277 < _map6274.size; ++_i6277) + org.apache.thrift.protocol.TMap _map6246 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6246.size); + long _key6247; + @org.apache.thrift.annotation.Nullable java.util.Map _val6248; + for (int _i6249 = 0; _i6249 < _map6246.size; ++_i6249) { - _key6275 = iprot.readI64(); + _key6247 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6278 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6276 = new java.util.LinkedHashMap(2*_map6278.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6279; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6280; - for (int _i6281 = 0; _i6281 < _map6278.size; ++_i6281) + org.apache.thrift.protocol.TMap _map6250 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6248 = new java.util.LinkedHashMap(2*_map6250.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6251; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6252; + for (int _i6253 = 0; _i6253 < _map6250.size; ++_i6253) { - _key6279 = iprot.readString(); - _val6280 = new com.cinchapi.concourse.thrift.TObject(); - _val6280.read(iprot); - _val6276.put(_key6279, _val6280); + _key6251 = iprot.readString(); + _val6252 = new com.cinchapi.concourse.thrift.TObject(); + _val6252.read(iprot); + _val6248.put(_key6251, _val6252); } } - struct.success.put(_key6275, _val6276); + struct.success.put(_key6247, _val6248); } } struct.setSuccessIsSet(true); @@ -577110,24 +576107,22 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimePage_args"); + public static class getKeysCclTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -577137,10 +576132,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -577162,13 +576156,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -577225,8 +576217,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -577234,17 +576224,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTime_args.class, metaDataMap); } - public getKeysCclTimePage_args() { + public getKeysCclTime_args() { } - public getKeysCclTimePage_args( + public getKeysCclTime_args( java.util.List keys, java.lang.String ccl, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -577254,7 +576243,6 @@ public getKeysCclTimePage_args( this.ccl = ccl; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -577263,7 +576251,7 @@ public getKeysCclTimePage_args( /** * Performs a deep copy on other. */ - public getKeysCclTimePage_args(getKeysCclTimePage_args other) { + public getKeysCclTime_args(getKeysCclTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -577273,9 +576261,6 @@ public getKeysCclTimePage_args(getKeysCclTimePage_args other) { this.ccl = other.ccl; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -577288,8 +576273,8 @@ public getKeysCclTimePage_args(getKeysCclTimePage_args other) { } @Override - public getKeysCclTimePage_args deepCopy() { - return new getKeysCclTimePage_args(this); + public getKeysCclTime_args deepCopy() { + return new getKeysCclTime_args(this); } @Override @@ -577298,7 +576283,6 @@ public void clear() { this.ccl = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -577325,7 +576309,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -577350,7 +576334,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclTimePage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclTime_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -577374,7 +576358,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysCclTimePage_args setTimestamp(long timestamp) { + public getKeysCclTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -577393,37 +576377,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCclTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -577448,7 +576407,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -577473,7 +576432,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -577520,14 +576479,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -577568,9 +576519,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -577598,8 +576546,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -577612,12 +576558,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimePage_args) - return this.equals((getKeysCclTimePage_args)that); + if (that instanceof getKeysCclTime_args) + return this.equals((getKeysCclTime_args)that); return false; } - public boolean equals(getKeysCclTimePage_args that) { + public boolean equals(getKeysCclTime_args that) { if (that == null) return false; if (this == that) @@ -577650,15 +576596,6 @@ public boolean equals(getKeysCclTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -577703,10 +576640,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -577723,7 +576656,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimePage_args other) { + public int compareTo(getKeysCclTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -577760,16 +576693,6 @@ public int compareTo(getKeysCclTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -577821,7 +576744,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTime_args("); boolean first = true; sb.append("keys:"); @@ -577844,14 +576767,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -577882,9 +576797,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -577911,17 +576823,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimePage_argsStandardScheme getScheme() { - return new getKeysCclTimePage_argsStandardScheme(); + public getKeysCclTime_argsStandardScheme getScheme() { + return new getKeysCclTime_argsStandardScheme(); } } - private static class getKeysCclTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -577934,13 +576846,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_ case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6282 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6282.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6283; - for (int _i6284 = 0; _i6284 < _list6282.size; ++_i6284) + org.apache.thrift.protocol.TList _list6254 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6254.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6255; + for (int _i6256 = 0; _i6256 < _list6254.size; ++_i6256) { - _elem6283 = iprot.readString(); - struct.keys.add(_elem6283); + _elem6255 = iprot.readString(); + struct.keys.add(_elem6255); } iprot.readListEnd(); } @@ -577965,16 +576877,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -577983,7 +576886,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -577992,7 +576895,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -578012,7 +576915,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -578020,9 +576923,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6285 : struct.keys) + for (java.lang.String _iter6257 : struct.keys) { - oprot.writeString(_iter6285); + oprot.writeString(_iter6257); } oprot.writeListEnd(); } @@ -578036,11 +576939,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -578062,17 +576960,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage } - private static class getKeysCclTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimePage_argsTupleScheme getScheme() { - return new getKeysCclTimePage_argsTupleScheme(); + public getKeysCclTime_argsTupleScheme getScheme() { + return new getKeysCclTime_argsTupleScheme(); } } - private static class getKeysCclTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -578084,25 +576982,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_ if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6286 : struct.keys) + for (java.lang.String _iter6258 : struct.keys) { - oprot.writeString(_iter6286); + oprot.writeString(_iter6258); } } } @@ -578112,9 +577007,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_ if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -578127,18 +577019,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6287 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6287.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6288; - for (int _i6289 = 0; _i6289 < _list6287.size; ++_i6289) + org.apache.thrift.protocol.TList _list6259 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6259.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6260; + for (int _i6261 = 0; _i6261 < _list6259.size; ++_i6261) { - _elem6288 = iprot.readString(); - struct.keys.add(_elem6288); + _elem6260 = iprot.readString(); + struct.keys.add(_elem6260); } } struct.setKeysIsSet(true); @@ -578152,21 +577044,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_a struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -578178,8 +577065,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimePage_result"); + public static class getKeysCclTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -578187,8 +577074,8 @@ public static class getKeysCclTimePage_result implements org.apache.thrift.TBase private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -578289,13 +577176,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTime_result.class, metaDataMap); } - public getKeysCclTimePage_result() { + public getKeysCclTime_result() { } - public getKeysCclTimePage_result( + public getKeysCclTime_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -578313,7 +577200,7 @@ public getKeysCclTimePage_result( /** * Performs a deep copy on other. */ - public getKeysCclTimePage_result(getKeysCclTimePage_result other) { + public getKeysCclTime_result(getKeysCclTime_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -578355,8 +577242,8 @@ public getKeysCclTimePage_result(getKeysCclTimePage_result other) { } @Override - public getKeysCclTimePage_result deepCopy() { - return new getKeysCclTimePage_result(this); + public getKeysCclTime_result deepCopy() { + return new getKeysCclTime_result(this); } @Override @@ -578384,7 +577271,7 @@ public java.util.Map> success) { + public getKeysCclTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -578409,7 +577296,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -578434,7 +577321,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -578459,7 +577346,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -578484,7 +577371,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -578597,12 +577484,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimePage_result) - return this.equals((getKeysCclTimePage_result)that); + if (that instanceof getKeysCclTime_result) + return this.equals((getKeysCclTime_result)that); return false; } - public boolean equals(getKeysCclTimePage_result that) { + public boolean equals(getKeysCclTime_result that) { if (that == null) return false; if (this == that) @@ -578684,7 +577571,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimePage_result other) { + public int compareTo(getKeysCclTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -578761,7 +577648,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTime_result("); boolean first = true; sb.append("success:"); @@ -578828,17 +577715,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimePage_resultStandardScheme getScheme() { - return new getKeysCclTimePage_resultStandardScheme(); + public getKeysCclTime_resultStandardScheme getScheme() { + return new getKeysCclTime_resultStandardScheme(); } } - private static class getKeysCclTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -578851,28 +577738,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6290 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6290.size); - long _key6291; - @org.apache.thrift.annotation.Nullable java.util.Map _val6292; - for (int _i6293 = 0; _i6293 < _map6290.size; ++_i6293) + org.apache.thrift.protocol.TMap _map6262 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6262.size); + long _key6263; + @org.apache.thrift.annotation.Nullable java.util.Map _val6264; + for (int _i6265 = 0; _i6265 < _map6262.size; ++_i6265) { - _key6291 = iprot.readI64(); + _key6263 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6294 = iprot.readMapBegin(); - _val6292 = new java.util.LinkedHashMap(2*_map6294.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6295; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6296; - for (int _i6297 = 0; _i6297 < _map6294.size; ++_i6297) + org.apache.thrift.protocol.TMap _map6266 = iprot.readMapBegin(); + _val6264 = new java.util.LinkedHashMap(2*_map6266.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6267; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6268; + for (int _i6269 = 0; _i6269 < _map6266.size; ++_i6269) { - _key6295 = iprot.readString(); - _val6296 = new com.cinchapi.concourse.thrift.TObject(); - _val6296.read(iprot); - _val6292.put(_key6295, _val6296); + _key6267 = iprot.readString(); + _val6268 = new com.cinchapi.concourse.thrift.TObject(); + _val6268.read(iprot); + _val6264.put(_key6267, _val6268); } iprot.readMapEnd(); } - struct.success.put(_key6291, _val6292); + struct.success.put(_key6263, _val6264); } iprot.readMapEnd(); } @@ -578929,7 +577816,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -578937,15 +577824,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6298 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6270 : struct.success.entrySet()) { - oprot.writeI64(_iter6298.getKey()); + oprot.writeI64(_iter6270.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6298.getValue().size())); - for (java.util.Map.Entry _iter6299 : _iter6298.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6270.getValue().size())); + for (java.util.Map.Entry _iter6271 : _iter6270.getValue().entrySet()) { - oprot.writeString(_iter6299.getKey()); - _iter6299.getValue().write(oprot); + oprot.writeString(_iter6271.getKey()); + _iter6271.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -578980,17 +577867,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage } - private static class getKeysCclTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimePage_resultTupleScheme getScheme() { - return new getKeysCclTimePage_resultTupleScheme(); + public getKeysCclTime_resultTupleScheme getScheme() { + return new getKeysCclTime_resultTupleScheme(); } } - private static class getKeysCclTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -579012,15 +577899,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6300 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6272 : struct.success.entrySet()) { - oprot.writeI64(_iter6300.getKey()); + oprot.writeI64(_iter6272.getKey()); { - oprot.writeI32(_iter6300.getValue().size()); - for (java.util.Map.Entry _iter6301 : _iter6300.getValue().entrySet()) + oprot.writeI32(_iter6272.getValue().size()); + for (java.util.Map.Entry _iter6273 : _iter6272.getValue().entrySet()) { - oprot.writeString(_iter6301.getKey()); - _iter6301.getValue().write(oprot); + oprot.writeString(_iter6273.getKey()); + _iter6273.getValue().write(oprot); } } } @@ -579041,32 +577928,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6302 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6302.size); - long _key6303; - @org.apache.thrift.annotation.Nullable java.util.Map _val6304; - for (int _i6305 = 0; _i6305 < _map6302.size; ++_i6305) + org.apache.thrift.protocol.TMap _map6274 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6274.size); + long _key6275; + @org.apache.thrift.annotation.Nullable java.util.Map _val6276; + for (int _i6277 = 0; _i6277 < _map6274.size; ++_i6277) { - _key6303 = iprot.readI64(); + _key6275 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6306 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6304 = new java.util.LinkedHashMap(2*_map6306.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6307; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6308; - for (int _i6309 = 0; _i6309 < _map6306.size; ++_i6309) + org.apache.thrift.protocol.TMap _map6278 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6276 = new java.util.LinkedHashMap(2*_map6278.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6279; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6280; + for (int _i6281 = 0; _i6281 < _map6278.size; ++_i6281) { - _key6307 = iprot.readString(); - _val6308 = new com.cinchapi.concourse.thrift.TObject(); - _val6308.read(iprot); - _val6304.put(_key6307, _val6308); + _key6279 = iprot.readString(); + _val6280 = new com.cinchapi.concourse.thrift.TObject(); + _val6280.read(iprot); + _val6276.put(_key6279, _val6280); } } - struct.success.put(_key6303, _val6304); + struct.success.put(_key6275, _val6276); } } struct.setSuccessIsSet(true); @@ -579099,24 +577986,24 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimeOrder_args"); + public static class getKeysCclTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimePage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -579126,7 +578013,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -579151,8 +578038,8 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -579214,8 +578101,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -579223,17 +578110,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimePage_args.class, metaDataMap); } - public getKeysCclTimeOrder_args() { + public getKeysCclTimePage_args() { } - public getKeysCclTimeOrder_args( + public getKeysCclTimePage_args( java.util.List keys, java.lang.String ccl, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -579243,7 +578130,7 @@ public getKeysCclTimeOrder_args( this.ccl = ccl; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -579252,7 +578139,7 @@ public getKeysCclTimeOrder_args( /** * Performs a deep copy on other. */ - public getKeysCclTimeOrder_args(getKeysCclTimeOrder_args other) { + public getKeysCclTimePage_args(getKeysCclTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -579262,8 +578149,8 @@ public getKeysCclTimeOrder_args(getKeysCclTimeOrder_args other) { this.ccl = other.ccl; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -579277,8 +578164,8 @@ public getKeysCclTimeOrder_args(getKeysCclTimeOrder_args other) { } @Override - public getKeysCclTimeOrder_args deepCopy() { - return new getKeysCclTimeOrder_args(this); + public getKeysCclTimePage_args deepCopy() { + return new getKeysCclTimePage_args(this); } @Override @@ -579287,7 +578174,7 @@ public void clear() { this.ccl = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -579314,7 +578201,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclTimePage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -579339,7 +578226,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclTimeOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclTimePage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -579363,7 +578250,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysCclTimeOrder_args setTimestamp(long timestamp) { + public getKeysCclTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -579383,27 +578270,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysCclTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysCclTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -579412,7 +578299,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -579437,7 +578324,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -579462,7 +578349,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -579509,11 +578396,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -579557,8 +578444,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -579587,8 +578474,8 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -579601,12 +578488,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimeOrder_args) - return this.equals((getKeysCclTimeOrder_args)that); + if (that instanceof getKeysCclTimePage_args) + return this.equals((getKeysCclTimePage_args)that); return false; } - public boolean equals(getKeysCclTimeOrder_args that) { + public boolean equals(getKeysCclTimePage_args that) { if (that == null) return false; if (this == that) @@ -579639,12 +578526,12 @@ public boolean equals(getKeysCclTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -579692,9 +578579,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -579712,7 +578599,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimeOrder_args other) { + public int compareTo(getKeysCclTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -579749,12 +578636,12 @@ public int compareTo(getKeysCclTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -579810,7 +578697,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimePage_args("); boolean first = true; sb.append("keys:"); @@ -579833,11 +578720,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -579871,8 +578758,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -579900,17 +578787,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimeOrder_argsStandardScheme getScheme() { - return new getKeysCclTimeOrder_argsStandardScheme(); + public getKeysCclTimePage_argsStandardScheme getScheme() { + return new getKeysCclTimePage_argsStandardScheme(); } } - private static class getKeysCclTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -579923,13 +578810,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6310 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6310.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6311; - for (int _i6312 = 0; _i6312 < _list6310.size; ++_i6312) + org.apache.thrift.protocol.TList _list6282 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6282.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6283; + for (int _i6284 = 0; _i6284 < _list6282.size; ++_i6284) { - _elem6311 = iprot.readString(); - struct.keys.add(_elem6311); + _elem6283 = iprot.readString(); + struct.keys.add(_elem6283); } iprot.readListEnd(); } @@ -579954,11 +578841,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -580001,7 +578888,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -580009,9 +578896,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6313 : struct.keys) + for (java.lang.String _iter6285 : struct.keys) { - oprot.writeString(_iter6313); + oprot.writeString(_iter6285); } oprot.writeListEnd(); } @@ -580025,9 +578912,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -580051,17 +578938,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde } - private static class getKeysCclTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimeOrder_argsTupleScheme getScheme() { - return new getKeysCclTimeOrder_argsTupleScheme(); + public getKeysCclTimePage_argsTupleScheme getScheme() { + return new getKeysCclTimePage_argsTupleScheme(); } } - private static class getKeysCclTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -580073,7 +578960,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -580089,9 +578976,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6314 : struct.keys) + for (java.lang.String _iter6286 : struct.keys) { - oprot.writeString(_iter6314); + oprot.writeString(_iter6286); } } } @@ -580101,8 +578988,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -580116,18 +579003,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6315 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6315.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6316; - for (int _i6317 = 0; _i6317 < _list6315.size; ++_i6317) + org.apache.thrift.protocol.TList _list6287 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6287.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6288; + for (int _i6289 = 0; _i6289 < _list6287.size; ++_i6289) { - _elem6316 = iprot.readString(); - struct.keys.add(_elem6316); + _elem6288 = iprot.readString(); + struct.keys.add(_elem6288); } } struct.setKeysIsSet(true); @@ -580141,9 +579028,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_ struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -580167,8 +579054,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimeOrder_result"); + public static class getKeysCclTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -580176,8 +579063,8 @@ public static class getKeysCclTimeOrder_result implements org.apache.thrift.TBas private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -580278,13 +579165,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimePage_result.class, metaDataMap); } - public getKeysCclTimeOrder_result() { + public getKeysCclTimePage_result() { } - public getKeysCclTimeOrder_result( + public getKeysCclTimePage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -580302,7 +579189,7 @@ public getKeysCclTimeOrder_result( /** * Performs a deep copy on other. */ - public getKeysCclTimeOrder_result(getKeysCclTimeOrder_result other) { + public getKeysCclTimePage_result(getKeysCclTimePage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -580344,8 +579231,8 @@ public getKeysCclTimeOrder_result(getKeysCclTimeOrder_result other) { } @Override - public getKeysCclTimeOrder_result deepCopy() { - return new getKeysCclTimeOrder_result(this); + public getKeysCclTimePage_result deepCopy() { + return new getKeysCclTimePage_result(this); } @Override @@ -580373,7 +579260,7 @@ public java.util.Map> success) { + public getKeysCclTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -580398,7 +579285,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -580423,7 +579310,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -580448,7 +579335,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -580473,7 +579360,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -580586,12 +579473,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimeOrder_result) - return this.equals((getKeysCclTimeOrder_result)that); + if (that instanceof getKeysCclTimePage_result) + return this.equals((getKeysCclTimePage_result)that); return false; } - public boolean equals(getKeysCclTimeOrder_result that) { + public boolean equals(getKeysCclTimePage_result that) { if (that == null) return false; if (this == that) @@ -580673,7 +579560,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimeOrder_result other) { + public int compareTo(getKeysCclTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -580750,7 +579637,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimePage_result("); boolean first = true; sb.append("success:"); @@ -580817,17 +579704,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimeOrder_resultStandardScheme getScheme() { - return new getKeysCclTimeOrder_resultStandardScheme(); + public getKeysCclTimePage_resultStandardScheme getScheme() { + return new getKeysCclTimePage_resultStandardScheme(); } } - private static class getKeysCclTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -580840,28 +579727,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6318 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6318.size); - long _key6319; - @org.apache.thrift.annotation.Nullable java.util.Map _val6320; - for (int _i6321 = 0; _i6321 < _map6318.size; ++_i6321) + org.apache.thrift.protocol.TMap _map6290 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6290.size); + long _key6291; + @org.apache.thrift.annotation.Nullable java.util.Map _val6292; + for (int _i6293 = 0; _i6293 < _map6290.size; ++_i6293) { - _key6319 = iprot.readI64(); + _key6291 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6322 = iprot.readMapBegin(); - _val6320 = new java.util.LinkedHashMap(2*_map6322.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6323; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6324; - for (int _i6325 = 0; _i6325 < _map6322.size; ++_i6325) + org.apache.thrift.protocol.TMap _map6294 = iprot.readMapBegin(); + _val6292 = new java.util.LinkedHashMap(2*_map6294.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6295; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6296; + for (int _i6297 = 0; _i6297 < _map6294.size; ++_i6297) { - _key6323 = iprot.readString(); - _val6324 = new com.cinchapi.concourse.thrift.TObject(); - _val6324.read(iprot); - _val6320.put(_key6323, _val6324); + _key6295 = iprot.readString(); + _val6296 = new com.cinchapi.concourse.thrift.TObject(); + _val6296.read(iprot); + _val6292.put(_key6295, _val6296); } iprot.readMapEnd(); } - struct.success.put(_key6319, _val6320); + struct.success.put(_key6291, _val6292); } iprot.readMapEnd(); } @@ -580918,7 +579805,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -580926,15 +579813,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6326 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6298 : struct.success.entrySet()) { - oprot.writeI64(_iter6326.getKey()); + oprot.writeI64(_iter6298.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6326.getValue().size())); - for (java.util.Map.Entry _iter6327 : _iter6326.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6298.getValue().size())); + for (java.util.Map.Entry _iter6299 : _iter6298.getValue().entrySet()) { - oprot.writeString(_iter6327.getKey()); - _iter6327.getValue().write(oprot); + oprot.writeString(_iter6299.getKey()); + _iter6299.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -580969,17 +579856,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde } - private static class getKeysCclTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimeOrder_resultTupleScheme getScheme() { - return new getKeysCclTimeOrder_resultTupleScheme(); + public getKeysCclTimePage_resultTupleScheme getScheme() { + return new getKeysCclTimePage_resultTupleScheme(); } } - private static class getKeysCclTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -581001,15 +579888,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6328 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6300 : struct.success.entrySet()) { - oprot.writeI64(_iter6328.getKey()); + oprot.writeI64(_iter6300.getKey()); { - oprot.writeI32(_iter6328.getValue().size()); - for (java.util.Map.Entry _iter6329 : _iter6328.getValue().entrySet()) + oprot.writeI32(_iter6300.getValue().size()); + for (java.util.Map.Entry _iter6301 : _iter6300.getValue().entrySet()) { - oprot.writeString(_iter6329.getKey()); - _iter6329.getValue().write(oprot); + oprot.writeString(_iter6301.getKey()); + _iter6301.getValue().write(oprot); } } } @@ -581030,32 +579917,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6330 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6330.size); - long _key6331; - @org.apache.thrift.annotation.Nullable java.util.Map _val6332; - for (int _i6333 = 0; _i6333 < _map6330.size; ++_i6333) + org.apache.thrift.protocol.TMap _map6302 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6302.size); + long _key6303; + @org.apache.thrift.annotation.Nullable java.util.Map _val6304; + for (int _i6305 = 0; _i6305 < _map6302.size; ++_i6305) { - _key6331 = iprot.readI64(); + _key6303 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6334 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6332 = new java.util.LinkedHashMap(2*_map6334.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6335; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6336; - for (int _i6337 = 0; _i6337 < _map6334.size; ++_i6337) + org.apache.thrift.protocol.TMap _map6306 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6304 = new java.util.LinkedHashMap(2*_map6306.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6307; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6308; + for (int _i6309 = 0; _i6309 < _map6306.size; ++_i6309) { - _key6335 = iprot.readString(); - _val6336 = new com.cinchapi.concourse.thrift.TObject(); - _val6336.read(iprot); - _val6332.put(_key6335, _val6336); + _key6307 = iprot.readString(); + _val6308 = new com.cinchapi.concourse.thrift.TObject(); + _val6308.read(iprot); + _val6304.put(_key6307, _val6308); } } - struct.success.put(_key6331, _val6332); + struct.success.put(_key6303, _val6304); } } struct.setSuccessIsSet(true); @@ -581088,26 +579975,24 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimeOrderPage_args"); + public static class getKeysCclTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -581118,10 +580003,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -581145,13 +580029,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -581210,8 +580092,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -581219,18 +580099,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimeOrder_args.class, metaDataMap); } - public getKeysCclTimeOrderPage_args() { + public getKeysCclTimeOrder_args() { } - public getKeysCclTimeOrderPage_args( + public getKeysCclTimeOrder_args( java.util.List keys, java.lang.String ccl, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -581241,7 +580120,6 @@ public getKeysCclTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -581250,7 +580128,7 @@ public getKeysCclTimeOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysCclTimeOrderPage_args(getKeysCclTimeOrderPage_args other) { + public getKeysCclTimeOrder_args(getKeysCclTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); @@ -581263,9 +580141,6 @@ public getKeysCclTimeOrderPage_args(getKeysCclTimeOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -581278,8 +580153,8 @@ public getKeysCclTimeOrderPage_args(getKeysCclTimeOrderPage_args other) { } @Override - public getKeysCclTimeOrderPage_args deepCopy() { - return new getKeysCclTimeOrderPage_args(this); + public getKeysCclTimeOrder_args deepCopy() { + return new getKeysCclTimeOrder_args(this); } @Override @@ -581289,7 +580164,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -581316,7 +580190,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclTimeOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -581341,7 +580215,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclTimeOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclTimeOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -581365,7 +580239,7 @@ public long getTimestamp() { return this.timestamp; } - public getKeysCclTimeOrderPage_args setTimestamp(long timestamp) { + public getKeysCclTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -581389,7 +580263,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysCclTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysCclTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -581409,37 +580283,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCclTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -581464,7 +580313,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -581489,7 +580338,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -581544,14 +580393,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -581595,9 +580436,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -581627,8 +580465,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -581641,12 +580477,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimeOrderPage_args) - return this.equals((getKeysCclTimeOrderPage_args)that); + if (that instanceof getKeysCclTimeOrder_args) + return this.equals((getKeysCclTimeOrder_args)that); return false; } - public boolean equals(getKeysCclTimeOrderPage_args that) { + public boolean equals(getKeysCclTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -581688,15 +580524,6 @@ public boolean equals(getKeysCclTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -581745,10 +580572,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -581765,7 +580588,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimeOrderPage_args other) { + public int compareTo(getKeysCclTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -581812,16 +580635,6 @@ public int compareTo(getKeysCclTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -581873,7 +580686,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimeOrder_args("); boolean first = true; sb.append("keys:"); @@ -581904,14 +580717,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -581945,9 +580750,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -581974,17 +580776,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimeOrderPage_argsStandardScheme getScheme() { - return new getKeysCclTimeOrderPage_argsStandardScheme(); + public getKeysCclTimeOrder_argsStandardScheme getScheme() { + return new getKeysCclTimeOrder_argsStandardScheme(); } } - private static class getKeysCclTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -581997,13 +580799,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6338 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6338.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6339; - for (int _i6340 = 0; _i6340 < _list6338.size; ++_i6340) + org.apache.thrift.protocol.TList _list6310 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6310.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6311; + for (int _i6312 = 0; _i6312 < _list6310.size; ++_i6312) { - _elem6339 = iprot.readString(); - struct.keys.add(_elem6339); + _elem6311 = iprot.readString(); + struct.keys.add(_elem6311); } iprot.readListEnd(); } @@ -582037,16 +580839,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -582055,7 +580848,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -582064,7 +580857,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -582084,7 +580877,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -582092,9 +580885,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6341 : struct.keys) + for (java.lang.String _iter6313 : struct.keys) { - oprot.writeString(_iter6341); + oprot.writeString(_iter6313); } oprot.writeListEnd(); } @@ -582113,11 +580906,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -582139,17 +580927,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde } - private static class getKeysCclTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimeOrderPage_argsTupleScheme getScheme() { - return new getKeysCclTimeOrderPage_argsTupleScheme(); + public getKeysCclTimeOrder_argsTupleScheme getScheme() { + return new getKeysCclTimeOrder_argsTupleScheme(); } } - private static class getKeysCclTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -582164,25 +580952,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6342 : struct.keys) + for (java.lang.String _iter6314 : struct.keys) { - oprot.writeString(_iter6342); + oprot.writeString(_iter6314); } } } @@ -582195,9 +580980,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -582210,18 +580992,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6343 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6343.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6344; - for (int _i6345 = 0; _i6345 < _list6343.size; ++_i6345) + org.apache.thrift.protocol.TList _list6315 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6315.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6316; + for (int _i6317 = 0; _i6317 < _list6315.size; ++_i6317) { - _elem6344 = iprot.readString(); - struct.keys.add(_elem6344); + _elem6316 = iprot.readString(); + struct.keys.add(_elem6316); } } struct.setKeysIsSet(true); @@ -582240,21 +581022,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderP struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -582266,8 +581043,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimeOrderPage_result"); + public static class getKeysCclTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -582275,8 +581052,8 @@ public static class getKeysCclTimeOrderPage_result implements org.apache.thrift. private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -582377,13 +581154,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimeOrder_result.class, metaDataMap); } - public getKeysCclTimeOrderPage_result() { + public getKeysCclTimeOrder_result() { } - public getKeysCclTimeOrderPage_result( + public getKeysCclTimeOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -582401,7 +581178,7 @@ public getKeysCclTimeOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysCclTimeOrderPage_result(getKeysCclTimeOrderPage_result other) { + public getKeysCclTimeOrder_result(getKeysCclTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -582443,8 +581220,8 @@ public getKeysCclTimeOrderPage_result(getKeysCclTimeOrderPage_result other) { } @Override - public getKeysCclTimeOrderPage_result deepCopy() { - return new getKeysCclTimeOrderPage_result(this); + public getKeysCclTimeOrder_result deepCopy() { + return new getKeysCclTimeOrder_result(this); } @Override @@ -582472,7 +581249,7 @@ public java.util.Map> success) { + public getKeysCclTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -582497,7 +581274,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -582522,7 +581299,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -582547,7 +581324,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -582572,7 +581349,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -582685,12 +581462,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimeOrderPage_result) - return this.equals((getKeysCclTimeOrderPage_result)that); + if (that instanceof getKeysCclTimeOrder_result) + return this.equals((getKeysCclTimeOrder_result)that); return false; } - public boolean equals(getKeysCclTimeOrderPage_result that) { + public boolean equals(getKeysCclTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -582772,7 +581549,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimeOrderPage_result other) { + public int compareTo(getKeysCclTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -582849,7 +581626,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -582916,17 +581693,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimeOrderPage_resultStandardScheme getScheme() { - return new getKeysCclTimeOrderPage_resultStandardScheme(); + public getKeysCclTimeOrder_resultStandardScheme getScheme() { + return new getKeysCclTimeOrder_resultStandardScheme(); } } - private static class getKeysCclTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -582939,28 +581716,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6346 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6346.size); - long _key6347; - @org.apache.thrift.annotation.Nullable java.util.Map _val6348; - for (int _i6349 = 0; _i6349 < _map6346.size; ++_i6349) + org.apache.thrift.protocol.TMap _map6318 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6318.size); + long _key6319; + @org.apache.thrift.annotation.Nullable java.util.Map _val6320; + for (int _i6321 = 0; _i6321 < _map6318.size; ++_i6321) { - _key6347 = iprot.readI64(); + _key6319 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6350 = iprot.readMapBegin(); - _val6348 = new java.util.LinkedHashMap(2*_map6350.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6351; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6352; - for (int _i6353 = 0; _i6353 < _map6350.size; ++_i6353) + org.apache.thrift.protocol.TMap _map6322 = iprot.readMapBegin(); + _val6320 = new java.util.LinkedHashMap(2*_map6322.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6323; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6324; + for (int _i6325 = 0; _i6325 < _map6322.size; ++_i6325) { - _key6351 = iprot.readString(); - _val6352 = new com.cinchapi.concourse.thrift.TObject(); - _val6352.read(iprot); - _val6348.put(_key6351, _val6352); + _key6323 = iprot.readString(); + _val6324 = new com.cinchapi.concourse.thrift.TObject(); + _val6324.read(iprot); + _val6320.put(_key6323, _val6324); } iprot.readMapEnd(); } - struct.success.put(_key6347, _val6348); + struct.success.put(_key6319, _val6320); } iprot.readMapEnd(); } @@ -583017,7 +581794,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrder } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -583025,15 +581802,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6354 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6326 : struct.success.entrySet()) { - oprot.writeI64(_iter6354.getKey()); + oprot.writeI64(_iter6326.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6354.getValue().size())); - for (java.util.Map.Entry _iter6355 : _iter6354.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6326.getValue().size())); + for (java.util.Map.Entry _iter6327 : _iter6326.getValue().entrySet()) { - oprot.writeString(_iter6355.getKey()); - _iter6355.getValue().write(oprot); + oprot.writeString(_iter6327.getKey()); + _iter6327.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -583068,17 +581845,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrde } - private static class getKeysCclTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimeOrderPage_resultTupleScheme getScheme() { - return new getKeysCclTimeOrderPage_resultTupleScheme(); + public getKeysCclTimeOrder_resultTupleScheme getScheme() { + return new getKeysCclTimeOrder_resultTupleScheme(); } } - private static class getKeysCclTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -583100,15 +581877,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6356 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6328 : struct.success.entrySet()) { - oprot.writeI64(_iter6356.getKey()); + oprot.writeI64(_iter6328.getKey()); { - oprot.writeI32(_iter6356.getValue().size()); - for (java.util.Map.Entry _iter6357 : _iter6356.getValue().entrySet()) + oprot.writeI32(_iter6328.getValue().size()); + for (java.util.Map.Entry _iter6329 : _iter6328.getValue().entrySet()) { - oprot.writeString(_iter6357.getKey()); - _iter6357.getValue().write(oprot); + oprot.writeString(_iter6329.getKey()); + _iter6329.getValue().write(oprot); } } } @@ -583129,32 +581906,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6358 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6358.size); - long _key6359; - @org.apache.thrift.annotation.Nullable java.util.Map _val6360; - for (int _i6361 = 0; _i6361 < _map6358.size; ++_i6361) + org.apache.thrift.protocol.TMap _map6330 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6330.size); + long _key6331; + @org.apache.thrift.annotation.Nullable java.util.Map _val6332; + for (int _i6333 = 0; _i6333 < _map6330.size; ++_i6333) { - _key6359 = iprot.readI64(); + _key6331 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6362 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6360 = new java.util.LinkedHashMap(2*_map6362.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6363; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6364; - for (int _i6365 = 0; _i6365 < _map6362.size; ++_i6365) + org.apache.thrift.protocol.TMap _map6334 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6332 = new java.util.LinkedHashMap(2*_map6334.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6335; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6336; + for (int _i6337 = 0; _i6337 < _map6334.size; ++_i6337) { - _key6363 = iprot.readString(); - _val6364 = new com.cinchapi.concourse.thrift.TObject(); - _val6364.read(iprot); - _val6360.put(_key6363, _val6364); + _key6335 = iprot.readString(); + _val6336 = new com.cinchapi.concourse.thrift.TObject(); + _val6336.read(iprot); + _val6332.put(_key6335, _val6336); } } - struct.success.put(_key6359, _val6360); + struct.success.put(_key6331, _val6332); } } struct.setSuccessIsSet(true); @@ -583187,22 +581964,26 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestr_args"); + public static class getKeysCclTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -583212,9 +581993,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -583236,11 +582019,15 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -583285,6 +582072,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -583294,7 +582083,11 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -583302,16 +582095,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimeOrderPage_args.class, metaDataMap); } - public getKeysCclTimestr_args() { + public getKeysCclTimeOrderPage_args() { } - public getKeysCclTimestr_args( + public getKeysCclTimeOrderPage_args( java.util.List keys, java.lang.String ccl, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -583320,6 +582115,9 @@ public getKeysCclTimestr_args( this.keys = keys; this.ccl = ccl; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -583328,7 +582126,8 @@ public getKeysCclTimestr_args( /** * Performs a deep copy on other. */ - public getKeysCclTimestr_args(getKeysCclTimestr_args other) { + public getKeysCclTimeOrderPage_args(getKeysCclTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -583336,8 +582135,12 @@ public getKeysCclTimestr_args(getKeysCclTimestr_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -583351,15 +582154,18 @@ public getKeysCclTimestr_args(getKeysCclTimestr_args other) { } @Override - public getKeysCclTimestr_args deepCopy() { - return new getKeysCclTimestr_args(this); + public getKeysCclTimeOrderPage_args deepCopy() { + return new getKeysCclTimeOrderPage_args(this); } @Override public void clear() { this.keys = null; this.ccl = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -583386,7 +582192,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclTimeOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -583411,7 +582217,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclTimestr_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclTimeOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -583431,28 +582237,76 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public getKeysCclTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysCclTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeysCclTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysCclTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -583461,7 +582315,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -583486,7 +582340,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -583511,7 +582365,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -583554,7 +582408,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -583598,6 +582468,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -583625,6 +582501,10 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -583637,12 +582517,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimestr_args) - return this.equals((getKeysCclTimestr_args)that); + if (that instanceof getKeysCclTimeOrderPage_args) + return this.equals((getKeysCclTimeOrderPage_args)that); return false; } - public boolean equals(getKeysCclTimestr_args that) { + public boolean equals(getKeysCclTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -583666,12 +582546,30 @@ public boolean equals(getKeysCclTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -583717,9 +582615,15 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -583737,7 +582641,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimestr_args other) { + public int compareTo(getKeysCclTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -583774,6 +582678,26 @@ public int compareTo(getKeysCclTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -583825,7 +582749,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimeOrderPage_args("); boolean first = true; sb.append("keys:"); @@ -583845,10 +582769,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -583882,6 +582818,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -583900,23 +582842,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getKeysCclTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestr_argsStandardScheme getScheme() { - return new getKeysCclTimestr_argsStandardScheme(); + public getKeysCclTimeOrderPage_argsStandardScheme getScheme() { + return new getKeysCclTimeOrderPage_argsStandardScheme(); } } - private static class getKeysCclTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -583929,13 +582873,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_a case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6366 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6366.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6367; - for (int _i6368 = 0; _i6368 < _list6366.size; ++_i6368) + org.apache.thrift.protocol.TList _list6338 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6338.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6339; + for (int _i6340 = 0; _i6340 < _list6338.size; ++_i6340) { - _elem6367 = iprot.readString(); - struct.keys.add(_elem6367); + _elem6339 = iprot.readString(); + struct.keys.add(_elem6339); } iprot.readListEnd(); } @@ -583953,14 +582897,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_a } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -583969,7 +582931,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -583978,7 +582940,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -583998,7 +582960,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -584006,9 +582968,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_ oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6369 : struct.keys) + for (java.lang.String _iter6341 : struct.keys) { - oprot.writeString(_iter6369); + oprot.writeString(_iter6341); } oprot.writeListEnd(); } @@ -584019,9 +582981,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_ oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -584045,17 +583015,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_ } - private static class getKeysCclTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestr_argsTupleScheme getScheme() { - return new getKeysCclTimestr_argsTupleScheme(); + public getKeysCclTimeOrderPage_argsTupleScheme getScheme() { + return new getKeysCclTimeOrderPage_argsTupleScheme(); } } - private static class getKeysCclTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -584067,22 +583037,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_a if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetTransaction()) { + optionals.set(6); + } + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6370 : struct.keys) + for (java.lang.String _iter6342 : struct.keys) { - oprot.writeString(_iter6370); + oprot.writeString(_iter6342); } } } @@ -584090,7 +583066,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_a oprot.writeString(struct.ccl); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -584104,18 +583086,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6371 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6371.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6372; - for (int _i6373 = 0; _i6373 < _list6371.size; ++_i6373) + org.apache.thrift.protocol.TList _list6343 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6343.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6344; + for (int _i6345 = 0; _i6345 < _list6343.size; ++_i6345) { - _elem6372 = iprot.readString(); - struct.keys.add(_elem6372); + _elem6344 = iprot.readString(); + struct.keys.add(_elem6344); } } struct.setKeysIsSet(true); @@ -584125,20 +583107,30 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_ar struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -584150,8 +583142,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestr_result"); + public static class getKeysCclTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -584159,8 +583151,8 @@ public static class getKeysCclTimestr_result implements org.apache.thrift.TBase< private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -584261,13 +583253,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimeOrderPage_result.class, metaDataMap); } - public getKeysCclTimestr_result() { + public getKeysCclTimeOrderPage_result() { } - public getKeysCclTimestr_result( + public getKeysCclTimeOrderPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -584285,7 +583277,7 @@ public getKeysCclTimestr_result( /** * Performs a deep copy on other. */ - public getKeysCclTimestr_result(getKeysCclTimestr_result other) { + public getKeysCclTimeOrderPage_result(getKeysCclTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -584327,8 +583319,8 @@ public getKeysCclTimestr_result(getKeysCclTimestr_result other) { } @Override - public getKeysCclTimestr_result deepCopy() { - return new getKeysCclTimestr_result(this); + public getKeysCclTimeOrderPage_result deepCopy() { + return new getKeysCclTimeOrderPage_result(this); } @Override @@ -584356,7 +583348,7 @@ public java.util.Map> success) { + public getKeysCclTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -584381,7 +583373,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -584406,7 +583398,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -584431,7 +583423,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -584456,7 +583448,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -584569,12 +583561,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimestr_result) - return this.equals((getKeysCclTimestr_result)that); + if (that instanceof getKeysCclTimeOrderPage_result) + return this.equals((getKeysCclTimeOrderPage_result)that); return false; } - public boolean equals(getKeysCclTimestr_result that) { + public boolean equals(getKeysCclTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -584656,7 +583648,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimestr_result other) { + public int compareTo(getKeysCclTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -584733,7 +583725,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -584800,17 +583792,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestr_resultStandardScheme getScheme() { - return new getKeysCclTimestr_resultStandardScheme(); + public getKeysCclTimeOrderPage_resultStandardScheme getScheme() { + return new getKeysCclTimeOrderPage_resultStandardScheme(); } } - private static class getKeysCclTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -584823,28 +583815,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6374 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6374.size); - long _key6375; - @org.apache.thrift.annotation.Nullable java.util.Map _val6376; - for (int _i6377 = 0; _i6377 < _map6374.size; ++_i6377) + org.apache.thrift.protocol.TMap _map6346 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6346.size); + long _key6347; + @org.apache.thrift.annotation.Nullable java.util.Map _val6348; + for (int _i6349 = 0; _i6349 < _map6346.size; ++_i6349) { - _key6375 = iprot.readI64(); + _key6347 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6378 = iprot.readMapBegin(); - _val6376 = new java.util.LinkedHashMap(2*_map6378.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6379; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6380; - for (int _i6381 = 0; _i6381 < _map6378.size; ++_i6381) + org.apache.thrift.protocol.TMap _map6350 = iprot.readMapBegin(); + _val6348 = new java.util.LinkedHashMap(2*_map6350.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6351; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6352; + for (int _i6353 = 0; _i6353 < _map6350.size; ++_i6353) { - _key6379 = iprot.readString(); - _val6380 = new com.cinchapi.concourse.thrift.TObject(); - _val6380.read(iprot); - _val6376.put(_key6379, _val6380); + _key6351 = iprot.readString(); + _val6352 = new com.cinchapi.concourse.thrift.TObject(); + _val6352.read(iprot); + _val6348.put(_key6351, _val6352); } iprot.readMapEnd(); } - struct.success.put(_key6375, _val6376); + struct.success.put(_key6347, _val6348); } iprot.readMapEnd(); } @@ -584901,7 +583893,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -584909,15 +583901,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6382 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6354 : struct.success.entrySet()) { - oprot.writeI64(_iter6382.getKey()); + oprot.writeI64(_iter6354.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6382.getValue().size())); - for (java.util.Map.Entry _iter6383 : _iter6382.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6354.getValue().size())); + for (java.util.Map.Entry _iter6355 : _iter6354.getValue().entrySet()) { - oprot.writeString(_iter6383.getKey()); - _iter6383.getValue().write(oprot); + oprot.writeString(_iter6355.getKey()); + _iter6355.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -584952,17 +583944,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_ } - private static class getKeysCclTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestr_resultTupleScheme getScheme() { - return new getKeysCclTimestr_resultTupleScheme(); + public getKeysCclTimeOrderPage_resultTupleScheme getScheme() { + return new getKeysCclTimeOrderPage_resultTupleScheme(); } } - private static class getKeysCclTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -584984,15 +583976,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6384 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6356 : struct.success.entrySet()) { - oprot.writeI64(_iter6384.getKey()); + oprot.writeI64(_iter6356.getKey()); { - oprot.writeI32(_iter6384.getValue().size()); - for (java.util.Map.Entry _iter6385 : _iter6384.getValue().entrySet()) + oprot.writeI32(_iter6356.getValue().size()); + for (java.util.Map.Entry _iter6357 : _iter6356.getValue().entrySet()) { - oprot.writeString(_iter6385.getKey()); - _iter6385.getValue().write(oprot); + oprot.writeString(_iter6357.getKey()); + _iter6357.getValue().write(oprot); } } } @@ -585013,32 +584005,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6386 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6386.size); - long _key6387; - @org.apache.thrift.annotation.Nullable java.util.Map _val6388; - for (int _i6389 = 0; _i6389 < _map6386.size; ++_i6389) + org.apache.thrift.protocol.TMap _map6358 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6358.size); + long _key6359; + @org.apache.thrift.annotation.Nullable java.util.Map _val6360; + for (int _i6361 = 0; _i6361 < _map6358.size; ++_i6361) { - _key6387 = iprot.readI64(); + _key6359 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6390 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6388 = new java.util.LinkedHashMap(2*_map6390.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6391; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6392; - for (int _i6393 = 0; _i6393 < _map6390.size; ++_i6393) + org.apache.thrift.protocol.TMap _map6362 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6360 = new java.util.LinkedHashMap(2*_map6362.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6363; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6364; + for (int _i6365 = 0; _i6365 < _map6362.size; ++_i6365) { - _key6391 = iprot.readString(); - _val6392 = new com.cinchapi.concourse.thrift.TObject(); - _val6392.read(iprot); - _val6388.put(_key6391, _val6392); + _key6363 = iprot.readString(); + _val6364 = new com.cinchapi.concourse.thrift.TObject(); + _val6364.read(iprot); + _val6360.put(_key6363, _val6364); } } - struct.success.put(_key6387, _val6388); + struct.success.put(_key6359, _val6360); } } struct.setSuccessIsSet(true); @@ -585071,24 +584063,22 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrPage_args"); + public static class getKeysCclTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -585098,10 +584088,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -585123,13 +584112,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -585184,8 +584171,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -585193,17 +584178,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestr_args.class, metaDataMap); } - public getKeysCclTimestrPage_args() { + public getKeysCclTimestr_args() { } - public getKeysCclTimestrPage_args( + public getKeysCclTimestr_args( java.util.List keys, java.lang.String ccl, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -585212,7 +584196,6 @@ public getKeysCclTimestrPage_args( this.keys = keys; this.ccl = ccl; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -585221,7 +584204,7 @@ public getKeysCclTimestrPage_args( /** * Performs a deep copy on other. */ - public getKeysCclTimestrPage_args(getKeysCclTimestrPage_args other) { + public getKeysCclTimestr_args(getKeysCclTimestr_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -585232,9 +584215,6 @@ public getKeysCclTimestrPage_args(getKeysCclTimestrPage_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -585247,8 +584227,8 @@ public getKeysCclTimestrPage_args(getKeysCclTimestrPage_args other) { } @Override - public getKeysCclTimestrPage_args deepCopy() { - return new getKeysCclTimestrPage_args(this); + public getKeysCclTimestr_args deepCopy() { + return new getKeysCclTimestr_args(this); } @Override @@ -585256,7 +584236,6 @@ public void clear() { this.keys = null; this.ccl = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -585283,7 +584262,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -585308,7 +584287,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclTimestrPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclTimestr_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -585333,7 +584312,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysCclTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysCclTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -585353,37 +584332,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCclTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -585408,7 +584362,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -585433,7 +584387,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -585480,14 +584434,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -585528,9 +584474,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -585558,8 +584501,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -585572,12 +584513,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimestrPage_args) - return this.equals((getKeysCclTimestrPage_args)that); + if (that instanceof getKeysCclTimestr_args) + return this.equals((getKeysCclTimestr_args)that); return false; } - public boolean equals(getKeysCclTimestrPage_args that) { + public boolean equals(getKeysCclTimestr_args that) { if (that == null) return false; if (this == that) @@ -585610,15 +584551,6 @@ public boolean equals(getKeysCclTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -585665,10 +584597,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -585685,7 +584613,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimestrPage_args other) { + public int compareTo(getKeysCclTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -585722,16 +584650,6 @@ public int compareTo(getKeysCclTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -585783,7 +584701,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestr_args("); boolean first = true; sb.append("keys:"); @@ -585810,14 +584728,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -585848,9 +584758,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -585875,17 +584782,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrPage_argsStandardScheme getScheme() { - return new getKeysCclTimestrPage_argsStandardScheme(); + public getKeysCclTimestr_argsStandardScheme getScheme() { + return new getKeysCclTimestr_argsStandardScheme(); } } - private static class getKeysCclTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -585898,13 +584805,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPa case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6394 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6394.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6395; - for (int _i6396 = 0; _i6396 < _list6394.size; ++_i6396) + org.apache.thrift.protocol.TList _list6366 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6366.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6367; + for (int _i6368 = 0; _i6368 < _list6366.size; ++_i6368) { - _elem6395 = iprot.readString(); - struct.keys.add(_elem6395); + _elem6367 = iprot.readString(); + struct.keys.add(_elem6367); } iprot.readListEnd(); } @@ -585929,16 +584836,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -585947,7 +584845,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -585956,7 +584854,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -585976,7 +584874,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -585984,9 +584882,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrP oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6397 : struct.keys) + for (java.lang.String _iter6369 : struct.keys) { - oprot.writeString(_iter6397); + oprot.writeString(_iter6369); } oprot.writeListEnd(); } @@ -586002,11 +584900,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrP oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -586028,17 +584921,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrP } - private static class getKeysCclTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrPage_argsTupleScheme getScheme() { - return new getKeysCclTimestrPage_argsTupleScheme(); + public getKeysCclTimestr_argsTupleScheme getScheme() { + return new getKeysCclTimestr_argsTupleScheme(); } } - private static class getKeysCclTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -586050,25 +584943,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPa if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6398 : struct.keys) + for (java.lang.String _iter6370 : struct.keys) { - oprot.writeString(_iter6398); + oprot.writeString(_iter6370); } } } @@ -586078,9 +584968,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPa if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -586093,18 +584980,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6399 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6399.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6400; - for (int _i6401 = 0; _i6401 < _list6399.size; ++_i6401) + org.apache.thrift.protocol.TList _list6371 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6371.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6372; + for (int _i6373 = 0; _i6373 < _list6371.size; ++_i6373) { - _elem6400 = iprot.readString(); - struct.keys.add(_elem6400); + _elem6372 = iprot.readString(); + struct.keys.add(_elem6372); } } struct.setKeysIsSet(true); @@ -586118,21 +585005,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPag struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -586144,8 +585026,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrPage_result"); + public static class getKeysCclTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -586153,8 +585035,8 @@ public static class getKeysCclTimestrPage_result implements org.apache.thrift.TB private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -586255,13 +585137,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestr_result.class, metaDataMap); } - public getKeysCclTimestrPage_result() { + public getKeysCclTimestr_result() { } - public getKeysCclTimestrPage_result( + public getKeysCclTimestr_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -586279,7 +585161,7 @@ public getKeysCclTimestrPage_result( /** * Performs a deep copy on other. */ - public getKeysCclTimestrPage_result(getKeysCclTimestrPage_result other) { + public getKeysCclTimestr_result(getKeysCclTimestr_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -586321,8 +585203,8 @@ public getKeysCclTimestrPage_result(getKeysCclTimestrPage_result other) { } @Override - public getKeysCclTimestrPage_result deepCopy() { - return new getKeysCclTimestrPage_result(this); + public getKeysCclTimestr_result deepCopy() { + return new getKeysCclTimestr_result(this); } @Override @@ -586350,7 +585232,7 @@ public java.util.Map> success) { + public getKeysCclTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -586375,7 +585257,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -586400,7 +585282,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -586425,7 +585307,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -586450,7 +585332,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -586563,12 +585445,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimestrPage_result) - return this.equals((getKeysCclTimestrPage_result)that); + if (that instanceof getKeysCclTimestr_result) + return this.equals((getKeysCclTimestr_result)that); return false; } - public boolean equals(getKeysCclTimestrPage_result that) { + public boolean equals(getKeysCclTimestr_result that) { if (that == null) return false; if (this == that) @@ -586650,7 +585532,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimestrPage_result other) { + public int compareTo(getKeysCclTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -586727,7 +585609,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestr_result("); boolean first = true; sb.append("success:"); @@ -586794,17 +585676,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrPage_resultStandardScheme getScheme() { - return new getKeysCclTimestrPage_resultStandardScheme(); + public getKeysCclTimestr_resultStandardScheme getScheme() { + return new getKeysCclTimestr_resultStandardScheme(); } } - private static class getKeysCclTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -586817,28 +585699,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPa case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6402 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6402.size); - long _key6403; - @org.apache.thrift.annotation.Nullable java.util.Map _val6404; - for (int _i6405 = 0; _i6405 < _map6402.size; ++_i6405) + org.apache.thrift.protocol.TMap _map6374 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6374.size); + long _key6375; + @org.apache.thrift.annotation.Nullable java.util.Map _val6376; + for (int _i6377 = 0; _i6377 < _map6374.size; ++_i6377) { - _key6403 = iprot.readI64(); + _key6375 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6406 = iprot.readMapBegin(); - _val6404 = new java.util.LinkedHashMap(2*_map6406.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6407; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6408; - for (int _i6409 = 0; _i6409 < _map6406.size; ++_i6409) + org.apache.thrift.protocol.TMap _map6378 = iprot.readMapBegin(); + _val6376 = new java.util.LinkedHashMap(2*_map6378.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6379; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6380; + for (int _i6381 = 0; _i6381 < _map6378.size; ++_i6381) { - _key6407 = iprot.readString(); - _val6408 = new com.cinchapi.concourse.thrift.TObject(); - _val6408.read(iprot); - _val6404.put(_key6407, _val6408); + _key6379 = iprot.readString(); + _val6380 = new com.cinchapi.concourse.thrift.TObject(); + _val6380.read(iprot); + _val6376.put(_key6379, _val6380); } iprot.readMapEnd(); } - struct.success.put(_key6403, _val6404); + struct.success.put(_key6375, _val6376); } iprot.readMapEnd(); } @@ -586895,7 +585777,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -586903,15 +585785,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrP oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6410 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6382 : struct.success.entrySet()) { - oprot.writeI64(_iter6410.getKey()); + oprot.writeI64(_iter6382.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6410.getValue().size())); - for (java.util.Map.Entry _iter6411 : _iter6410.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6382.getValue().size())); + for (java.util.Map.Entry _iter6383 : _iter6382.getValue().entrySet()) { - oprot.writeString(_iter6411.getKey()); - _iter6411.getValue().write(oprot); + oprot.writeString(_iter6383.getKey()); + _iter6383.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -586946,17 +585828,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrP } - private static class getKeysCclTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrPage_resultTupleScheme getScheme() { - return new getKeysCclTimestrPage_resultTupleScheme(); + public getKeysCclTimestr_resultTupleScheme getScheme() { + return new getKeysCclTimestr_resultTupleScheme(); } } - private static class getKeysCclTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -586978,15 +585860,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPa if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6412 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6384 : struct.success.entrySet()) { - oprot.writeI64(_iter6412.getKey()); + oprot.writeI64(_iter6384.getKey()); { - oprot.writeI32(_iter6412.getValue().size()); - for (java.util.Map.Entry _iter6413 : _iter6412.getValue().entrySet()) + oprot.writeI32(_iter6384.getValue().size()); + for (java.util.Map.Entry _iter6385 : _iter6384.getValue().entrySet()) { - oprot.writeString(_iter6413.getKey()); - _iter6413.getValue().write(oprot); + oprot.writeString(_iter6385.getKey()); + _iter6385.getValue().write(oprot); } } } @@ -587007,32 +585889,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6414 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6414.size); - long _key6415; - @org.apache.thrift.annotation.Nullable java.util.Map _val6416; - for (int _i6417 = 0; _i6417 < _map6414.size; ++_i6417) + org.apache.thrift.protocol.TMap _map6386 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6386.size); + long _key6387; + @org.apache.thrift.annotation.Nullable java.util.Map _val6388; + for (int _i6389 = 0; _i6389 < _map6386.size; ++_i6389) { - _key6415 = iprot.readI64(); + _key6387 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6418 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6416 = new java.util.LinkedHashMap(2*_map6418.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6419; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6420; - for (int _i6421 = 0; _i6421 < _map6418.size; ++_i6421) + org.apache.thrift.protocol.TMap _map6390 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6388 = new java.util.LinkedHashMap(2*_map6390.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6391; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6392; + for (int _i6393 = 0; _i6393 < _map6390.size; ++_i6393) { - _key6419 = iprot.readString(); - _val6420 = new com.cinchapi.concourse.thrift.TObject(); - _val6420.read(iprot); - _val6416.put(_key6419, _val6420); + _key6391 = iprot.readString(); + _val6392 = new com.cinchapi.concourse.thrift.TObject(); + _val6392.read(iprot); + _val6388.put(_key6391, _val6392); } } - struct.success.put(_key6415, _val6416); + struct.success.put(_key6387, _val6388); } } struct.setSuccessIsSet(true); @@ -587065,24 +585947,24 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrOrder_args"); + public static class getKeysCclTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -587092,7 +585974,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -587117,8 +585999,8 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 3: // TIMESTAMP return TIMESTAMP; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -587178,8 +586060,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -587187,17 +586069,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrPage_args.class, metaDataMap); } - public getKeysCclTimestrOrder_args() { + public getKeysCclTimestrPage_args() { } - public getKeysCclTimestrOrder_args( + public getKeysCclTimestrPage_args( java.util.List keys, java.lang.String ccl, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -587206,7 +586088,7 @@ public getKeysCclTimestrOrder_args( this.keys = keys; this.ccl = ccl; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -587215,7 +586097,7 @@ public getKeysCclTimestrOrder_args( /** * Performs a deep copy on other. */ - public getKeysCclTimestrOrder_args(getKeysCclTimestrOrder_args other) { + public getKeysCclTimestrPage_args(getKeysCclTimestrPage_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -587226,8 +586108,8 @@ public getKeysCclTimestrOrder_args(getKeysCclTimestrOrder_args other) { if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -587241,8 +586123,8 @@ public getKeysCclTimestrOrder_args(getKeysCclTimestrOrder_args other) { } @Override - public getKeysCclTimestrOrder_args deepCopy() { - return new getKeysCclTimestrOrder_args(this); + public getKeysCclTimestrPage_args deepCopy() { + return new getKeysCclTimestrPage_args(this); } @Override @@ -587250,7 +586132,7 @@ public void clear() { this.keys = null; this.ccl = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -587277,7 +586159,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclTimestrPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -587302,7 +586184,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclTimestrOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclTimestrPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -587327,7 +586209,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysCclTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysCclTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -587348,27 +586230,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public getKeysCclTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public getKeysCclTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -587377,7 +586259,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -587402,7 +586284,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -587427,7 +586309,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -587474,11 +586356,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -587522,8 +586404,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -587552,8 +586434,8 @@ public boolean isSet(_Fields field) { return isSetCcl(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -587566,12 +586448,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimestrOrder_args) - return this.equals((getKeysCclTimestrOrder_args)that); + if (that instanceof getKeysCclTimestrPage_args) + return this.equals((getKeysCclTimestrPage_args)that); return false; } - public boolean equals(getKeysCclTimestrOrder_args that) { + public boolean equals(getKeysCclTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -587604,12 +586486,12 @@ public boolean equals(getKeysCclTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -587659,9 +586541,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -587679,7 +586561,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimestrOrder_args other) { + public int compareTo(getKeysCclTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -587716,12 +586598,12 @@ public int compareTo(getKeysCclTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -587777,7 +586659,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrPage_args("); boolean first = true; sb.append("keys:"); @@ -587804,11 +586686,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -587842,8 +586724,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -587869,17 +586751,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrOrder_argsStandardScheme getScheme() { - return new getKeysCclTimestrOrder_argsStandardScheme(); + public getKeysCclTimestrPage_argsStandardScheme getScheme() { + return new getKeysCclTimestrPage_argsStandardScheme(); } } - private static class getKeysCclTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -587892,13 +586774,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6422 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6422.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6423; - for (int _i6424 = 0; _i6424 < _list6422.size; ++_i6424) + org.apache.thrift.protocol.TList _list6394 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6394.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6395; + for (int _i6396 = 0; _i6396 < _list6394.size; ++_i6396) { - _elem6423 = iprot.readString(); - struct.keys.add(_elem6423); + _elem6395 = iprot.readString(); + struct.keys.add(_elem6395); } iprot.readListEnd(); } @@ -587923,11 +586805,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -587970,7 +586852,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -587978,9 +586860,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6425 : struct.keys) + for (java.lang.String _iter6397 : struct.keys) { - oprot.writeString(_iter6425); + oprot.writeString(_iter6397); } oprot.writeListEnd(); } @@ -587996,9 +586878,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -588022,17 +586904,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO } - private static class getKeysCclTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrOrder_argsTupleScheme getScheme() { - return new getKeysCclTimestrOrder_argsTupleScheme(); + public getKeysCclTimestrPage_argsTupleScheme getScheme() { + return new getKeysCclTimestrPage_argsTupleScheme(); } } - private static class getKeysCclTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -588044,7 +586926,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -588060,9 +586942,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6426 : struct.keys) + for (java.lang.String _iter6398 : struct.keys) { - oprot.writeString(_iter6426); + oprot.writeString(_iter6398); } } } @@ -588072,8 +586954,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -588087,18 +586969,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6427 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6427.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6428; - for (int _i6429 = 0; _i6429 < _list6427.size; ++_i6429) + org.apache.thrift.protocol.TList _list6399 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6399.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6400; + for (int _i6401 = 0; _i6401 < _list6399.size; ++_i6401) { - _elem6428 = iprot.readString(); - struct.keys.add(_elem6428); + _elem6400 = iprot.readString(); + struct.keys.add(_elem6400); } } struct.setKeysIsSet(true); @@ -588112,9 +586994,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrd struct.setTimestampIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -588138,8 +587020,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrOrder_result"); + public static class getKeysCclTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -588147,8 +587029,8 @@ public static class getKeysCclTimestrOrder_result implements org.apache.thrift.T private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -588249,13 +587131,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrPage_result.class, metaDataMap); } - public getKeysCclTimestrOrder_result() { + public getKeysCclTimestrPage_result() { } - public getKeysCclTimestrOrder_result( + public getKeysCclTimestrPage_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -588273,7 +587155,7 @@ public getKeysCclTimestrOrder_result( /** * Performs a deep copy on other. */ - public getKeysCclTimestrOrder_result(getKeysCclTimestrOrder_result other) { + public getKeysCclTimestrPage_result(getKeysCclTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -588315,8 +587197,8 @@ public getKeysCclTimestrOrder_result(getKeysCclTimestrOrder_result other) { } @Override - public getKeysCclTimestrOrder_result deepCopy() { - return new getKeysCclTimestrOrder_result(this); + public getKeysCclTimestrPage_result deepCopy() { + return new getKeysCclTimestrPage_result(this); } @Override @@ -588344,7 +587226,7 @@ public java.util.Map> success) { + public getKeysCclTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -588369,7 +587251,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -588394,7 +587276,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -588419,7 +587301,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -588444,7 +587326,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -588557,12 +587439,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimestrOrder_result) - return this.equals((getKeysCclTimestrOrder_result)that); + if (that instanceof getKeysCclTimestrPage_result) + return this.equals((getKeysCclTimestrPage_result)that); return false; } - public boolean equals(getKeysCclTimestrOrder_result that) { + public boolean equals(getKeysCclTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -588644,7 +587526,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimestrOrder_result other) { + public int compareTo(getKeysCclTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -588721,7 +587603,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -588788,17 +587670,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrOrder_resultStandardScheme getScheme() { - return new getKeysCclTimestrOrder_resultStandardScheme(); + public getKeysCclTimestrPage_resultStandardScheme getScheme() { + return new getKeysCclTimestrPage_resultStandardScheme(); } } - private static class getKeysCclTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -588811,28 +587693,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6430 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6430.size); - long _key6431; - @org.apache.thrift.annotation.Nullable java.util.Map _val6432; - for (int _i6433 = 0; _i6433 < _map6430.size; ++_i6433) + org.apache.thrift.protocol.TMap _map6402 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6402.size); + long _key6403; + @org.apache.thrift.annotation.Nullable java.util.Map _val6404; + for (int _i6405 = 0; _i6405 < _map6402.size; ++_i6405) { - _key6431 = iprot.readI64(); + _key6403 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6434 = iprot.readMapBegin(); - _val6432 = new java.util.LinkedHashMap(2*_map6434.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6435; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6436; - for (int _i6437 = 0; _i6437 < _map6434.size; ++_i6437) + org.apache.thrift.protocol.TMap _map6406 = iprot.readMapBegin(); + _val6404 = new java.util.LinkedHashMap(2*_map6406.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6407; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6408; + for (int _i6409 = 0; _i6409 < _map6406.size; ++_i6409) { - _key6435 = iprot.readString(); - _val6436 = new com.cinchapi.concourse.thrift.TObject(); - _val6436.read(iprot); - _val6432.put(_key6435, _val6436); + _key6407 = iprot.readString(); + _val6408 = new com.cinchapi.concourse.thrift.TObject(); + _val6408.read(iprot); + _val6404.put(_key6407, _val6408); } iprot.readMapEnd(); } - struct.success.put(_key6431, _val6432); + struct.success.put(_key6403, _val6404); } iprot.readMapEnd(); } @@ -588889,7 +587771,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -588897,15 +587779,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6438 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6410 : struct.success.entrySet()) { - oprot.writeI64(_iter6438.getKey()); + oprot.writeI64(_iter6410.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6438.getValue().size())); - for (java.util.Map.Entry _iter6439 : _iter6438.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6410.getValue().size())); + for (java.util.Map.Entry _iter6411 : _iter6410.getValue().entrySet()) { - oprot.writeString(_iter6439.getKey()); - _iter6439.getValue().write(oprot); + oprot.writeString(_iter6411.getKey()); + _iter6411.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -588940,17 +587822,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO } - private static class getKeysCclTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrOrder_resultTupleScheme getScheme() { - return new getKeysCclTimestrOrder_resultTupleScheme(); + public getKeysCclTimestrPage_resultTupleScheme getScheme() { + return new getKeysCclTimestrPage_resultTupleScheme(); } } - private static class getKeysCclTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -588972,15 +587854,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6440 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6412 : struct.success.entrySet()) { - oprot.writeI64(_iter6440.getKey()); + oprot.writeI64(_iter6412.getKey()); { - oprot.writeI32(_iter6440.getValue().size()); - for (java.util.Map.Entry _iter6441 : _iter6440.getValue().entrySet()) + oprot.writeI32(_iter6412.getValue().size()); + for (java.util.Map.Entry _iter6413 : _iter6412.getValue().entrySet()) { - oprot.writeString(_iter6441.getKey()); - _iter6441.getValue().write(oprot); + oprot.writeString(_iter6413.getKey()); + _iter6413.getValue().write(oprot); } } } @@ -589001,32 +587883,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6442 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6442.size); - long _key6443; - @org.apache.thrift.annotation.Nullable java.util.Map _val6444; - for (int _i6445 = 0; _i6445 < _map6442.size; ++_i6445) + org.apache.thrift.protocol.TMap _map6414 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6414.size); + long _key6415; + @org.apache.thrift.annotation.Nullable java.util.Map _val6416; + for (int _i6417 = 0; _i6417 < _map6414.size; ++_i6417) { - _key6443 = iprot.readI64(); + _key6415 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6446 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6444 = new java.util.LinkedHashMap(2*_map6446.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6447; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6448; - for (int _i6449 = 0; _i6449 < _map6446.size; ++_i6449) + org.apache.thrift.protocol.TMap _map6418 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6416 = new java.util.LinkedHashMap(2*_map6418.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6419; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6420; + for (int _i6421 = 0; _i6421 < _map6418.size; ++_i6421) { - _key6447 = iprot.readString(); - _val6448 = new com.cinchapi.concourse.thrift.TObject(); - _val6448.read(iprot); - _val6444.put(_key6447, _val6448); + _key6419 = iprot.readString(); + _val6420 = new com.cinchapi.concourse.thrift.TObject(); + _val6420.read(iprot); + _val6416.put(_key6419, _val6420); } } - struct.success.put(_key6443, _val6444); + struct.success.put(_key6415, _val6416); } } struct.setSuccessIsSet(true); @@ -589059,26 +587941,24 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrOrderPage_args"); + public static class getKeysCclTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -589089,10 +587969,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { CCL((short)2, "ccl"), TIMESTAMP((short)3, "timestamp"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -589116,13 +587995,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -589179,8 +588056,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -589188,18 +588063,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrOrder_args.class, metaDataMap); } - public getKeysCclTimestrOrderPage_args() { + public getKeysCclTimestrOrder_args() { } - public getKeysCclTimestrOrderPage_args( + public getKeysCclTimestrOrder_args( java.util.List keys, java.lang.String ccl, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -589209,7 +588083,6 @@ public getKeysCclTimestrOrderPage_args( this.ccl = ccl; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -589218,7 +588091,7 @@ public getKeysCclTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public getKeysCclTimestrOrderPage_args(getKeysCclTimestrOrderPage_args other) { + public getKeysCclTimestrOrder_args(getKeysCclTimestrOrder_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -589232,9 +588105,6 @@ public getKeysCclTimestrOrderPage_args(getKeysCclTimestrOrderPage_args other) { if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -589247,8 +588117,8 @@ public getKeysCclTimestrOrderPage_args(getKeysCclTimestrOrderPage_args other) { } @Override - public getKeysCclTimestrOrderPage_args deepCopy() { - return new getKeysCclTimestrOrderPage_args(this); + public getKeysCclTimestrOrder_args deepCopy() { + return new getKeysCclTimestrOrder_args(this); } @Override @@ -589257,7 +588127,6 @@ public void clear() { this.ccl = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -589284,7 +588153,7 @@ public java.util.List getKeys() { return this.keys; } - public getKeysCclTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public getKeysCclTimestrOrder_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -589309,7 +588178,7 @@ public java.lang.String getCcl() { return this.ccl; } - public getKeysCclTimestrOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public getKeysCclTimestrOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -589334,7 +588203,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public getKeysCclTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public getKeysCclTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -589359,7 +588228,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public getKeysCclTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public getKeysCclTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -589379,37 +588248,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public getKeysCclTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getKeysCclTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -589434,7 +588278,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public getKeysCclTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -589459,7 +588303,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getKeysCclTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -589514,14 +588358,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -589565,9 +588401,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -589597,8 +588430,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -589611,12 +588442,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimestrOrderPage_args) - return this.equals((getKeysCclTimestrOrderPage_args)that); + if (that instanceof getKeysCclTimestrOrder_args) + return this.equals((getKeysCclTimestrOrder_args)that); return false; } - public boolean equals(getKeysCclTimestrOrderPage_args that) { + public boolean equals(getKeysCclTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -589658,15 +588489,6 @@ public boolean equals(getKeysCclTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -589717,10 +588539,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -589737,7 +588555,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimestrOrderPage_args other) { + public int compareTo(getKeysCclTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -589784,16 +588602,6 @@ public int compareTo(getKeysCclTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -589845,7 +588653,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrOrder_args("); boolean first = true; sb.append("keys:"); @@ -589880,14 +588688,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -589921,9 +588721,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -589948,17 +588745,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrOrderPage_argsStandardScheme getScheme() { - return new getKeysCclTimestrOrderPage_argsStandardScheme(); + public getKeysCclTimestrOrder_argsStandardScheme getScheme() { + return new getKeysCclTimestrOrder_argsStandardScheme(); } } - private static class getKeysCclTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -589971,13 +588768,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6450 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6450.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6451; - for (int _i6452 = 0; _i6452 < _list6450.size; ++_i6452) + org.apache.thrift.protocol.TList _list6422 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6422.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6423; + for (int _i6424 = 0; _i6424 < _list6422.size; ++_i6424) { - _elem6451 = iprot.readString(); - struct.keys.add(_elem6451); + _elem6423 = iprot.readString(); + struct.keys.add(_elem6423); } iprot.readListEnd(); } @@ -590011,16 +588808,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -590029,7 +588817,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -590038,7 +588826,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -590058,7 +588846,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -590066,9 +588854,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6453 : struct.keys) + for (java.lang.String _iter6425 : struct.keys) { - oprot.writeString(_iter6453); + oprot.writeString(_iter6425); } oprot.writeListEnd(); } @@ -590089,11 +588877,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -590115,17 +588898,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO } - private static class getKeysCclTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrOrderPage_argsTupleScheme getScheme() { - return new getKeysCclTimestrOrderPage_argsTupleScheme(); + public getKeysCclTimestrOrder_argsTupleScheme getScheme() { + return new getKeysCclTimestrOrder_argsTupleScheme(); } } - private static class getKeysCclTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -590140,25 +588923,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6454 : struct.keys) + for (java.lang.String _iter6426 : struct.keys) { - oprot.writeString(_iter6454); + oprot.writeString(_iter6426); } } } @@ -590171,9 +588951,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -590186,18 +588963,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6455 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6455.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6456; - for (int _i6457 = 0; _i6457 < _list6455.size; ++_i6457) + org.apache.thrift.protocol.TList _list6427 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6427.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6428; + for (int _i6429 = 0; _i6429 < _list6427.size; ++_i6429) { - _elem6456 = iprot.readString(); - struct.keys.add(_elem6456); + _elem6428 = iprot.readString(); + struct.keys.add(_elem6428); } } struct.setKeysIsSet(true); @@ -590216,21 +588993,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrd struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -590242,8 +589014,8 @@ private static S scheme(org.apache. } } - public static class getKeysCclTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrOrderPage_result"); + public static class getKeysCclTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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); @@ -590251,8 +589023,8 @@ public static class getKeysCclTimestrOrderPage_result implements org.apache.thri private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -590353,13 +589125,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrOrder_result.class, metaDataMap); } - public getKeysCclTimestrOrderPage_result() { + public getKeysCclTimestrOrder_result() { } - public getKeysCclTimestrOrderPage_result( + public getKeysCclTimestrOrder_result( java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -590377,7 +589149,7 @@ public getKeysCclTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public getKeysCclTimestrOrderPage_result(getKeysCclTimestrOrderPage_result other) { + public getKeysCclTimestrOrder_result(getKeysCclTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); for (java.util.Map.Entry> other_element : other.success.entrySet()) { @@ -590419,8 +589191,8 @@ public getKeysCclTimestrOrderPage_result(getKeysCclTimestrOrderPage_result other } @Override - public getKeysCclTimestrOrderPage_result deepCopy() { - return new getKeysCclTimestrOrderPage_result(this); + public getKeysCclTimestrOrder_result deepCopy() { + return new getKeysCclTimestrOrder_result(this); } @Override @@ -590448,7 +589220,7 @@ public java.util.Map> success) { + public getKeysCclTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -590473,7 +589245,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getKeysCclTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -590498,7 +589270,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getKeysCclTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -590523,7 +589295,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public getKeysCclTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public getKeysCclTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -590548,7 +589320,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public getKeysCclTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public getKeysCclTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -590661,12 +589433,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getKeysCclTimestrOrderPage_result) - return this.equals((getKeysCclTimestrOrderPage_result)that); + if (that instanceof getKeysCclTimestrOrder_result) + return this.equals((getKeysCclTimestrOrder_result)that); return false; } - public boolean equals(getKeysCclTimestrOrderPage_result that) { + public boolean equals(getKeysCclTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -590748,7 +589520,7 @@ public int hashCode() { } @Override - public int compareTo(getKeysCclTimestrOrderPage_result other) { + public int compareTo(getKeysCclTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -590825,7 +589597,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -590892,17 +589664,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getKeysCclTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrOrderPage_resultStandardScheme getScheme() { - return new getKeysCclTimestrOrderPage_resultStandardScheme(); + public getKeysCclTimestrOrder_resultStandardScheme getScheme() { + return new getKeysCclTimestrOrder_resultStandardScheme(); } } - private static class getKeysCclTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -590915,28 +589687,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map6458 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map6458.size); - long _key6459; - @org.apache.thrift.annotation.Nullable java.util.Map _val6460; - for (int _i6461 = 0; _i6461 < _map6458.size; ++_i6461) + org.apache.thrift.protocol.TMap _map6430 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6430.size); + long _key6431; + @org.apache.thrift.annotation.Nullable java.util.Map _val6432; + for (int _i6433 = 0; _i6433 < _map6430.size; ++_i6433) { - _key6459 = iprot.readI64(); + _key6431 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6462 = iprot.readMapBegin(); - _val6460 = new java.util.LinkedHashMap(2*_map6462.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6463; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6464; - for (int _i6465 = 0; _i6465 < _map6462.size; ++_i6465) + org.apache.thrift.protocol.TMap _map6434 = iprot.readMapBegin(); + _val6432 = new java.util.LinkedHashMap(2*_map6434.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6435; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6436; + for (int _i6437 = 0; _i6437 < _map6434.size; ++_i6437) { - _key6463 = iprot.readString(); - _val6464 = new com.cinchapi.concourse.thrift.TObject(); - _val6464.read(iprot); - _val6460.put(_key6463, _val6464); + _key6435 = iprot.readString(); + _val6436 = new com.cinchapi.concourse.thrift.TObject(); + _val6436.read(iprot); + _val6432.put(_key6435, _val6436); } iprot.readMapEnd(); } - struct.success.put(_key6459, _val6460); + struct.success.put(_key6431, _val6432); } iprot.readMapEnd(); } @@ -590993,7 +589765,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -591001,15 +589773,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry> _iter6466 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6438 : struct.success.entrySet()) { - oprot.writeI64(_iter6466.getKey()); + oprot.writeI64(_iter6438.getKey()); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6466.getValue().size())); - for (java.util.Map.Entry _iter6467 : _iter6466.getValue().entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6438.getValue().size())); + for (java.util.Map.Entry _iter6439 : _iter6438.getValue().entrySet()) { - oprot.writeString(_iter6467.getKey()); - _iter6467.getValue().write(oprot); + oprot.writeString(_iter6439.getKey()); + _iter6439.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -591044,17 +589816,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrO } - private static class getKeysCclTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getKeysCclTimestrOrderPage_resultTupleScheme getScheme() { - return new getKeysCclTimestrOrderPage_resultTupleScheme(); + public getKeysCclTimestrOrder_resultTupleScheme getScheme() { + return new getKeysCclTimestrOrder_resultTupleScheme(); } } - private static class getKeysCclTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -591076,15 +589848,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter6468 : struct.success.entrySet()) + for (java.util.Map.Entry> _iter6440 : struct.success.entrySet()) { - oprot.writeI64(_iter6468.getKey()); + oprot.writeI64(_iter6440.getKey()); { - oprot.writeI32(_iter6468.getValue().size()); - for (java.util.Map.Entry _iter6469 : _iter6468.getValue().entrySet()) + oprot.writeI32(_iter6440.getValue().size()); + for (java.util.Map.Entry _iter6441 : _iter6440.getValue().entrySet()) { - oprot.writeString(_iter6469.getKey()); - _iter6469.getValue().write(oprot); + oprot.writeString(_iter6441.getKey()); + _iter6441.getValue().write(oprot); } } } @@ -591105,32 +589877,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map6470 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>(2*_map6470.size); - long _key6471; - @org.apache.thrift.annotation.Nullable java.util.Map _val6472; - for (int _i6473 = 0; _i6473 < _map6470.size; ++_i6473) + org.apache.thrift.protocol.TMap _map6442 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6442.size); + long _key6443; + @org.apache.thrift.annotation.Nullable java.util.Map _val6444; + for (int _i6445 = 0; _i6445 < _map6442.size; ++_i6445) { - _key6471 = iprot.readI64(); + _key6443 = iprot.readI64(); { - org.apache.thrift.protocol.TMap _map6474 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - _val6472 = new java.util.LinkedHashMap(2*_map6474.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key6475; - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6476; - for (int _i6477 = 0; _i6477 < _map6474.size; ++_i6477) + org.apache.thrift.protocol.TMap _map6446 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6444 = new java.util.LinkedHashMap(2*_map6446.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6447; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6448; + for (int _i6449 = 0; _i6449 < _map6446.size; ++_i6449) { - _key6475 = iprot.readString(); - _val6476 = new com.cinchapi.concourse.thrift.TObject(); - _val6476.read(iprot); - _val6472.put(_key6475, _val6476); + _key6447 = iprot.readString(); + _val6448 = new com.cinchapi.concourse.thrift.TObject(); + _val6448.read(iprot); + _val6444.put(_key6447, _val6448); } } - struct.success.put(_key6471, _val6472); + struct.success.put(_key6443, _val6444); } } struct.setSuccessIsSet(true); @@ -591163,34 +589935,40 @@ private static S scheme(org.apache. } } - public static class verifyKeyValueRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecord_args"); + public static class getKeysCclTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required - public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - VALUE((short)2, "value"), - RECORD((short)3, "record"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + KEYS((short)1, "keys"), + CCL((short)2, "ccl"), + TIMESTAMP((short)3, "timestamp"), + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -591206,17 +589984,21 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // VALUE - return VALUE; - case 3: // RECORD - return RECORD; - case 4: // CREDS + case 1: // KEYS + return KEYS; + case 2: // CCL + return CCL; + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 5: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -591261,17 +590043,20 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -591279,25 +590064,28 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrOrderPage_args.class, metaDataMap); } - public verifyKeyValueRecord_args() { + public getKeysCclTimestrOrderPage_args() { } - public verifyKeyValueRecord_args( - java.lang.String key, - com.cinchapi.concourse.thrift.TObject value, - long record, + public getKeysCclTimestrOrderPage_args( + java.util.List keys, + java.lang.String ccl, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.value = value; - this.record = record; - setRecordIsSet(true); + this.keys = keys; + this.ccl = ccl; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -591306,15 +590094,23 @@ public verifyKeyValueRecord_args( /** * Performs a deep copy on other. */ - public verifyKeyValueRecord_args(verifyKeyValueRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; + public getKeysCclTimestrOrderPage_args(getKeysCclTimestrOrderPage_args other) { + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; } - if (other.isSetValue()) { - this.value = new com.cinchapi.concourse.thrift.TObject(other.value); + if (other.isSetCcl()) { + this.ccl = other.ccl; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } - this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -591327,92 +590123,161 @@ public verifyKeyValueRecord_args(verifyKeyValueRecord_args other) { } @Override - public verifyKeyValueRecord_args deepCopy() { - return new verifyKeyValueRecord_args(this); + public getKeysCclTimestrOrderPage_args deepCopy() { + return new getKeysCclTimestrOrderPage_args(this); } @Override public void clear() { - this.key = null; - this.value = null; - setRecordIsSet(false); - this.record = 0; + this.keys = null; + this.ccl = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public verifyKeyValueRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public getKeysCclTimestrOrderPage_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; return this; } - public void unsetKey() { - this.key = null; + public void unsetKeys() { + this.keys = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void setKeyIsSet(boolean value) { + public void setKeysIsSet(boolean value) { if (!value) { - this.key = null; + this.keys = null; } } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TObject getValue() { - return this.value; + public java.lang.String getCcl() { + return this.ccl; } - public verifyKeyValueRecord_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { - this.value = value; + public getKeysCclTimestrOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetValue() { - this.value = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field value is set (has been assigned a value) and false otherwise */ - public boolean isSetValue() { - return this.value != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setValueIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.value = null; + this.ccl = null; } } - public long getRecord() { - return this.record; + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; } - public verifyKeyValueRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + public getKeysCclTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public getKeysCclTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public getKeysCclTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -591420,7 +590285,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public verifyKeyValueRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public getKeysCclTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -591445,7 +590310,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public verifyKeyValueRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public getKeysCclTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -591470,7 +590335,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public verifyKeyValueRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public getKeysCclTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -591493,27 +590358,43 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case KEYS: if (value == null) { - unsetKey(); + unsetKeys(); } else { - setKey((java.lang.String)value); + setKeys((java.util.List)value); } break; - case VALUE: + case CCL: if (value == null) { - unsetValue(); + unsetCcl(); } else { - setValue((com.cinchapi.concourse.thrift.TObject)value); + setCcl((java.lang.String)value); } break; - case RECORD: + case TIMESTAMP: if (value == null) { - unsetRecord(); + unsetTimestamp(); } else { - setRecord((java.lang.Long)value); + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -591548,14 +590429,20 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case KEYS: + return getKeys(); - case VALUE: - return getValue(); + case CCL: + return getCcl(); - case RECORD: - return getRecord(); + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -591578,12 +590465,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case VALUE: - return isSetValue(); - case RECORD: - return isSetRecord(); + case KEYS: + return isSetKeys(); + case CCL: + return isSetCcl(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -591596,41 +590487,59 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyKeyValueRecord_args) - return this.equals((verifyKeyValueRecord_args)that); + if (that instanceof getKeysCclTimestrOrderPage_args) + return this.equals((getKeysCclTimestrOrderPage_args)that); return false; } - public boolean equals(verifyKeyValueRecord_args that) { + public boolean equals(getKeysCclTimestrOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.key.equals(that.key)) + if (!this.keys.equals(that.keys)) return false; } - boolean this_present_value = true && this.isSetValue(); - boolean that_present_value = true && that.isSetValue(); - if (this_present_value || that_present_value) { - if (!(this_present_value && that_present_value)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.value.equals(that.value)) + if (!this.ccl.equals(that.ccl)) return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.record != that.record) + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -591668,15 +590577,25 @@ public boolean equals(verifyKeyValueRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); - if (isSetValue()) - hashCode = hashCode * 8191 + value.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -591694,39 +590613,59 @@ public int hashCode() { } @Override - public int compareTo(verifyKeyValueRecord_args other) { + public int compareTo(getKeysCclTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetValue()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, other.value); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -591782,27 +590721,47 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrOrderPage_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); - sb.append("value:"); - if (this.value == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.value); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -591835,8 +590794,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (value != null) { - value.validate(); + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -591856,25 +590818,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 verifyKeyValueRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecord_argsStandardScheme getScheme() { - return new verifyKeyValueRecord_argsStandardScheme(); + public getKeysCclTimestrOrderPage_argsStandardScheme getScheme() { + return new getKeysCclTimestrOrderPage_argsStandardScheme(); } } - private static class verifyKeyValueRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -591884,32 +590844,59 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor break; } switch (schemeField.id) { - case 1: // KEY + case 1: // KEYS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list6450 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6450.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6451; + for (int _i6452 = 0; _i6452 < _list6450.size; ++_i6452) + { + _elem6451 = iprot.readString(); + struct.keys.add(_elem6451); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // CCL if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // VALUE + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // ORDER if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.value = new com.cinchapi.concourse.thrift.TObject(); - struct.value.read(iprot); - struct.setValueIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -591918,7 +590905,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -591927,7 +590914,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -591947,23 +590934,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter6453 : struct.keys) + { + oprot.writeString(_iter6453); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } - if (struct.value != null) { - oprot.writeFieldBegin(VALUE_FIELD_DESC); - struct.value.write(oprot); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -591985,46 +590991,64 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueReco } - private static class verifyKeyValueRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecord_argsTupleScheme getScheme() { - return new verifyKeyValueRecord_argsTupleScheme(); + public getKeysCclTimestrOrderPage_argsTupleScheme getScheme() { + return new getKeysCclTimestrOrderPage_argsTupleScheme(); } } - private static class verifyKeyValueRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetValue()) { + if (struct.isSetCcl()) { optionals.set(1); } - if (struct.isSetRecord()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetTransaction()) { + optionals.set(6); } - if (struct.isSetValue()) { - struct.value.write(oprot); + if (struct.isSetEnvironment()) { + optionals.set(7); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + oprot.writeBitSet(optionals, 8); + if (struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter6454 : struct.keys) + { + oprot.writeString(_iter6454); + } + } + } + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -592038,33 +591062,51 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + { + org.apache.thrift.protocol.TList _list6455 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6455.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6456; + for (int _i6457 = 0; _i6457 < _list6455.size; ++_i6457) + { + _elem6456 = iprot.readString(); + struct.keys.add(_elem6456); + } + } + struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.value = new com.cinchapi.concourse.thrift.TObject(); - struct.value.read(iprot); - struct.setValueIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(2)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); } if (incoming.get(3)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -592076,28 +591118,31 @@ private static S scheme(org.apache. } } - public static class verifyKeyValueRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecord_result"); + public static class getKeysCclTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getKeysCclTimestrOrderPage_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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getKeysCclTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getKeysCclTimestrOrderPage_resultTupleSchemeFactory(); - public boolean success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -592121,6 +591166,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -592164,46 +591211,75 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getKeysCclTimestrOrderPage_result.class, metaDataMap); } - public verifyKeyValueRecord_result() { + public getKeysCclTimestrOrderPage_result() { } - public verifyKeyValueRecord_result( - boolean success, + public getKeysCclTimestrOrderPage_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public verifyKeyValueRecord_result(verifyKeyValueRecord_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public getKeysCclTimestrOrderPage_result(getKeysCclTimestrOrderPage_result other) { + if (other.isSetSuccess()) { + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { + + java.lang.Long other_element_key = other_element.getKey(); + java.util.Map other_element_value = other_element.getValue(); + + java.lang.Long __this__success_copy_key = other_element_key; + + java.util.Map __this__success_copy_value = new java.util.LinkedHashMap(other_element_value.size()); + for (java.util.Map.Entry other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + com.cinchapi.concourse.thrift.TObject other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + com.cinchapi.concourse.thrift.TObject __this__success_copy_value_copy_value = new com.cinchapi.concourse.thrift.TObject(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } + + __this__success.put(__this__success_copy_key, __this__success_copy_value); + } + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -592211,45 +591287,61 @@ public verifyKeyValueRecord_result(verifyKeyValueRecord_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public verifyKeyValueRecord_result deepCopy() { - return new verifyKeyValueRecord_result(this); + public getKeysCclTimestrOrderPage_result deepCopy() { + return new getKeysCclTimestrOrderPage_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } - public boolean isSuccess() { + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(long key, java.util.Map val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap>(); + } + this.success.put(key, val); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Map> getSuccess() { return this.success; } - public verifyKeyValueRecord_result setSuccess(boolean success) { + public getKeysCclTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; - setSuccessIsSet(true); return this; } public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + this.success = null; } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + return this.success != null; } public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + if (!value) { + this.success = null; + } } @org.apache.thrift.annotation.Nullable @@ -592257,7 +591349,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public verifyKeyValueRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public getKeysCclTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -592282,7 +591374,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public verifyKeyValueRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public getKeysCclTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -592303,11 +591395,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public verifyKeyValueRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public getKeysCclTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -592327,6 +591419,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public getKeysCclTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -592334,7 +591451,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.Boolean)value); + setSuccess((java.util.Map>)value); } break; @@ -592358,7 +591475,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -592370,7 +591495,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return isSuccess(); + return getSuccess(); case EX: return getEx(); @@ -592381,6 +591506,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -592401,29 +591529,31 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyKeyValueRecord_result) - return this.equals((verifyKeyValueRecord_result)that); + if (that instanceof getKeysCclTimestrOrderPage_result) + return this.equals((getKeysCclTimestrOrderPage_result)that); return false; } - public boolean equals(verifyKeyValueRecord_result that) { + public boolean equals(getKeysCclTimestrOrderPage_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; + 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 != that.success) + if (!this.success.equals(that.success)) return false; } @@ -592454,6 +591584,15 @@ public boolean equals(verifyKeyValueRecord_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -592461,7 +591600,9 @@ public boolean equals(verifyKeyValueRecord_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -592475,11 +591616,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(verifyKeyValueRecord_result other) { + public int compareTo(getKeysCclTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -592526,6 +591671,16 @@ public int compareTo(verifyKeyValueRecord_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -592546,11 +591701,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getKeysCclTimestrOrderPage_result("); boolean first = true; sb.append("success:"); - sb.append(this.success); + if (this.success == null) { + sb.append("null"); + } else { + sb.append(this.success); + } first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -592576,6 +591735,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -592595,25 +591762,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 verifyKeyValueRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecord_resultStandardScheme getScheme() { - return new verifyKeyValueRecord_resultStandardScheme(); + public getKeysCclTimestrOrderPage_resultStandardScheme getScheme() { + return new getKeysCclTimestrOrderPage_resultStandardScheme(); } } - private static class verifyKeyValueRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getKeysCclTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -592624,8 +591789,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map6458 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map6458.size); + long _key6459; + @org.apache.thrift.annotation.Nullable java.util.Map _val6460; + for (int _i6461 = 0; _i6461 < _map6458.size; ++_i6461) + { + _key6459 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map6462 = iprot.readMapBegin(); + _val6460 = new java.util.LinkedHashMap(2*_map6462.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6463; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6464; + for (int _i6465 = 0; _i6465 < _map6462.size; ++_i6465) + { + _key6463 = iprot.readString(); + _val6464 = new com.cinchapi.concourse.thrift.TObject(); + _val6464.read(iprot); + _val6460.put(_key6463, _val6464); + } + iprot.readMapEnd(); + } + struct.success.put(_key6459, _val6460); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -592651,13 +591841,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -592670,13 +591869,29 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { + if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry> _iter6466 : struct.success.entrySet()) + { + oprot.writeI64(_iter6466.getKey()); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, _iter6466.getValue().size())); + for (java.util.Map.Entry _iter6467 : _iter6466.getValue().entrySet()) + { + oprot.writeString(_iter6467.getKey()); + _iter6467.getValue().write(oprot); + } + oprot.writeMapEnd(); + } + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -592694,23 +591909,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueReco struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class verifyKeyValueRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class getKeysCclTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecord_resultTupleScheme getScheme() { - return new verifyKeyValueRecord_resultTupleScheme(); + public getKeysCclTimestrOrderPage_resultTupleScheme getScheme() { + return new getKeysCclTimestrOrderPage_resultTupleScheme(); } } - private static class verifyKeyValueRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getKeysCclTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -592725,9 +591945,26 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry> _iter6468 : struct.success.entrySet()) + { + oprot.writeI64(_iter6468.getKey()); + { + oprot.writeI32(_iter6468.getValue().size()); + for (java.util.Map.Entry _iter6469 : _iter6468.getValue().entrySet()) + { + oprot.writeString(_iter6469.getKey()); + _iter6469.getValue().write(oprot); + } + } + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -592738,14 +591975,40 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getKeysCclTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.success = iprot.readBool(); + { + org.apache.thrift.protocol.TMap _map6470 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>(2*_map6470.size); + long _key6471; + @org.apache.thrift.annotation.Nullable java.util.Map _val6472; + for (int _i6473 = 0; _i6473 < _map6470.size; ++_i6473) + { + _key6471 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map6474 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + _val6472 = new java.util.LinkedHashMap(2*_map6474.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key6475; + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _val6476; + for (int _i6477 = 0; _i6477 < _map6474.size; ++_i6477) + { + _key6475 = iprot.readString(); + _val6476 = new com.cinchapi.concourse.thrift.TObject(); + _val6476.read(iprot); + _val6472.put(_key6475, _val6476); + } + } + struct.success.put(_key6471, _val6472); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -592759,10 +592022,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -592771,24 +592039,22 @@ private static S scheme(org.apache. } } - public static class verifyKeyValueRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecordTime_args"); + public static class verifyKeyValueRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecord_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecord_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required public long record; // required - public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -592798,10 +592064,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), VALUE((short)2, "value"), RECORD((short)3, "record"), - TIMESTAMP((short)4, "timestamp"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -592823,13 +592088,11 @@ public static _Fields findByThriftId(int fieldId) { return VALUE; case 3: // RECORD return RECORD; - case 4: // TIMESTAMP - return TIMESTAMP; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -592875,7 +592138,6 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -592886,8 +592148,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -592895,17 +592155,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecord_args.class, metaDataMap); } - public verifyKeyValueRecordTime_args() { + public verifyKeyValueRecord_args() { } - public verifyKeyValueRecordTime_args( + public verifyKeyValueRecord_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, long record, - long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -592915,8 +592174,6 @@ public verifyKeyValueRecordTime_args( this.value = value; this.record = record; setRecordIsSet(true); - this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -592925,7 +592182,7 @@ public verifyKeyValueRecordTime_args( /** * Performs a deep copy on other. */ - public verifyKeyValueRecordTime_args(verifyKeyValueRecordTime_args other) { + public verifyKeyValueRecord_args(verifyKeyValueRecord_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -592934,7 +592191,6 @@ public verifyKeyValueRecordTime_args(verifyKeyValueRecordTime_args other) { this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } this.record = other.record; - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -592947,8 +592203,8 @@ public verifyKeyValueRecordTime_args(verifyKeyValueRecordTime_args other) { } @Override - public verifyKeyValueRecordTime_args deepCopy() { - return new verifyKeyValueRecordTime_args(this); + public verifyKeyValueRecord_args deepCopy() { + return new verifyKeyValueRecord_args(this); } @Override @@ -592957,8 +592213,6 @@ public void clear() { this.value = null; setRecordIsSet(false); this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -592969,7 +592223,7 @@ public java.lang.String getKey() { return this.key; } - public verifyKeyValueRecordTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public verifyKeyValueRecord_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -592994,7 +592248,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public verifyKeyValueRecordTime_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public verifyKeyValueRecord_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -593018,7 +592272,7 @@ public long getRecord() { return this.record; } - public verifyKeyValueRecordTime_args setRecord(long record) { + public verifyKeyValueRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -593037,35 +592291,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getTimestamp() { - return this.timestamp; - } - - public verifyKeyValueRecordTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public verifyKeyValueRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public verifyKeyValueRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -593090,7 +592321,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public verifyKeyValueRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public verifyKeyValueRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -593115,7 +592346,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public verifyKeyValueRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public verifyKeyValueRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -593162,14 +592393,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -593210,9 +592433,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORD: return getRecord(); - case TIMESTAMP: - return getTimestamp(); - case CREDS: return getCreds(); @@ -593240,8 +592460,6 @@ public boolean isSet(_Fields field) { return isSetValue(); case RECORD: return isSetRecord(); - case TIMESTAMP: - return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -593254,12 +592472,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyKeyValueRecordTime_args) - return this.equals((verifyKeyValueRecordTime_args)that); + if (that instanceof verifyKeyValueRecord_args) + return this.equals((verifyKeyValueRecord_args)that); return false; } - public boolean equals(verifyKeyValueRecordTime_args that) { + public boolean equals(verifyKeyValueRecord_args that) { if (that == null) return false; if (this == that) @@ -593292,15 +592510,6 @@ public boolean equals(verifyKeyValueRecordTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -593345,8 +592554,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -593363,7 +592570,7 @@ public int hashCode() { } @Override - public int compareTo(verifyKeyValueRecordTime_args other) { + public int compareTo(verifyKeyValueRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -593400,16 +592607,6 @@ public int compareTo(verifyKeyValueRecordTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -593461,7 +592658,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecord_args("); boolean first = true; sb.append("key:"); @@ -593484,10 +592681,6 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -593547,17 +592740,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class verifyKeyValueRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecordTime_argsStandardScheme getScheme() { - return new verifyKeyValueRecordTime_argsStandardScheme(); + public verifyKeyValueRecord_argsStandardScheme getScheme() { + return new verifyKeyValueRecord_argsStandardScheme(); } } - private static class verifyKeyValueRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyKeyValueRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -593592,15 +592785,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -593609,7 +592794,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -593618,7 +592803,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -593638,7 +592823,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -593655,9 +592840,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueReco oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -593679,17 +592861,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueReco } - private static class verifyKeyValueRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecordTime_argsTupleScheme getScheme() { - return new verifyKeyValueRecordTime_argsTupleScheme(); + public verifyKeyValueRecord_argsTupleScheme getScheme() { + return new verifyKeyValueRecord_argsTupleScheme(); } } - private static class verifyKeyValueRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyKeyValueRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -593701,19 +592883,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor if (struct.isSetRecord()) { optionals.set(2); } - if (struct.isSetTimestamp()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -593723,9 +592902,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -593738,9 +592914,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -593755,20 +592931,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord struct.setRecordIsSet(true); } if (incoming.get(3)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -593780,16 +592952,16 @@ private static S scheme(org.apache. } } - public static class verifyKeyValueRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecordTime_result"); + public static class verifyKeyValueRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecord_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecord_resultTupleSchemeFactory(); public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -593882,13 +593054,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecord_result.class, metaDataMap); } - public verifyKeyValueRecordTime_result() { + public verifyKeyValueRecord_result() { } - public verifyKeyValueRecordTime_result( + public verifyKeyValueRecord_result( boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -593905,7 +593077,7 @@ public verifyKeyValueRecordTime_result( /** * Performs a deep copy on other. */ - public verifyKeyValueRecordTime_result(verifyKeyValueRecordTime_result other) { + public verifyKeyValueRecord_result(verifyKeyValueRecord_result other) { __isset_bitfield = other.__isset_bitfield; this.success = other.success; if (other.isSetEx()) { @@ -593920,8 +593092,8 @@ public verifyKeyValueRecordTime_result(verifyKeyValueRecordTime_result other) { } @Override - public verifyKeyValueRecordTime_result deepCopy() { - return new verifyKeyValueRecordTime_result(this); + public verifyKeyValueRecord_result deepCopy() { + return new verifyKeyValueRecord_result(this); } @Override @@ -593937,7 +593109,7 @@ public boolean isSuccess() { return this.success; } - public verifyKeyValueRecordTime_result setSuccess(boolean success) { + public verifyKeyValueRecord_result setSuccess(boolean success) { this.success = success; setSuccessIsSet(true); return this; @@ -593961,7 +593133,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public verifyKeyValueRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public verifyKeyValueRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -593986,7 +593158,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public verifyKeyValueRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public verifyKeyValueRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -594011,7 +593183,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public verifyKeyValueRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public verifyKeyValueRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -594111,12 +593283,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyKeyValueRecordTime_result) - return this.equals((verifyKeyValueRecordTime_result)that); + if (that instanceof verifyKeyValueRecord_result) + return this.equals((verifyKeyValueRecord_result)that); return false; } - public boolean equals(verifyKeyValueRecordTime_result that) { + public boolean equals(verifyKeyValueRecord_result that) { if (that == null) return false; if (this == that) @@ -594183,7 +593355,7 @@ public int hashCode() { } @Override - public int compareTo(verifyKeyValueRecordTime_result other) { + public int compareTo(verifyKeyValueRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -594250,7 +593422,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecord_result("); boolean first = true; sb.append("success:"); @@ -594307,17 +593479,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class verifyKeyValueRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecordTime_resultStandardScheme getScheme() { - return new verifyKeyValueRecordTime_resultStandardScheme(); + public verifyKeyValueRecord_resultStandardScheme getScheme() { + return new verifyKeyValueRecord_resultStandardScheme(); } } - private static class verifyKeyValueRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyKeyValueRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -594374,7 +593546,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -594404,17 +593576,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueReco } - private static class verifyKeyValueRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecordTime_resultTupleScheme getScheme() { - return new verifyKeyValueRecordTime_resultTupleScheme(); + public verifyKeyValueRecord_resultTupleScheme getScheme() { + return new verifyKeyValueRecord_resultTupleScheme(); } } - private static class verifyKeyValueRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyKeyValueRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -594445,7 +593617,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { @@ -594475,24 +593647,24 @@ private static S scheme(org.apache. } } - public static class verifyKeyValueRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecordTimestr_args"); + public static class verifyKeyValueRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecordTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecordTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -594579,6 +593751,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -594590,7 +593763,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -594598,17 +593771,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecordTime_args.class, metaDataMap); } - public verifyKeyValueRecordTimestr_args() { + public verifyKeyValueRecordTime_args() { } - public verifyKeyValueRecordTimestr_args( + public verifyKeyValueRecordTime_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -594619,6 +593792,7 @@ public verifyKeyValueRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -594627,7 +593801,7 @@ public verifyKeyValueRecordTimestr_args( /** * Performs a deep copy on other. */ - public verifyKeyValueRecordTimestr_args(verifyKeyValueRecordTimestr_args other) { + public verifyKeyValueRecordTime_args(verifyKeyValueRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -594636,9 +593810,7 @@ public verifyKeyValueRecordTimestr_args(verifyKeyValueRecordTimestr_args other) this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -594651,8 +593823,8 @@ public verifyKeyValueRecordTimestr_args(verifyKeyValueRecordTimestr_args other) } @Override - public verifyKeyValueRecordTimestr_args deepCopy() { - return new verifyKeyValueRecordTimestr_args(this); + public verifyKeyValueRecordTime_args deepCopy() { + return new verifyKeyValueRecordTime_args(this); } @Override @@ -594661,7 +593833,8 @@ public void clear() { this.value = null; setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -594672,7 +593845,7 @@ public java.lang.String getKey() { return this.key; } - public verifyKeyValueRecordTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public verifyKeyValueRecordTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -594697,7 +593870,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public verifyKeyValueRecordTimestr_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public verifyKeyValueRecordTime_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -594721,7 +593894,7 @@ public long getRecord() { return this.record; } - public verifyKeyValueRecordTimestr_args setRecord(long record) { + public verifyKeyValueRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -594740,29 +593913,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public verifyKeyValueRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public verifyKeyValueRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -594770,7 +593941,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public verifyKeyValueRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public verifyKeyValueRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -594795,7 +593966,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public verifyKeyValueRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public verifyKeyValueRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -594820,7 +593991,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public verifyKeyValueRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public verifyKeyValueRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -594871,7 +594042,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -594959,12 +594130,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyKeyValueRecordTimestr_args) - return this.equals((verifyKeyValueRecordTimestr_args)that); + if (that instanceof verifyKeyValueRecordTime_args) + return this.equals((verifyKeyValueRecordTime_args)that); return false; } - public boolean equals(verifyKeyValueRecordTimestr_args that) { + public boolean equals(verifyKeyValueRecordTime_args that) { if (that == null) return false; if (this == that) @@ -594997,12 +594168,12 @@ public boolean equals(verifyKeyValueRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -595050,9 +594221,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -595070,7 +594239,7 @@ public int hashCode() { } @Override - public int compareTo(verifyKeyValueRecordTimestr_args other) { + public int compareTo(verifyKeyValueRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -595168,7 +594337,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecordTime_args("); boolean first = true; sb.append("key:"); @@ -595192,11 +594361,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -595258,17 +594423,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class verifyKeyValueRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecordTimestr_argsStandardScheme getScheme() { - return new verifyKeyValueRecordTimestr_argsStandardScheme(); + public verifyKeyValueRecordTime_argsStandardScheme getScheme() { + return new verifyKeyValueRecordTime_argsStandardScheme(); } } - private static class verifyKeyValueRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyKeyValueRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -595304,8 +594469,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor } break; case 4: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -595349,7 +594514,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -595366,11 +594531,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueReco oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -595392,17 +594555,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueReco } - private static class verifyKeyValueRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecordTimestr_argsTupleScheme getScheme() { - return new verifyKeyValueRecordTimestr_argsTupleScheme(); + public verifyKeyValueRecordTime_argsTupleScheme getScheme() { + return new verifyKeyValueRecordTime_argsTupleScheme(); } } - private static class verifyKeyValueRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyKeyValueRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -595437,7 +594600,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -595451,7 +594614,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -595468,7 +594631,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord struct.setRecordIsSet(true); } if (incoming.get(3)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(4)) { @@ -595493,31 +594656,28 @@ private static S scheme(org.apache. } } - public static class verifyKeyValueRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecordTimestr_result"); + public static class verifyKeyValueRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecordTime_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecordTime_resultTupleSchemeFactory(); public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -595541,8 +594701,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -595598,22 +594756,19 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecordTime_result.class, metaDataMap); } - public verifyKeyValueRecordTimestr_result() { + public verifyKeyValueRecordTime_result() { } - public verifyKeyValueRecordTimestr_result( + public verifyKeyValueRecordTime_result( boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; @@ -595621,13 +594776,12 @@ public verifyKeyValueRecordTimestr_result( this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public verifyKeyValueRecordTimestr_result(verifyKeyValueRecordTimestr_result other) { + public verifyKeyValueRecordTime_result(verifyKeyValueRecordTime_result other) { __isset_bitfield = other.__isset_bitfield; this.success = other.success; if (other.isSetEx()) { @@ -595637,16 +594791,13 @@ public verifyKeyValueRecordTimestr_result(verifyKeyValueRecordTimestr_result oth this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public verifyKeyValueRecordTimestr_result deepCopy() { - return new verifyKeyValueRecordTimestr_result(this); + public verifyKeyValueRecordTime_result deepCopy() { + return new verifyKeyValueRecordTime_result(this); } @Override @@ -595656,14 +594807,13 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public boolean isSuccess() { return this.success; } - public verifyKeyValueRecordTimestr_result setSuccess(boolean success) { + public verifyKeyValueRecordTime_result setSuccess(boolean success) { this.success = success; setSuccessIsSet(true); return this; @@ -595687,7 +594837,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public verifyKeyValueRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public verifyKeyValueRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -595712,7 +594862,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public verifyKeyValueRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public verifyKeyValueRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -595733,11 +594883,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public verifyKeyValueRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public verifyKeyValueRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -595757,31 +594907,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public verifyKeyValueRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -595813,15 +594938,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -595844,9 +594961,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -595867,20 +594981,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyKeyValueRecordTimestr_result) - return this.equals((verifyKeyValueRecordTimestr_result)that); + if (that instanceof verifyKeyValueRecordTime_result) + return this.equals((verifyKeyValueRecordTime_result)that); return false; } - public boolean equals(verifyKeyValueRecordTimestr_result that) { + public boolean equals(verifyKeyValueRecordTime_result that) { if (that == null) return false; if (this == that) @@ -595922,15 +595034,6 @@ public boolean equals(verifyKeyValueRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -595952,15 +595055,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(verifyKeyValueRecordTimestr_result other) { + public int compareTo(verifyKeyValueRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -596007,16 +595106,6 @@ public int compareTo(verifyKeyValueRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -596037,7 +595126,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecordTime_result("); boolean first = true; sb.append("success:"); @@ -596067,14 +595156,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -596102,17 +595183,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class verifyKeyValueRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecordTimestr_resultStandardScheme getScheme() { - return new verifyKeyValueRecordTimestr_resultStandardScheme(); + public verifyKeyValueRecordTime_resultStandardScheme getScheme() { + return new verifyKeyValueRecordTime_resultStandardScheme(); } } - private static class verifyKeyValueRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyKeyValueRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -596150,22 +595231,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -596178,7 +595250,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecor } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -596202,28 +595274,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueReco struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class verifyKeyValueRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyKeyValueRecordTimestr_resultTupleScheme getScheme() { - return new verifyKeyValueRecordTimestr_resultTupleScheme(); + public verifyKeyValueRecordTime_resultTupleScheme getScheme() { + return new verifyKeyValueRecordTime_resultTupleScheme(); } } - private static class verifyKeyValueRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyKeyValueRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -596238,10 +595305,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { oprot.writeBool(struct.success); } @@ -596254,15 +595318,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecor if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.success = iprot.readBool(); struct.setSuccessIsSet(true); @@ -596278,15 +595339,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecord struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -596295,31 +595351,37 @@ private static S scheme(org.apache. } } - public static class jsonifyRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecords_args"); + public static class verifyKeyValueRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecordTimestr_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField IDENTIFIER_FIELD_DESC = new org.apache.thrift.protocol.TField("identifier", org.apache.thrift.protocol.TType.BOOL, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecordTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public boolean identifier; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), - IDENTIFIER((short)2, "identifier"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + KEY((short)1, "key"), + VALUE((short)2, "value"), + RECORD((short)3, "record"), + TIMESTAMP((short)4, "timestamp"), + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -596335,15 +595397,19 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; - case 2: // IDENTIFIER - return IDENTIFIER; - case 3: // CREDS + case 1: // KEY + return KEY; + case 2: // VALUE + return VALUE; + case 3: // RECORD + return RECORD; + case 4: // TIMESTAMP + return TIMESTAMP; + case 5: // CREDS return CREDS; - case 4: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -596388,16 +595454,19 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __IDENTIFIER_ISSET_ID = 0; + private static final int __RECORD_ISSET_ID = 0; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.IDENTIFIER, new org.apache.thrift.meta_data.FieldMetaData("identifier", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -596405,23 +595474,27 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecordTimestr_args.class, metaDataMap); } - public jsonifyRecords_args() { + public verifyKeyValueRecordTimestr_args() { } - public jsonifyRecords_args( - java.util.List records, - boolean identifier, + public verifyKeyValueRecordTimestr_args( + java.lang.String key, + com.cinchapi.concourse.thrift.TObject value, + long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; - this.identifier = identifier; - setIdentifierIsSet(true); + this.key = key; + this.value = value; + this.record = record; + setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -596430,13 +595503,18 @@ public jsonifyRecords_args( /** * Performs a deep copy on other. */ - public jsonifyRecords_args(jsonifyRecords_args other) { + public verifyKeyValueRecordTimestr_args(verifyKeyValueRecordTimestr_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + if (other.isSetKey()) { + this.key = other.key; + } + if (other.isSetValue()) { + this.value = new com.cinchapi.concourse.thrift.TObject(other.value); + } + this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } - this.identifier = other.identifier; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -596449,82 +595527,118 @@ public jsonifyRecords_args(jsonifyRecords_args other) { } @Override - public jsonifyRecords_args deepCopy() { - return new jsonifyRecords_args(this); + public verifyKeyValueRecordTimestr_args deepCopy() { + return new verifyKeyValueRecordTimestr_args(this); } @Override public void clear() { - this.records = null; - setIdentifierIsSet(false); - this.identifier = false; + this.key = null; + this.value = null; + setRecordIsSet(false); + this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + @org.apache.thrift.annotation.Nullable + public java.lang.String getKey() { + return this.key; } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + public verifyKeyValueRecordTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; + return this; } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); + public void unsetKey() { + this.key = null; + } + + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; + } + + public void setKeyIsSet(boolean value) { + if (!value) { + this.key = null; } - this.records.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public com.cinchapi.concourse.thrift.TObject getValue() { + return this.value; } - public jsonifyRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public verifyKeyValueRecordTimestr_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + this.value = value; return this; } - public void unsetRecords() { - this.records = null; + public void unsetValue() { + this.value = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field value is set (has been assigned a value) and false otherwise */ + public boolean isSetValue() { + return this.value != null; } - public void setRecordsIsSet(boolean value) { + public void setValueIsSet(boolean value) { if (!value) { - this.records = null; + this.value = null; } } - public boolean isIdentifier() { - return this.identifier; + public long getRecord() { + return this.record; } - public jsonifyRecords_args setIdentifier(boolean identifier) { - this.identifier = identifier; - setIdentifierIsSet(true); + public verifyKeyValueRecordTimestr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetIdentifier() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __IDENTIFIER_ISSET_ID); + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field identifier is set (has been assigned a value) and false otherwise */ - public boolean isSetIdentifier() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __IDENTIFIER_ISSET_ID); + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setIdentifierIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __IDENTIFIER_ISSET_ID, value); + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public verifyKeyValueRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -596532,7 +595646,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public jsonifyRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public verifyKeyValueRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -596557,7 +595671,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public jsonifyRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public verifyKeyValueRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -596582,7 +595696,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public jsonifyRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public verifyKeyValueRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -596605,19 +595719,35 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case KEY: if (value == null) { - unsetRecords(); + unsetKey(); } else { - setRecords((java.util.List)value); + setKey((java.lang.String)value); } break; - case IDENTIFIER: + case VALUE: if (value == null) { - unsetIdentifier(); + unsetValue(); } else { - setIdentifier((java.lang.Boolean)value); + setValue((com.cinchapi.concourse.thrift.TObject)value); + } + break; + + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); } break; @@ -596652,11 +595782,17 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); + case KEY: + return getKey(); - case IDENTIFIER: - return isIdentifier(); + case VALUE: + return getValue(); + + case RECORD: + return getRecord(); + + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -596679,10 +595815,14 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); - case IDENTIFIER: - return isSetIdentifier(); + case KEY: + return isSetKey(); + case VALUE: + return isSetValue(); + case RECORD: + return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -596695,32 +595835,50 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof jsonifyRecords_args) - return this.equals((jsonifyRecords_args)that); + if (that instanceof verifyKeyValueRecordTimestr_args) + return this.equals((verifyKeyValueRecordTimestr_args)that); return false; } - public boolean equals(jsonifyRecords_args that) { + public boolean equals(verifyKeyValueRecordTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.records.equals(that.records)) + if (!this.key.equals(that.key)) return false; } - boolean this_present_identifier = true; - boolean that_present_identifier = true; - if (this_present_identifier || that_present_identifier) { - if (!(this_present_identifier && that_present_identifier)) + boolean this_present_value = true && this.isSetValue(); + boolean that_present_value = true && that.isSetValue(); + if (this_present_value || that_present_value) { + if (!(this_present_value && that_present_value)) return false; - if (this.identifier != that.identifier) + if (!this.value.equals(that.value)) + return false; + } + + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -596758,11 +595916,19 @@ public boolean equals(jsonifyRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((identifier) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); + if (isSetValue()) + hashCode = hashCode * 8191 + value.hashCode(); + + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -596780,29 +595946,49 @@ public int hashCode() { } @Override - public int compareTo(jsonifyRecords_args other) { + public int compareTo(verifyKeyValueRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetIdentifier(), other.isSetIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } - if (isSetIdentifier()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.identifier, other.identifier); + if (isSetValue()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, other.value); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -596858,19 +596044,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecordTimestr_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.key); } first = false; if (!first) sb.append(", "); - sb.append("identifier:"); - sb.append(this.identifier); + sb.append("value:"); + if (this.value == null) { + sb.append("null"); + } else { + sb.append(this.value); + } + first = false; + if (!first) sb.append(", "); + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -596903,6 +596105,9 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (value != null) { + value.validate(); + } if (creds != null) { creds.validate(); } @@ -596929,17 +596134,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class jsonifyRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecords_argsStandardScheme getScheme() { - return new jsonifyRecords_argsStandardScheme(); + public verifyKeyValueRecordTimestr_argsStandardScheme getScheme() { + return new verifyKeyValueRecordTimestr_argsStandardScheme(); } } - private static class jsonifyRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyKeyValueRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -596949,33 +596154,40 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_args break; } switch (schemeField.id) { - case 1: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list6478 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list6478.size); - long _elem6479; - for (int _i6480 = 0; _i6480 < _list6478.size; ++_i6480) - { - _elem6479 = iprot.readI64(); - struct.records.add(_elem6479); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // IDENTIFIER - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.identifier = iprot.readBool(); - struct.setIdentifierIsSet(true); + case 2: // VALUE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.value = new com.cinchapi.concourse.thrift.TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -596984,7 +596196,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -596993,7 +596205,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -597013,25 +596225,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter6481 : struct.records) - { - oprot.writeI64(_iter6481); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(IDENTIFIER_FIELD_DESC); - oprot.writeBool(struct.identifier); + if (struct.value != null) { + oprot.writeFieldBegin(VALUE_FIELD_DESC); + struct.value.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -597053,46 +596268,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecords_arg } - private static class jsonifyRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecords_argsTupleScheme getScheme() { - return new jsonifyRecords_argsTupleScheme(); + public verifyKeyValueRecordTimestr_argsTupleScheme getScheme() { + return new verifyKeyValueRecordTimestr_argsTupleScheme(); } } - private static class jsonifyRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyKeyValueRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetIdentifier()) { + if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetRecord()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter6482 : struct.records) - { - oprot.writeI64(_iter6482); - } - } + if (struct.isSetTransaction()) { + optionals.set(5); } - if (struct.isSetIdentifier()) { - oprot.writeBool(struct.identifier); + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); + if (struct.isSetKey()) { + oprot.writeString(struct.key); + } + if (struct.isSetValue()) { + struct.value.write(oprot); + } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -597106,37 +596327,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list6483 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list6483.size); - long _elem6484; - for (int _i6485 = 0; _i6485 < _list6483.size; ++_i6485) - { - _elem6484 = iprot.readI64(); - struct.records.add(_elem6484); - } - } - struct.setRecordsIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.identifier = iprot.readBool(); - struct.setIdentifierIsSet(true); + struct.value = new com.cinchapi.concourse.thrift.TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); } if (incoming.get(2)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(3)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -597148,28 +596369,31 @@ private static S scheme(org.apache. } } - public static class jsonifyRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecords_result"); + public static class verifyKeyValueRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyKeyValueRecordTimestr_result"); - 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 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyKeyValueRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyKeyValueRecordTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String success; // required + public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -597193,6 +596417,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -597236,44 +596462,50 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyKeyValueRecordTimestr_result.class, metaDataMap); } - public jsonifyRecords_result() { + public verifyKeyValueRecordTimestr_result() { } - public jsonifyRecords_result( - java.lang.String success, + public verifyKeyValueRecordTimestr_result( + boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; + setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public jsonifyRecords_result(jsonifyRecords_result other) { - if (other.isSetSuccess()) { - this.success = other.success; - } + public verifyKeyValueRecordTimestr_result(verifyKeyValueRecordTimestr_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -597281,46 +596513,49 @@ public jsonifyRecords_result(jsonifyRecords_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public jsonifyRecords_result deepCopy() { - return new jsonifyRecords_result(this); + public verifyKeyValueRecordTimestr_result deepCopy() { + return new verifyKeyValueRecordTimestr_result(this); } @Override public void clear() { - this.success = null; + setSuccessIsSet(false); + this.success = false; this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getSuccess() { + public boolean isSuccess() { return this.success; } - public jsonifyRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String success) { + public verifyKeyValueRecordTimestr_result setSuccess(boolean success) { this.success = success; + setSuccessIsSet(true); return this; } public void unsetSuccess() { - this.success = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return this.success != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); } public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -597328,7 +596563,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public jsonifyRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public verifyKeyValueRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -597353,7 +596588,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public jsonifyRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public verifyKeyValueRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -597374,11 +596609,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public jsonifyRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public verifyKeyValueRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -597398,6 +596633,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public verifyKeyValueRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -597405,7 +596665,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.String)value); + setSuccess((java.lang.Boolean)value); } break; @@ -597429,7 +596689,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -597441,7 +596709,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return getSuccess(); + return isSuccess(); case EX: return getEx(); @@ -597452,6 +596720,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -597472,29 +596743,31 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof jsonifyRecords_result) - return this.equals((jsonifyRecords_result)that); + if (that instanceof verifyKeyValueRecordTimestr_result) + return this.equals((verifyKeyValueRecordTimestr_result)that); return false; } - public boolean equals(jsonifyRecords_result that) { + public boolean equals(verifyKeyValueRecordTimestr_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true && this.isSetSuccess(); - boolean that_present_success = true && that.isSetSuccess(); + boolean this_present_success = true; + boolean that_present_success = true; if (this_present_success || that_present_success) { if (!(this_present_success && that_present_success)) return false; - if (!this.success.equals(that.success)) + if (this.success != that.success) return false; } @@ -597525,6 +596798,15 @@ public boolean equals(jsonifyRecords_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -597532,9 +596814,7 @@ public boolean equals(jsonifyRecords_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -597548,11 +596828,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(jsonifyRecords_result other) { + public int compareTo(verifyKeyValueRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -597599,6 +596883,16 @@ public int compareTo(jsonifyRecords_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -597619,15 +596913,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyKeyValueRecordTimestr_result("); boolean first = true; sb.append("success:"); - if (this.success == null) { - sb.append("null"); - } else { - sb.append(this.success); - } + sb.append(this.success); first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -597653,6 +596943,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -597672,23 +596970,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 jsonifyRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecords_resultStandardScheme getScheme() { - return new jsonifyRecords_resultStandardScheme(); + public verifyKeyValueRecordTimestr_resultStandardScheme getScheme() { + return new verifyKeyValueRecordTimestr_resultStandardScheme(); } } - private static class jsonifyRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyKeyValueRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyKeyValueRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -597699,8 +596999,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_resu } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.success = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -597726,13 +597026,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_resu break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -597745,13 +597054,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_resu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyKeyValueRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { + if (struct.isSetSuccess()) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeString(struct.success); + oprot.writeBool(struct.success); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -597769,23 +597078,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecords_res struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class jsonifyRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyKeyValueRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecords_resultTupleScheme getScheme() { - return new jsonifyRecords_resultTupleScheme(); + public verifyKeyValueRecordTimestr_resultTupleScheme getScheme() { + return new verifyKeyValueRecordTimestr_resultTupleScheme(); } } - private static class jsonifyRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyKeyValueRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -597800,9 +597114,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_resu if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - oprot.writeString(struct.success); + oprot.writeBool(struct.success); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -597813,14 +597130,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_resu if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyKeyValueRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.success = iprot.readString(); + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -597834,10 +597154,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_resul struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -597846,21 +597171,19 @@ private static S scheme(org.apache. } } - public static class jsonifyRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecordsTime_args"); + public static class jsonifyRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecords_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField IDENTIFIER_FIELD_DESC = new org.apache.thrift.protocol.TField("identifier", org.apache.thrift.protocol.TType.BOOL, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField IDENTIFIER_FIELD_DESC = new org.apache.thrift.protocol.TField("identifier", org.apache.thrift.protocol.TType.BOOL, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecords_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required public boolean identifier; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required @@ -597869,11 +597192,10 @@ public static class jsonifyRecordsTime_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -597891,15 +597213,13 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // RECORDS return RECORDS; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // IDENTIFIER + case 2: // IDENTIFIER return IDENTIFIER; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -597944,8 +597264,7 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private static final int __IDENTIFIER_ISSET_ID = 1; + private static final int __IDENTIFIER_ISSET_ID = 0; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -597953,8 +597272,6 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.IDENTIFIER, new org.apache.thrift.meta_data.FieldMetaData("identifier", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -597964,15 +597281,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecords_args.class, metaDataMap); } - public jsonifyRecordsTime_args() { + public jsonifyRecords_args() { } - public jsonifyRecordsTime_args( + public jsonifyRecords_args( java.util.List records, - long timestamp, boolean identifier, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, @@ -597980,8 +597296,6 @@ public jsonifyRecordsTime_args( { this(); this.records = records; - this.timestamp = timestamp; - setTimestampIsSet(true); this.identifier = identifier; setIdentifierIsSet(true); this.creds = creds; @@ -597992,13 +597306,12 @@ public jsonifyRecordsTime_args( /** * Performs a deep copy on other. */ - public jsonifyRecordsTime_args(jsonifyRecordsTime_args other) { + public jsonifyRecords_args(jsonifyRecords_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - this.timestamp = other.timestamp; this.identifier = other.identifier; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -598012,15 +597325,13 @@ public jsonifyRecordsTime_args(jsonifyRecordsTime_args other) { } @Override - public jsonifyRecordsTime_args deepCopy() { - return new jsonifyRecordsTime_args(this); + public jsonifyRecords_args deepCopy() { + return new jsonifyRecords_args(this); } @Override public void clear() { this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; setIdentifierIsSet(false); this.identifier = false; this.creds = null; @@ -598049,7 +597360,7 @@ public java.util.List getRecords() { return this.records; } - public jsonifyRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public jsonifyRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -598069,34 +597380,11 @@ public void setRecordsIsSet(boolean value) { } } - public long getTimestamp() { - return this.timestamp; - } - - public jsonifyRecordsTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - public boolean isIdentifier() { return this.identifier; } - public jsonifyRecordsTime_args setIdentifier(boolean identifier) { + public jsonifyRecords_args setIdentifier(boolean identifier) { this.identifier = identifier; setIdentifierIsSet(true); return this; @@ -598120,7 +597408,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public jsonifyRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public jsonifyRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -598145,7 +597433,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public jsonifyRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public jsonifyRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -598170,7 +597458,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public jsonifyRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public jsonifyRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -598201,14 +597489,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); - } - break; - case IDENTIFIER: if (value == null) { unsetIdentifier(); @@ -598251,9 +597531,6 @@ public java.lang.Object getFieldValue(_Fields field) { case RECORDS: return getRecords(); - case TIMESTAMP: - return getTimestamp(); - case IDENTIFIER: return isIdentifier(); @@ -598280,8 +597557,6 @@ public boolean isSet(_Fields field) { switch (field) { case RECORDS: return isSetRecords(); - case TIMESTAMP: - return isSetTimestamp(); case IDENTIFIER: return isSetIdentifier(); case CREDS: @@ -598296,12 +597571,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof jsonifyRecordsTime_args) - return this.equals((jsonifyRecordsTime_args)that); + if (that instanceof jsonifyRecords_args) + return this.equals((jsonifyRecords_args)that); return false; } - public boolean equals(jsonifyRecordsTime_args that) { + public boolean equals(jsonifyRecords_args that) { if (that == null) return false; if (this == that) @@ -598316,15 +597591,6 @@ public boolean equals(jsonifyRecordsTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) - return false; - if (this.timestamp != that.timestamp) - return false; - } - boolean this_present_identifier = true; boolean that_present_identifier = true; if (this_present_identifier || that_present_identifier) { @@ -598372,8 +597638,6 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((identifier) ? 131071 : 524287); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); @@ -598392,7 +597656,7 @@ public int hashCode() { } @Override - public int compareTo(jsonifyRecordsTime_args other) { + public int compareTo(jsonifyRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -598409,16 +597673,6 @@ public int compareTo(jsonifyRecordsTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetIdentifier(), other.isSetIdentifier()); if (lastComparison != 0) { return lastComparison; @@ -598480,7 +597734,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecords_args("); boolean first = true; sb.append("records:"); @@ -598491,10 +597745,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("identifier:"); sb.append(this.identifier); first = false; @@ -598555,17 +597805,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class jsonifyRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecordsTime_argsStandardScheme getScheme() { - return new jsonifyRecordsTime_argsStandardScheme(); + public jsonifyRecords_argsStandardScheme getScheme() { + return new jsonifyRecords_argsStandardScheme(); } } - private static class jsonifyRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class jsonifyRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -598578,13 +597828,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_ case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6486 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list6486.size); - long _elem6487; - for (int _i6488 = 0; _i6488 < _list6486.size; ++_i6488) + org.apache.thrift.protocol.TList _list6478 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list6478.size); + long _elem6479; + for (int _i6480 = 0; _i6480 < _list6478.size; ++_i6480) { - _elem6487 = iprot.readI64(); - struct.records.add(_elem6487); + _elem6479 = iprot.readI64(); + struct.records.add(_elem6479); } iprot.readListEnd(); } @@ -598593,15 +597843,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // IDENTIFIER + case 2: // IDENTIFIER if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { struct.identifier = iprot.readBool(); struct.setIdentifierIsSet(true); @@ -598609,7 +597851,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -598618,7 +597860,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -598627,7 +597869,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -598647,7 +597889,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -598655,17 +597897,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter6489 : struct.records) + for (long _iter6481 : struct.records) { - oprot.writeI64(_iter6489); + oprot.writeI64(_iter6481); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); oprot.writeFieldBegin(IDENTIFIER_FIELD_DESC); oprot.writeBool(struct.identifier); oprot.writeFieldEnd(); @@ -598690,50 +597929,44 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime } - private static class jsonifyRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecordsTime_argsTupleScheme getScheme() { - return new jsonifyRecordsTime_argsTupleScheme(); + public jsonifyRecords_argsTupleScheme getScheme() { + return new jsonifyRecords_argsTupleScheme(); } } - private static class jsonifyRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class jsonifyRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetTimestamp()) { - optionals.set(1); - } if (struct.isSetIdentifier()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter6490 : struct.records) + for (long _iter6482 : struct.records) { - oprot.writeI64(_iter6490); + oprot.writeI64(_iter6482); } } } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetIdentifier()) { oprot.writeBool(struct.identifier); } @@ -598749,41 +597982,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6491 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list6491.size); - long _elem6492; - for (int _i6493 = 0; _i6493 < _list6491.size; ++_i6493) + org.apache.thrift.protocol.TList _list6483 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list6483.size); + long _elem6484; + for (int _i6485 = 0; _i6485 < _list6483.size; ++_i6485) { - _elem6492 = iprot.readI64(); - struct.records.add(_elem6492); + _elem6484 = iprot.readI64(); + struct.records.add(_elem6484); } } struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(2)) { struct.identifier = iprot.readBool(); struct.setIdentifierIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -598795,16 +598024,16 @@ private static S scheme(org.apache. } } - public static class jsonifyRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecordsTime_result"); + public static class jsonifyRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecords_result"); 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecords_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -598895,13 +598124,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecords_result.class, metaDataMap); } - public jsonifyRecordsTime_result() { + public jsonifyRecords_result() { } - public jsonifyRecordsTime_result( + public jsonifyRecords_result( java.lang.String success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -598917,7 +598146,7 @@ public jsonifyRecordsTime_result( /** * Performs a deep copy on other. */ - public jsonifyRecordsTime_result(jsonifyRecordsTime_result other) { + public jsonifyRecords_result(jsonifyRecords_result other) { if (other.isSetSuccess()) { this.success = other.success; } @@ -598933,8 +598162,8 @@ public jsonifyRecordsTime_result(jsonifyRecordsTime_result other) { } @Override - public jsonifyRecordsTime_result deepCopy() { - return new jsonifyRecordsTime_result(this); + public jsonifyRecords_result deepCopy() { + return new jsonifyRecords_result(this); } @Override @@ -598950,7 +598179,7 @@ public java.lang.String getSuccess() { return this.success; } - public jsonifyRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String success) { + public jsonifyRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String success) { this.success = success; return this; } @@ -598975,7 +598204,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public jsonifyRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public jsonifyRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -599000,7 +598229,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public jsonifyRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public jsonifyRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -599025,7 +598254,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public jsonifyRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public jsonifyRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -599125,12 +598354,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof jsonifyRecordsTime_result) - return this.equals((jsonifyRecordsTime_result)that); + if (that instanceof jsonifyRecords_result) + return this.equals((jsonifyRecords_result)that); return false; } - public boolean equals(jsonifyRecordsTime_result that) { + public boolean equals(jsonifyRecords_result that) { if (that == null) return false; if (this == that) @@ -599199,7 +598428,7 @@ public int hashCode() { } @Override - public int compareTo(jsonifyRecordsTime_result other) { + public int compareTo(jsonifyRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -599266,7 +598495,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecords_result("); boolean first = true; sb.append("success:"); @@ -599325,17 +598554,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class jsonifyRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecordsTime_resultStandardScheme getScheme() { - return new jsonifyRecordsTime_resultStandardScheme(); + public jsonifyRecords_resultStandardScheme getScheme() { + return new jsonifyRecords_resultStandardScheme(); } } - private static class jsonifyRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class jsonifyRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -599392,7 +598621,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -599422,17 +598651,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime } - private static class jsonifyRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecordsTime_resultTupleScheme getScheme() { - return new jsonifyRecordsTime_resultTupleScheme(); + public jsonifyRecords_resultTupleScheme getScheme() { + return new jsonifyRecords_resultTupleScheme(); } } - private static class jsonifyRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class jsonifyRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -599463,7 +598692,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { @@ -599493,21 +598722,21 @@ private static S scheme(org.apache. } } - public static class jsonifyRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecordsTimestr_args"); + public static class jsonifyRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecordsTime_args"); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); private static final org.apache.thrift.protocol.TField IDENTIFIER_FIELD_DESC = new org.apache.thrift.protocol.TField("identifier", org.apache.thrift.protocol.TType.BOOL, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public boolean identifier; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required @@ -599591,7 +598820,8 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __IDENTIFIER_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 0; + private static final int __IDENTIFIER_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -599600,7 +598830,7 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.IDENTIFIER, new org.apache.thrift.meta_data.FieldMetaData("identifier", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -599610,15 +598840,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecordsTime_args.class, metaDataMap); } - public jsonifyRecordsTimestr_args() { + public jsonifyRecordsTime_args() { } - public jsonifyRecordsTimestr_args( + public jsonifyRecordsTime_args( java.util.List records, - java.lang.String timestamp, + long timestamp, boolean identifier, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, @@ -599627,6 +598857,7 @@ public jsonifyRecordsTimestr_args( this(); this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); this.identifier = identifier; setIdentifierIsSet(true); this.creds = creds; @@ -599637,15 +598868,13 @@ public jsonifyRecordsTimestr_args( /** * Performs a deep copy on other. */ - public jsonifyRecordsTimestr_args(jsonifyRecordsTimestr_args other) { + public jsonifyRecordsTime_args(jsonifyRecordsTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetRecords()) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; this.identifier = other.identifier; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -599659,14 +598888,15 @@ public jsonifyRecordsTimestr_args(jsonifyRecordsTimestr_args other) { } @Override - public jsonifyRecordsTimestr_args deepCopy() { - return new jsonifyRecordsTimestr_args(this); + public jsonifyRecordsTime_args deepCopy() { + return new jsonifyRecordsTime_args(this); } @Override public void clear() { this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; setIdentifierIsSet(false); this.identifier = false; this.creds = null; @@ -599695,7 +598925,7 @@ public java.util.List getRecords() { return this.records; } - public jsonifyRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public jsonifyRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -599715,36 +598945,34 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public jsonifyRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public jsonifyRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } public boolean isIdentifier() { return this.identifier; } - public jsonifyRecordsTimestr_args setIdentifier(boolean identifier) { + public jsonifyRecordsTime_args setIdentifier(boolean identifier) { this.identifier = identifier; setIdentifierIsSet(true); return this; @@ -599768,7 +598996,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public jsonifyRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public jsonifyRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -599793,7 +599021,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public jsonifyRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public jsonifyRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -599818,7 +599046,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public jsonifyRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public jsonifyRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -599853,7 +599081,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -599944,12 +599172,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof jsonifyRecordsTimestr_args) - return this.equals((jsonifyRecordsTimestr_args)that); + if (that instanceof jsonifyRecordsTime_args) + return this.equals((jsonifyRecordsTime_args)that); return false; } - public boolean equals(jsonifyRecordsTimestr_args that) { + public boolean equals(jsonifyRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -599964,12 +599192,12 @@ public boolean equals(jsonifyRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -600020,9 +599248,7 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((identifier) ? 131071 : 524287); @@ -600042,7 +599268,7 @@ public int hashCode() { } @Override - public int compareTo(jsonifyRecordsTimestr_args other) { + public int compareTo(jsonifyRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -600130,7 +599356,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecordsTime_args("); boolean first = true; sb.append("records:"); @@ -600142,11 +599368,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("identifier:"); @@ -600209,17 +599431,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class jsonifyRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecordsTimestr_argsStandardScheme getScheme() { - return new jsonifyRecordsTimestr_argsStandardScheme(); + public jsonifyRecordsTime_argsStandardScheme getScheme() { + return new jsonifyRecordsTime_argsStandardScheme(); } } - private static class jsonifyRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class jsonifyRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -600232,13 +599454,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimes case 1: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6494 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list6494.size); - long _elem6495; - for (int _i6496 = 0; _i6496 < _list6494.size; ++_i6496) + org.apache.thrift.protocol.TList _list6486 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list6486.size); + long _elem6487; + for (int _i6488 = 0; _i6488 < _list6486.size; ++_i6488) { - _elem6495 = iprot.readI64(); - struct.records.add(_elem6495); + _elem6487 = iprot.readI64(); + struct.records.add(_elem6487); } iprot.readListEnd(); } @@ -600248,8 +599470,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimes } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -600301,7 +599523,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -600309,19 +599531,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter6497 : struct.records) + for (long _iter6489 : struct.records) { - oprot.writeI64(_iter6497); + oprot.writeI64(_iter6489); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); oprot.writeFieldBegin(IDENTIFIER_FIELD_DESC); oprot.writeBool(struct.identifier); oprot.writeFieldEnd(); @@ -600346,17 +599566,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime } - private static class jsonifyRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecordsTimestr_argsTupleScheme getScheme() { - return new jsonifyRecordsTimestr_argsTupleScheme(); + public jsonifyRecordsTime_argsTupleScheme getScheme() { + return new jsonifyRecordsTime_argsTupleScheme(); } } - private static class jsonifyRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class jsonifyRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetRecords()) { @@ -600381,14 +599601,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimes if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter6498 : struct.records) + for (long _iter6490 : struct.records) { - oprot.writeI64(_iter6498); + oprot.writeI64(_iter6490); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetIdentifier()) { oprot.writeBool(struct.identifier); @@ -600405,24 +599625,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimes } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6499 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list6499.size); - long _elem6500; - for (int _i6501 = 0; _i6501 < _list6499.size; ++_i6501) + org.apache.thrift.protocol.TList _list6491 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list6491.size); + long _elem6492; + for (int _i6493 = 0; _i6493 < _list6491.size; ++_i6493) { - _elem6500 = iprot.readI64(); - struct.records.add(_elem6500); + _elem6492 = iprot.readI64(); + struct.records.add(_elem6492); } } struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -600451,31 +599671,28 @@ private static S scheme(org.apache. } } - public static class jsonifyRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecordsTimestr_result"); + public static class jsonifyRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecordsTime_result"); 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -600499,8 +599716,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -600554,35 +599769,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecordsTime_result.class, metaDataMap); } - public jsonifyRecordsTimestr_result() { + public jsonifyRecordsTime_result() { } - public jsonifyRecordsTimestr_result( + public jsonifyRecordsTime_result( java.lang.String success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public jsonifyRecordsTimestr_result(jsonifyRecordsTimestr_result other) { + public jsonifyRecordsTime_result(jsonifyRecordsTime_result other) { if (other.isSetSuccess()) { this.success = other.success; } @@ -600593,16 +599804,13 @@ public jsonifyRecordsTimestr_result(jsonifyRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public jsonifyRecordsTimestr_result deepCopy() { - return new jsonifyRecordsTimestr_result(this); + public jsonifyRecordsTime_result deepCopy() { + return new jsonifyRecordsTime_result(this); } @Override @@ -600611,7 +599819,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -600619,7 +599826,7 @@ public java.lang.String getSuccess() { return this.success; } - public jsonifyRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String success) { + public jsonifyRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String success) { this.success = success; return this; } @@ -600644,7 +599851,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public jsonifyRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public jsonifyRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -600669,7 +599876,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public jsonifyRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public jsonifyRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -600690,11 +599897,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public jsonifyRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public jsonifyRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -600714,31 +599921,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public jsonifyRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -600770,15 +599952,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -600801,9 +599975,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -600824,20 +599995,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof jsonifyRecordsTimestr_result) - return this.equals((jsonifyRecordsTimestr_result)that); + if (that instanceof jsonifyRecordsTime_result) + return this.equals((jsonifyRecordsTime_result)that); return false; } - public boolean equals(jsonifyRecordsTimestr_result that) { + public boolean equals(jsonifyRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -600879,15 +600048,6 @@ public boolean equals(jsonifyRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -600911,15 +600071,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(jsonifyRecordsTimestr_result other) { + public int compareTo(jsonifyRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -600966,16 +600122,6 @@ public int compareTo(jsonifyRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -600996,7 +600142,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecordsTime_result("); boolean first = true; sb.append("success:"); @@ -601030,14 +600176,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -601063,17 +600201,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class jsonifyRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecordsTimestr_resultStandardScheme getScheme() { - return new jsonifyRecordsTimestr_resultStandardScheme(); + public jsonifyRecordsTime_resultStandardScheme getScheme() { + return new jsonifyRecordsTime_resultStandardScheme(); } } - private static class jsonifyRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class jsonifyRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -601111,22 +600249,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimes break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -601139,7 +600268,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimes } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -601163,28 +600292,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTime struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class jsonifyRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public jsonifyRecordsTimestr_resultTupleScheme getScheme() { - return new jsonifyRecordsTimestr_resultTupleScheme(); + public jsonifyRecordsTime_resultTupleScheme getScheme() { + return new jsonifyRecordsTime_resultTupleScheme(); } } - private static class jsonifyRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class jsonifyRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -601199,10 +600323,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimes if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { oprot.writeString(struct.success); } @@ -601215,15 +600336,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimes if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.success = iprot.readString(); struct.setSuccessIsSet(true); @@ -601239,15 +600357,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimest struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -601256,28 +600369,34 @@ private static S scheme(org.apache. } } - public static class findCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteria_args"); + public static class jsonifyRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecordsTimestr_args"); - private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField IDENTIFIER_FIELD_DESC = new org.apache.thrift.protocol.TField("identifier", org.apache.thrift.protocol.TType.BOOL, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteria_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteria_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecordsTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public boolean identifier; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CRITERIA((short)1, "criteria"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + RECORDS((short)1, "records"), + TIMESTAMP((short)2, "timestamp"), + IDENTIFIER((short)3, "identifier"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -601293,13 +600412,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CRITERIA - return CRITERIA; - case 2: // CREDS + case 1: // RECORDS + return RECORDS; + case 2: // TIMESTAMP + return TIMESTAMP; + case 3: // IDENTIFIER + return IDENTIFIER; + case 4: // CREDS return CREDS; - case 3: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -601344,11 +600467,18 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __IDENTIFIER_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.IDENTIFIER, new org.apache.thrift.meta_data.FieldMetaData("identifier", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -601356,20 +600486,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteria_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecordsTimestr_args.class, metaDataMap); } - public findCriteria_args() { + public jsonifyRecordsTimestr_args() { } - public findCriteria_args( - com.cinchapi.concourse.thrift.TCriteria criteria, + public jsonifyRecordsTimestr_args( + java.util.List records, + java.lang.String timestamp, + boolean identifier, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.criteria = criteria; + this.records = records; + this.timestamp = timestamp; + this.identifier = identifier; + setIdentifierIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -601378,10 +600513,16 @@ public findCriteria_args( /** * Performs a deep copy on other. */ - public findCriteria_args(findCriteria_args other) { - if (other.isSetCriteria()) { - this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + public jsonifyRecordsTimestr_args(jsonifyRecordsTimestr_args other) { + __isset_bitfield = other.__isset_bitfield; + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + this.identifier = other.identifier; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -601394,49 +600535,116 @@ public findCriteria_args(findCriteria_args other) { } @Override - public findCriteria_args deepCopy() { - return new findCriteria_args(this); + public jsonifyRecordsTimestr_args deepCopy() { + return new jsonifyRecordsTimestr_args(this); } @Override public void clear() { - this.criteria = null; + this.records = null; + this.timestamp = null; + setIdentifierIsSet(false); + this.identifier = false; this.creds = null; this.transaction = null; this.environment = null; } + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); + } + @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TCriteria getCriteria() { - return this.criteria; + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); } - public findCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { - this.criteria = criteria; + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public jsonifyRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetCriteria() { - this.criteria = null; + public void unsetRecords() { + this.records = null; } - /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ - public boolean isSetCriteria() { - return this.criteria != null; + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setCriteriaIsSet(boolean value) { + public void setRecordsIsSet(boolean value) { if (!value) { - this.criteria = null; + this.records = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public jsonifyRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; } } + public boolean isIdentifier() { + return this.identifier; + } + + public jsonifyRecordsTimestr_args setIdentifier(boolean identifier) { + this.identifier = identifier; + setIdentifierIsSet(true); + return this; + } + + public void unsetIdentifier() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __IDENTIFIER_ISSET_ID); + } + + /** Returns true if field identifier is set (has been assigned a value) and false otherwise */ + public boolean isSetIdentifier() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __IDENTIFIER_ISSET_ID); + } + + public void setIdentifierIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __IDENTIFIER_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public jsonifyRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -601461,7 +600669,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public jsonifyRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -601486,7 +600694,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public jsonifyRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -601509,11 +600717,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CRITERIA: + case RECORDS: if (value == null) { - unsetCriteria(); + unsetRecords(); } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + setRecords((java.util.List)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + + case IDENTIFIER: + if (value == null) { + unsetIdentifier(); + } else { + setIdentifier((java.lang.Boolean)value); } break; @@ -601548,8 +600772,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CRITERIA: - return getCriteria(); + case RECORDS: + return getRecords(); + + case TIMESTAMP: + return getTimestamp(); + + case IDENTIFIER: + return isIdentifier(); case CREDS: return getCreds(); @@ -601572,8 +600802,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case CRITERIA: - return isSetCriteria(); + case RECORDS: + return isSetRecords(); + case TIMESTAMP: + return isSetTimestamp(); + case IDENTIFIER: + return isSetIdentifier(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -601586,23 +600820,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCriteria_args) - return this.equals((findCriteria_args)that); + if (that instanceof jsonifyRecordsTimestr_args) + return this.equals((jsonifyRecordsTimestr_args)that); return false; } - public boolean equals(findCriteria_args that) { + public boolean equals(jsonifyRecordsTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (!this.criteria.equals(that.criteria)) + if (!this.records.equals(that.records)) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_identifier = true; + boolean that_present_identifier = true; + if (this_present_identifier || that_present_identifier) { + if (!(this_present_identifier && that_present_identifier)) + return false; + if (this.identifier != that.identifier) return false; } @@ -601640,9 +600892,15 @@ public boolean equals(findCriteria_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((identifier) ? 131071 : 524287); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -601660,19 +600918,39 @@ public int hashCode() { } @Override - public int compareTo(findCriteria_args other) { + public int compareTo(jsonifyRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetIdentifier(), other.isSetIdentifier()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetIdentifier()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.identifier, other.identifier); if (lastComparison != 0) { return lastComparison; } @@ -601728,17 +601006,29 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteria_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecordsTimestr_args("); boolean first = true; - sb.append("criteria:"); - if (this.criteria == null) { + sb.append("records:"); + if (this.records == null) { sb.append("null"); } else { - sb.append(this.criteria); + sb.append(this.records); + } + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); } first = false; if (!first) sb.append(", "); + sb.append("identifier:"); + sb.append(this.identifier); + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -601769,9 +601059,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); - } if (creds != null) { creds.validate(); } @@ -601790,23 +601077,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 findCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteria_argsStandardScheme getScheme() { - return new findCriteria_argsStandardScheme(); + public jsonifyRecordsTimestr_argsStandardScheme getScheme() { + return new jsonifyRecordsTimestr_argsStandardScheme(); } } - private static class findCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class jsonifyRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -601816,16 +601105,41 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_args s break; } switch (schemeField.id) { - case 1: // CRITERIA - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list6494 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list6494.size); + long _elem6495; + for (int _i6496 = 0; _i6496 < _list6494.size; ++_i6496) + { + _elem6495 = iprot.readI64(); + struct.records.add(_elem6495); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 2: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // IDENTIFIER + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.identifier = iprot.readBool(); + struct.setIdentifierIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -601834,7 +601148,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -601843,7 +601157,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -601863,15 +601177,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter6497 : struct.records) + { + oprot.writeI64(_iter6497); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + oprot.writeFieldBegin(IDENTIFIER_FIELD_DESC); + oprot.writeBool(struct.identifier); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -601893,34 +601222,52 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteria_args } - private static class findCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteria_argsTupleScheme getScheme() { - return new findCriteria_argsTupleScheme(); + public jsonifyRecordsTimestr_argsTupleScheme getScheme() { + return new jsonifyRecordsTimestr_argsTupleScheme(); } } - private static class findCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class jsonifyRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCriteria_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCriteria()) { + if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetIdentifier()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); + if (struct.isSetTransaction()) { + optionals.set(4); + } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter6498 : struct.records) + { + oprot.writeI64(_iter6498); + } + } + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetIdentifier()) { + oprot.writeBool(struct.identifier); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -601934,25 +601281,41 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteria_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCriteria_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); + { + org.apache.thrift.protocol.TList _list6499 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list6499.size); + long _elem6500; + for (int _i6501 = 0; _i6501 < _list6499.size; ++_i6501) + { + _elem6500 = iprot.readI64(); + struct.records.add(_elem6500); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(2)) { + struct.identifier = iprot.readBool(); + struct.setIdentifierIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -601964,28 +601327,31 @@ private static S scheme(org.apache. } } - public static class findCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteria_result"); + public static class jsonifyRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("jsonifyRecordsTimestr_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteria_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteria_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new jsonifyRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new jsonifyRecordsTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Set success; // required + public @org.apache.thrift.annotation.Nullable java.lang.String success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -602009,6 +601375,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -602056,41 +601424,43 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteria_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(jsonifyRecordsTimestr_result.class, metaDataMap); } - public findCriteria_result() { + public jsonifyRecordsTimestr_result() { } - public findCriteria_result( - java.util.Set success, + public jsonifyRecordsTimestr_result( + java.lang.String success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public findCriteria_result(findCriteria_result other) { + public jsonifyRecordsTimestr_result(jsonifyRecordsTimestr_result other) { if (other.isSetSuccess()) { - java.util.Set __this__success = new java.util.LinkedHashSet(other.success); - this.success = __this__success; + this.success = other.success; } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); @@ -602099,13 +601469,16 @@ public findCriteria_result(findCriteria_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public findCriteria_result deepCopy() { - return new findCriteria_result(this); + public jsonifyRecordsTimestr_result deepCopy() { + return new jsonifyRecordsTimestr_result(this); } @Override @@ -602114,30 +601487,15 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - } - - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getSuccessIterator() { - return (this.success == null) ? null : this.success.iterator(); - } - - public void addToSuccess(long elem) { - if (this.success == null) { - this.success = new java.util.LinkedHashSet(); - } - this.success.add(elem); + this.ex4 = null; } @org.apache.thrift.annotation.Nullable - public java.util.Set getSuccess() { + public java.lang.String getSuccess() { return this.success; } - public findCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public jsonifyRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String success) { this.success = success; return this; } @@ -602162,7 +601520,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public jsonifyRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -602187,7 +601545,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public jsonifyRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -602208,11 +601566,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public jsonifyRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -602232,6 +601590,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public jsonifyRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -602239,7 +601622,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Set)value); + setSuccess((java.lang.String)value); } break; @@ -602263,7 +601646,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -602286,6 +601677,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -602306,18 +601700,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCriteria_result) - return this.equals((findCriteria_result)that); + if (that instanceof jsonifyRecordsTimestr_result) + return this.equals((jsonifyRecordsTimestr_result)that); return false; } - public boolean equals(findCriteria_result that) { + public boolean equals(jsonifyRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -602359,6 +601755,15 @@ public boolean equals(findCriteria_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -602382,11 +601787,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(findCriteria_result other) { + public int compareTo(jsonifyRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -602433,6 +601842,16 @@ public int compareTo(findCriteria_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -602453,7 +601872,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteria_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("jsonifyRecordsTimestr_result("); boolean first = true; sb.append("success:"); @@ -602487,6 +601906,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -602512,17 +601939,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteria_resultStandardScheme getScheme() { - return new findCriteria_resultStandardScheme(); + public jsonifyRecordsTimestr_resultStandardScheme getScheme() { + return new jsonifyRecordsTimestr_resultStandardScheme(); } } - private static class findCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class jsonifyRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, jsonifyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -602533,18 +601960,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_result } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.SET) { - { - org.apache.thrift.protocol.TSet _set6502 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6502.size); - long _elem6503; - for (int _i6504 = 0; _i6504 < _set6502.size; ++_i6504) - { - _elem6503 = iprot.readI64(); - struct.success.add(_elem6503); - } - iprot.readSetEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.success = iprot.readString(); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -602570,13 +601987,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -602589,20 +602015,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, jsonifyRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6505 : struct.success) - { - oprot.writeI64(_iter6505); - } - oprot.writeSetEnd(); - } + oprot.writeString(struct.success); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -602620,23 +602039,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteria_resul struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class findCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class jsonifyRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteria_resultTupleScheme getScheme() { - return new findCriteria_resultTupleScheme(); + public jsonifyRecordsTimestr_resultTupleScheme getScheme() { + return new jsonifyRecordsTimestr_resultTupleScheme(); } } - private static class findCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class jsonifyRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCriteria_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -602651,15 +602075,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteria_result if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (long _iter6506 : struct.success) - { - oprot.writeI64(_iter6506); - } - } + oprot.writeString(struct.success); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -602670,23 +602091,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteria_result if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCriteria_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, jsonifyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TSet _set6507 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6507.size); - long _elem6508; - for (int _i6509 = 0; _i6509 < _set6507.size; ++_i6509) - { - _elem6508 = iprot.readI64(); - struct.success.add(_elem6508); - } - } + struct.success = iprot.readString(); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -602700,10 +602115,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findCriteria_result struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -602712,20 +602132,18 @@ private static S scheme(org.apache. } } - public static class findCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaPage_args"); + public static class findCriteria_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteria_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteria_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteria_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -602733,10 +602151,9 @@ public static class findCriteriaPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -602754,13 +602171,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // CRITERIA return CRITERIA; - case 2: // PAGE - return PAGE; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -602810,8 +602225,6 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -602819,22 +602232,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteria_args.class, metaDataMap); } - public findCriteriaPage_args() { + public findCriteria_args() { } - public findCriteriaPage_args( + public findCriteria_args( com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.criteria = criteria; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -602843,13 +602254,10 @@ public findCriteriaPage_args( /** * Performs a deep copy on other. */ - public findCriteriaPage_args(findCriteriaPage_args other) { + public findCriteria_args(findCriteria_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -602862,14 +602270,13 @@ public findCriteriaPage_args(findCriteriaPage_args other) { } @Override - public findCriteriaPage_args deepCopy() { - return new findCriteriaPage_args(this); + public findCriteria_args deepCopy() { + return new findCriteria_args(this); } @Override public void clear() { this.criteria = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -602880,7 +602287,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public findCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public findCriteria_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -602900,37 +602307,12 @@ public void setCriteriaIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findCriteria_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -602955,7 +602337,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findCriteria_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -602980,7 +602362,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findCriteria_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -603011,14 +602393,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -603053,9 +602427,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -603079,8 +602450,6 @@ public boolean isSet(_Fields field) { switch (field) { case CRITERIA: return isSetCriteria(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -603093,12 +602462,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCriteriaPage_args) - return this.equals((findCriteriaPage_args)that); + if (that instanceof findCriteria_args) + return this.equals((findCriteria_args)that); return false; } - public boolean equals(findCriteriaPage_args that) { + public boolean equals(findCriteria_args that) { if (that == null) return false; if (this == that) @@ -603113,15 +602482,6 @@ public boolean equals(findCriteriaPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -603160,10 +602520,6 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -603180,7 +602536,7 @@ public int hashCode() { } @Override - public int compareTo(findCriteriaPage_args other) { + public int compareTo(findCriteria_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -603197,16 +602553,6 @@ public int compareTo(findCriteriaPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -603258,7 +602604,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteria_args("); boolean first = true; sb.append("criteria:"); @@ -603269,14 +602615,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -603310,9 +602648,6 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -603337,17 +602672,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteria_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaPage_argsStandardScheme getScheme() { - return new findCriteriaPage_argsStandardScheme(); + public findCriteria_argsStandardScheme getScheme() { + return new findCriteria_argsStandardScheme(); } } - private static class findCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCriteria_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -603366,16 +602701,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -603384,7 +602710,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -603393,7 +602719,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -603413,7 +602739,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteria_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -603422,11 +602748,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaPage_a struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -603448,41 +602769,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaPage_a } - private static class findCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteria_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaPage_argsTupleScheme getScheme() { - return new findCriteriaPage_argsTupleScheme(); + public findCriteria_argsTupleScheme getScheme() { + return new findCriteria_argsTupleScheme(); } } - private static class findCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCriteria_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetPage()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -603495,30 +602810,25 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCriteria_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); struct.setCriteriaIsSet(true); } if (incoming.get(1)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -603530,16 +602840,16 @@ private static S scheme(org.apache. } } - public static class findCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaPage_result"); + public static class findCriteria_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteria_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteria_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteria_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -603631,13 +602941,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteria_result.class, metaDataMap); } - public findCriteriaPage_result() { + public findCriteria_result() { } - public findCriteriaPage_result( + public findCriteria_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -603653,7 +602963,7 @@ public findCriteriaPage_result( /** * Performs a deep copy on other. */ - public findCriteriaPage_result(findCriteriaPage_result other) { + public findCriteria_result(findCriteria_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -603670,8 +602980,8 @@ public findCriteriaPage_result(findCriteriaPage_result other) { } @Override - public findCriteriaPage_result deepCopy() { - return new findCriteriaPage_result(this); + public findCriteria_result deepCopy() { + return new findCriteria_result(this); } @Override @@ -603703,7 +603013,7 @@ public java.util.Set getSuccess() { return this.success; } - public findCriteriaPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findCriteria_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -603728,7 +603038,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findCriteria_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -603753,7 +603063,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findCriteria_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -603778,7 +603088,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findCriteria_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -603878,12 +603188,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCriteriaPage_result) - return this.equals((findCriteriaPage_result)that); + if (that instanceof findCriteria_result) + return this.equals((findCriteria_result)that); return false; } - public boolean equals(findCriteriaPage_result that) { + public boolean equals(findCriteria_result that) { if (that == null) return false; if (this == that) @@ -603952,7 +603262,7 @@ public int hashCode() { } @Override - public int compareTo(findCriteriaPage_result other) { + public int compareTo(findCriteria_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -604019,7 +603329,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteria_result("); boolean first = true; sb.append("success:"); @@ -604078,17 +603388,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteria_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaPage_resultStandardScheme getScheme() { - return new findCriteriaPage_resultStandardScheme(); + public findCriteria_resultStandardScheme getScheme() { + return new findCriteria_resultStandardScheme(); } } - private static class findCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCriteria_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -604101,13 +603411,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_re case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6510 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6510.size); - long _elem6511; - for (int _i6512 = 0; _i6512 < _set6510.size; ++_i6512) + org.apache.thrift.protocol.TSet _set6502 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6502.size); + long _elem6503; + for (int _i6504 = 0; _i6504 < _set6502.size; ++_i6504) { - _elem6511 = iprot.readI64(); - struct.success.add(_elem6511); + _elem6503 = iprot.readI64(); + struct.success.add(_elem6503); } iprot.readSetEnd(); } @@ -604155,7 +603465,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteria_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -604163,9 +603473,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaPage_r oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6513 : struct.success) + for (long _iter6505 : struct.success) { - oprot.writeI64(_iter6513); + oprot.writeI64(_iter6505); } oprot.writeSetEnd(); } @@ -604192,17 +603502,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaPage_r } - private static class findCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteria_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaPage_resultTupleScheme getScheme() { - return new findCriteriaPage_resultTupleScheme(); + public findCriteria_resultTupleScheme getScheme() { + return new findCriteria_resultTupleScheme(); } } - private static class findCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCriteria_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -604221,9 +603531,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_re if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6514 : struct.success) + for (long _iter6506 : struct.success) { - oprot.writeI64(_iter6514); + oprot.writeI64(_iter6506); } } } @@ -604239,18 +603549,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCriteria_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6515 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6515.size); - long _elem6516; - for (int _i6517 = 0; _i6517 < _set6515.size; ++_i6517) + org.apache.thrift.protocol.TSet _set6507 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6507.size); + long _elem6508; + for (int _i6509 = 0; _i6509 < _set6507.size; ++_i6509) { - _elem6516 = iprot.readI64(); - struct.success.add(_elem6516); + _elem6508 = iprot.readI64(); + struct.success.add(_elem6508); } } struct.setSuccessIsSet(true); @@ -604278,20 +603588,20 @@ private static S scheme(org.apache. } } - public static class findCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaOrder_args"); + public static class findCriteriaPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaPage_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -604299,7 +603609,7 @@ public static class findCriteriaOrder_args implements org.apache.thrift.TBase tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -604385,22 +603695,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaPage_args.class, metaDataMap); } - public findCriteriaOrder_args() { + public findCriteriaPage_args() { } - public findCriteriaOrder_args( + public findCriteriaPage_args( com.cinchapi.concourse.thrift.TCriteria criteria, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.criteria = criteria; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -604409,12 +603719,12 @@ public findCriteriaOrder_args( /** * Performs a deep copy on other. */ - public findCriteriaOrder_args(findCriteriaOrder_args other) { + public findCriteriaPage_args(findCriteriaPage_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -604428,14 +603738,14 @@ public findCriteriaOrder_args(findCriteriaOrder_args other) { } @Override - public findCriteriaOrder_args deepCopy() { - return new findCriteriaOrder_args(this); + public findCriteriaPage_args deepCopy() { + return new findCriteriaPage_args(this); } @Override public void clear() { this.criteria = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -604446,7 +603756,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public findCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public findCriteriaPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -604467,27 +603777,27 @@ public void setCriteriaIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public findCriteriaPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -604496,7 +603806,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findCriteriaPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -604521,7 +603831,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findCriteriaPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -604546,7 +603856,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findCriteriaPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -604577,11 +603887,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -604619,8 +603929,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CRITERIA: return getCriteria(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -604645,8 +603955,8 @@ public boolean isSet(_Fields field) { switch (field) { case CRITERIA: return isSetCriteria(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -604659,12 +603969,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCriteriaOrder_args) - return this.equals((findCriteriaOrder_args)that); + if (that instanceof findCriteriaPage_args) + return this.equals((findCriteriaPage_args)that); return false; } - public boolean equals(findCriteriaOrder_args that) { + public boolean equals(findCriteriaPage_args that) { if (that == null) return false; if (this == that) @@ -604679,12 +603989,12 @@ public boolean equals(findCriteriaOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -604726,9 +604036,9 @@ public int hashCode() { if (isSetCriteria()) hashCode = hashCode * 8191 + criteria.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -604746,7 +604056,7 @@ public int hashCode() { } @Override - public int compareTo(findCriteriaOrder_args other) { + public int compareTo(findCriteriaPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -604763,12 +604073,12 @@ public int compareTo(findCriteriaOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -604824,7 +604134,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaPage_args("); boolean first = true; sb.append("criteria:"); @@ -604835,11 +604145,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -604876,8 +604186,8 @@ public void validate() throws org.apache.thrift.TException { if (criteria != null) { criteria.validate(); } - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -604903,17 +604213,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaOrder_argsStandardScheme getScheme() { - return new findCriteriaOrder_argsStandardScheme(); + public findCriteriaPage_argsStandardScheme getScheme() { + return new findCriteriaPage_argsStandardScheme(); } } - private static class findCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCriteriaPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -604932,11 +604242,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrder_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // ORDER + case 2: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -604979,7 +604289,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrder_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -604988,9 +604298,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrder_ struct.criteria.write(oprot); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -605014,23 +604324,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrder_ } - private static class findCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaOrder_argsTupleScheme getScheme() { - return new findCriteriaOrder_argsTupleScheme(); + public findCriteriaPage_argsTupleScheme getScheme() { + return new findCriteriaPage_argsTupleScheme(); } } - private static class findCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCriteriaPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -605046,8 +604356,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_a if (struct.isSetCriteria()) { struct.criteria.write(oprot); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -605061,7 +604371,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -605070,9 +604380,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_ar struct.setCriteriaIsSet(true); } if (incoming.get(1)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -605096,16 +604406,16 @@ private static S scheme(org.apache. } } - public static class findCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaOrder_result"); + public static class findCriteriaPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -605197,13 +604507,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaPage_result.class, metaDataMap); } - public findCriteriaOrder_result() { + public findCriteriaPage_result() { } - public findCriteriaOrder_result( + public findCriteriaPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -605219,7 +604529,7 @@ public findCriteriaOrder_result( /** * Performs a deep copy on other. */ - public findCriteriaOrder_result(findCriteriaOrder_result other) { + public findCriteriaPage_result(findCriteriaPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -605236,8 +604546,8 @@ public findCriteriaOrder_result(findCriteriaOrder_result other) { } @Override - public findCriteriaOrder_result deepCopy() { - return new findCriteriaOrder_result(this); + public findCriteriaPage_result deepCopy() { + return new findCriteriaPage_result(this); } @Override @@ -605269,7 +604579,7 @@ public java.util.Set getSuccess() { return this.success; } - public findCriteriaOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findCriteriaPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -605294,7 +604604,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findCriteriaPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -605319,7 +604629,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findCriteriaPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -605344,7 +604654,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findCriteriaPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -605444,12 +604754,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCriteriaOrder_result) - return this.equals((findCriteriaOrder_result)that); + if (that instanceof findCriteriaPage_result) + return this.equals((findCriteriaPage_result)that); return false; } - public boolean equals(findCriteriaOrder_result that) { + public boolean equals(findCriteriaPage_result that) { if (that == null) return false; if (this == that) @@ -605518,7 +604828,7 @@ public int hashCode() { } @Override - public int compareTo(findCriteriaOrder_result other) { + public int compareTo(findCriteriaPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -605585,7 +604895,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaPage_result("); boolean first = true; sb.append("success:"); @@ -605644,17 +604954,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaOrder_resultStandardScheme getScheme() { - return new findCriteriaOrder_resultStandardScheme(); + public findCriteriaPage_resultStandardScheme getScheme() { + return new findCriteriaPage_resultStandardScheme(); } } - private static class findCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCriteriaPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -605667,13 +604977,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrder_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6518 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6518.size); - long _elem6519; - for (int _i6520 = 0; _i6520 < _set6518.size; ++_i6520) + org.apache.thrift.protocol.TSet _set6510 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6510.size); + long _elem6511; + for (int _i6512 = 0; _i6512 < _set6510.size; ++_i6512) { - _elem6519 = iprot.readI64(); - struct.success.add(_elem6519); + _elem6511 = iprot.readI64(); + struct.success.add(_elem6511); } iprot.readSetEnd(); } @@ -605721,7 +605031,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrder_r } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -605729,9 +605039,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrder_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6521 : struct.success) + for (long _iter6513 : struct.success) { - oprot.writeI64(_iter6521); + oprot.writeI64(_iter6513); } oprot.writeSetEnd(); } @@ -605758,17 +605068,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrder_ } - private static class findCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaOrder_resultTupleScheme getScheme() { - return new findCriteriaOrder_resultTupleScheme(); + public findCriteriaPage_resultTupleScheme getScheme() { + return new findCriteriaPage_resultTupleScheme(); } } - private static class findCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCriteriaPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -605787,9 +605097,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6522 : struct.success) + for (long _iter6514 : struct.success) { - oprot.writeI64(_iter6522); + oprot.writeI64(_iter6514); } } } @@ -605805,18 +605115,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_r } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6523 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6523.size); - long _elem6524; - for (int _i6525 = 0; _i6525 < _set6523.size; ++_i6525) + org.apache.thrift.protocol.TSet _set6515 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6515.size); + long _elem6516; + for (int _i6517 = 0; _i6517 < _set6515.size; ++_i6517) { - _elem6524 = iprot.readI64(); - struct.success.add(_elem6524); + _elem6516 = iprot.readI64(); + struct.success.add(_elem6516); } } struct.setSuccessIsSet(true); @@ -605844,22 +605154,20 @@ private static S scheme(org.apache. } } - public static class findCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaOrderPage_args"); + public static class findCriteriaOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaOrder_args"); private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -605868,10 +605176,9 @@ public static class findCriteriaOrderPage_args implements org.apache.thrift.TBas public enum _Fields implements org.apache.thrift.TFieldIdEnum { CRITERIA((short)1, "criteria"), ORDER((short)2, "order"), - PAGE((short)3, "page"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -605891,13 +605198,11 @@ public static _Fields findByThriftId(int fieldId) { return CRITERIA; case 2: // ORDER return ORDER; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -605949,8 +605254,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -605958,16 +605261,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaOrder_args.class, metaDataMap); } - public findCriteriaOrderPage_args() { + public findCriteriaOrder_args() { } - public findCriteriaOrderPage_args( + public findCriteriaOrder_args( com.cinchapi.concourse.thrift.TCriteria criteria, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -605975,7 +605277,6 @@ public findCriteriaOrderPage_args( this(); this.criteria = criteria; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -605984,16 +605285,13 @@ public findCriteriaOrderPage_args( /** * Performs a deep copy on other. */ - public findCriteriaOrderPage_args(findCriteriaOrderPage_args other) { + public findCriteriaOrder_args(findCriteriaOrder_args other) { if (other.isSetCriteria()) { this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); } if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -606006,15 +605304,14 @@ public findCriteriaOrderPage_args(findCriteriaOrderPage_args other) { } @Override - public findCriteriaOrderPage_args deepCopy() { - return new findCriteriaOrderPage_args(this); + public findCriteriaOrder_args deepCopy() { + return new findCriteriaOrder_args(this); } @Override public void clear() { this.criteria = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -606025,7 +605322,7 @@ public com.cinchapi.concourse.thrift.TCriteria getCriteria() { return this.criteria; } - public findCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + public findCriteriaOrder_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { this.criteria = criteria; return this; } @@ -606050,7 +605347,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public findCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public findCriteriaOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -606070,37 +605367,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findCriteriaOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -606125,7 +605397,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findCriteriaOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -606150,7 +605422,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findCriteriaOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -606189,14 +605461,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -606234,9 +605498,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -606262,8 +605523,6 @@ public boolean isSet(_Fields field) { return isSetCriteria(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -606276,12 +605535,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCriteriaOrderPage_args) - return this.equals((findCriteriaOrderPage_args)that); + if (that instanceof findCriteriaOrder_args) + return this.equals((findCriteriaOrder_args)that); return false; } - public boolean equals(findCriteriaOrderPage_args that) { + public boolean equals(findCriteriaOrder_args that) { if (that == null) return false; if (this == that) @@ -606305,15 +605564,6 @@ public boolean equals(findCriteriaOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -606356,10 +605606,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -606376,7 +605622,7 @@ public int hashCode() { } @Override - public int compareTo(findCriteriaOrderPage_args other) { + public int compareTo(findCriteriaOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -606403,16 +605649,6 @@ public int compareTo(findCriteriaOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -606464,7 +605700,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaOrder_args("); boolean first = true; sb.append("criteria:"); @@ -606483,14 +605719,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -606527,9 +605755,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -606554,17 +605779,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaOrderPage_argsStandardScheme getScheme() { - return new findCriteriaOrderPage_argsStandardScheme(); + public findCriteriaOrder_argsStandardScheme getScheme() { + return new findCriteriaOrder_argsStandardScheme(); } } - private static class findCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCriteriaOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -606592,16 +605817,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -606610,7 +605826,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -606619,7 +605835,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPa org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -606639,7 +605855,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -606653,11 +605869,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrderP struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -606679,17 +605890,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrderP } - private static class findCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaOrderPage_argsTupleScheme getScheme() { - return new findCriteriaOrderPage_argsTupleScheme(); + public findCriteriaOrder_argsTupleScheme getScheme() { + return new findCriteriaOrder_argsTupleScheme(); } } - private static class findCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCriteriaOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCriteria()) { @@ -606698,28 +605909,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPa if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCriteria()) { struct.criteria.write(oprot); } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -606732,9 +605937,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); struct.criteria.read(iprot); @@ -606746,21 +605951,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPag struct.setOrderIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -606772,16 +605972,16 @@ private static S scheme(org.apache. } } - public static class findCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaOrderPage_result"); + public static class findCriteriaOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -606873,13 +606073,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaOrder_result.class, metaDataMap); } - public findCriteriaOrderPage_result() { + public findCriteriaOrder_result() { } - public findCriteriaOrderPage_result( + public findCriteriaOrder_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -606895,7 +606095,7 @@ public findCriteriaOrderPage_result( /** * Performs a deep copy on other. */ - public findCriteriaOrderPage_result(findCriteriaOrderPage_result other) { + public findCriteriaOrder_result(findCriteriaOrder_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -606912,8 +606112,8 @@ public findCriteriaOrderPage_result(findCriteriaOrderPage_result other) { } @Override - public findCriteriaOrderPage_result deepCopy() { - return new findCriteriaOrderPage_result(this); + public findCriteriaOrder_result deepCopy() { + return new findCriteriaOrder_result(this); } @Override @@ -606945,7 +606145,7 @@ public java.util.Set getSuccess() { return this.success; } - public findCriteriaOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findCriteriaOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -606970,7 +606170,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findCriteriaOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -606995,7 +606195,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findCriteriaOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -607020,7 +606220,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findCriteriaOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -607120,12 +606320,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCriteriaOrderPage_result) - return this.equals((findCriteriaOrderPage_result)that); + if (that instanceof findCriteriaOrder_result) + return this.equals((findCriteriaOrder_result)that); return false; } - public boolean equals(findCriteriaOrderPage_result that) { + public boolean equals(findCriteriaOrder_result that) { if (that == null) return false; if (this == that) @@ -607194,7 +606394,7 @@ public int hashCode() { } @Override - public int compareTo(findCriteriaOrderPage_result other) { + public int compareTo(findCriteriaOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -607261,7 +606461,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaOrder_result("); boolean first = true; sb.append("success:"); @@ -607320,17 +606520,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaOrderPage_resultStandardScheme getScheme() { - return new findCriteriaOrderPage_resultStandardScheme(); + public findCriteriaOrder_resultStandardScheme getScheme() { + return new findCriteriaOrder_resultStandardScheme(); } } - private static class findCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCriteriaOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -607343,13 +606543,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPa case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6526 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6526.size); - long _elem6527; - for (int _i6528 = 0; _i6528 < _set6526.size; ++_i6528) + org.apache.thrift.protocol.TSet _set6518 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6518.size); + long _elem6519; + for (int _i6520 = 0; _i6520 < _set6518.size; ++_i6520) { - _elem6527 = iprot.readI64(); - struct.success.add(_elem6527); + _elem6519 = iprot.readI64(); + struct.success.add(_elem6519); } iprot.readSetEnd(); } @@ -607397,7 +606597,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPa } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -607405,9 +606605,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrderP oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6529 : struct.success) + for (long _iter6521 : struct.success) { - oprot.writeI64(_iter6529); + oprot.writeI64(_iter6521); } oprot.writeSetEnd(); } @@ -607434,17 +606634,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrderP } - private static class findCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCriteriaOrderPage_resultTupleScheme getScheme() { - return new findCriteriaOrderPage_resultTupleScheme(); + public findCriteriaOrder_resultTupleScheme getScheme() { + return new findCriteriaOrder_resultTupleScheme(); } } - private static class findCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCriteriaOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -607463,9 +606663,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPa if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6530 : struct.success) + for (long _iter6522 : struct.success) { - oprot.writeI64(_iter6530); + oprot.writeI64(_iter6522); } } } @@ -607481,18 +606681,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPa } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6531 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6531.size); - long _elem6532; - for (int _i6533 = 0; _i6533 < _set6531.size; ++_i6533) + org.apache.thrift.protocol.TSet _set6523 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6523.size); + long _elem6524; + for (int _i6525 = 0; _i6525 < _set6523.size; ++_i6525) { - _elem6532 = iprot.readI64(); - struct.success.add(_elem6532); + _elem6524 = iprot.readI64(); + struct.success.add(_elem6524); } } struct.setSuccessIsSet(true); @@ -607520,28 +606720,34 @@ private static S scheme(org.apache. } } - public static class findCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCcl_args"); + public static class findCriteriaOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaOrderPage_args"); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField("criteria", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCcl_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCcl_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CCL((short)1, "ccl"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + CRITERIA((short)1, "criteria"), + ORDER((short)2, "order"), + PAGE((short)3, "page"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -607557,13 +606763,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CCL - return CCL; - case 2: // CREDS + case 1: // CRITERIA + return CRITERIA; + case 2: // ORDER + return ORDER; + case 3: // PAGE + return PAGE; + case 4: // CREDS return CREDS; - case 3: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -607611,8 +606821,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CRITERIA, new org.apache.thrift.meta_data.FieldMetaData("criteria", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCriteria.class))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -607620,20 +606834,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCcl_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaOrderPage_args.class, metaDataMap); } - public findCcl_args() { + public findCriteriaOrderPage_args() { } - public findCcl_args( - java.lang.String ccl, + public findCriteriaOrderPage_args( + com.cinchapi.concourse.thrift.TCriteria criteria, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.ccl = ccl; + this.criteria = criteria; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -607642,9 +606860,15 @@ public findCcl_args( /** * Performs a deep copy on other. */ - public findCcl_args(findCcl_args other) { - if (other.isSetCcl()) { - this.ccl = other.ccl; + public findCriteriaOrderPage_args(findCriteriaOrderPage_args other) { + if (other.isSetCriteria()) { + this.criteria = new com.cinchapi.concourse.thrift.TCriteria(other.criteria); + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -607658,40 +606882,92 @@ public findCcl_args(findCcl_args other) { } @Override - public findCcl_args deepCopy() { - return new findCcl_args(this); + public findCriteriaOrderPage_args deepCopy() { + return new findCriteriaOrderPage_args(this); } @Override public void clear() { - this.ccl = null; + this.criteria = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; + public com.cinchapi.concourse.thrift.TCriteria getCriteria() { + return this.criteria; } - public findCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; + public findCriteriaOrderPage_args setCriteria(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCriteria criteria) { + this.criteria = criteria; return this; } - public void unsetCcl() { - this.ccl = null; + public void unsetCriteria() { + this.criteria = null; } - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; + /** Returns true if field criteria is set (has been assigned a value) and false otherwise */ + public boolean isSetCriteria() { + return this.criteria != null; } - public void setCclIsSet(boolean value) { + public void setCriteriaIsSet(boolean value) { if (!value) { - this.ccl = null; + this.criteria = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public findCriteriaOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public findCriteriaOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -607700,7 +606976,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findCriteriaOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -607725,7 +607001,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findCriteriaOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -607750,7 +607026,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findCriteriaOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -607773,11 +607049,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CCL: + case CRITERIA: if (value == null) { - unsetCcl(); + unsetCriteria(); } else { - setCcl((java.lang.String)value); + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -607812,8 +607104,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CCL: - return getCcl(); + case CRITERIA: + return getCriteria(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -607836,8 +607134,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case CCL: - return isSetCcl(); + case CRITERIA: + return isSetCriteria(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -607850,23 +607152,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCcl_args) - return this.equals((findCcl_args)that); + if (that instanceof findCriteriaOrderPage_args) + return this.equals((findCriteriaOrderPage_args)that); return false; } - public boolean equals(findCcl_args that) { + public boolean equals(findCriteriaOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) return false; - if (!this.ccl.equals(that.ccl)) + if (!this.criteria.equals(that.criteria)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -607904,9 +607224,17 @@ public boolean equals(findCcl_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -607924,19 +607252,39 @@ public int hashCode() { } @Override - public int compareTo(findCcl_args other) { + public int compareTo(findCriteriaOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); if (lastComparison != 0) { return lastComparison; } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -607992,14 +607340,30 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCcl_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaOrderPage_args("); boolean first = true; - sb.append("ccl:"); - if (this.ccl == null) { + sb.append("criteria:"); + if (this.criteria == null) { sb.append("null"); } else { - sb.append(this.ccl); + sb.append(this.criteria); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -608033,6 +607397,15 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (criteria != null) { + criteria.validate(); + } + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -608057,17 +607430,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCcl_argsStandardScheme getScheme() { - return new findCcl_argsStandardScheme(); + public findCriteriaOrderPage_argsStandardScheme getScheme() { + return new findCriteriaOrderPage_argsStandardScheme(); } } - private static class findCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCriteriaOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -608077,15 +607450,34 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_args struct break; } switch (schemeField.id) { - case 1: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + case 1: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 2: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -608094,7 +607486,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_args struct org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -608103,7 +607495,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_args struct org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -608123,13 +607515,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_args struct } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -608153,34 +607555,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCcl_args struc } - private static class findCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCcl_argsTupleScheme getScheme() { - return new findCcl_argsTupleScheme(); + public findCriteriaOrderPage_argsTupleScheme getScheme() { + return new findCriteriaOrderPage_argsTupleScheme(); } } - private static class findCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCriteriaOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCcl_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCcl()) { + if (struct.isSetCriteria()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + if (struct.isSetTransaction()) { + optionals.set(4); + } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -608194,24 +607608,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCcl_args struct } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCcl_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); } if (incoming.get(1)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(2)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -608223,31 +607648,28 @@ private static S scheme(org.apache. } } - public static class findCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCcl_result"); + public static class findCriteriaOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCriteriaOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCcl_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCcl_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCriteriaOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCriteriaOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -608271,8 +607693,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -608327,35 +607747,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCcl_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCriteriaOrderPage_result.class, metaDataMap); } - public findCcl_result() { + public findCriteriaOrderPage_result() { } - public findCcl_result( + public findCriteriaOrderPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public findCcl_result(findCcl_result other) { + public findCriteriaOrderPage_result(findCriteriaOrderPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -608367,16 +607783,13 @@ public findCcl_result(findCcl_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public findCcl_result deepCopy() { - return new findCcl_result(this); + public findCriteriaOrderPage_result deepCopy() { + return new findCriteriaOrderPage_result(this); } @Override @@ -608385,7 +607798,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -608409,7 +607821,7 @@ public java.util.Set getSuccess() { return this.success; } - public findCcl_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findCriteriaOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -608434,7 +607846,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findCriteriaOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -608459,7 +607871,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findCriteriaOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -608480,11 +607892,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findCriteriaOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -608504,31 +607916,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public findCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -608560,15 +607947,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -608591,9 +607970,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -608614,20 +607990,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCcl_result) - return this.equals((findCcl_result)that); + if (that instanceof findCriteriaOrderPage_result) + return this.equals((findCriteriaOrderPage_result)that); return false; } - public boolean equals(findCcl_result that) { + public boolean equals(findCriteriaOrderPage_result that) { if (that == null) return false; if (this == that) @@ -608669,15 +608043,6 @@ public boolean equals(findCcl_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -608701,15 +608066,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(findCcl_result other) { + public int compareTo(findCriteriaOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -608756,16 +608117,6 @@ public int compareTo(findCcl_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -608786,7 +608137,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCcl_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCriteriaOrderPage_result("); boolean first = true; sb.append("success:"); @@ -608820,14 +608171,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -608853,17 +608196,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCcl_resultStandardScheme getScheme() { - return new findCcl_resultStandardScheme(); + public findCriteriaOrderPage_resultStandardScheme getScheme() { + return new findCriteriaOrderPage_resultStandardScheme(); } } - private static class findCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCriteriaOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -608876,13 +608219,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_result stru case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6534 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6534.size); - long _elem6535; - for (int _i6536 = 0; _i6536 < _set6534.size; ++_i6536) + org.apache.thrift.protocol.TSet _set6526 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6526.size); + long _elem6527; + for (int _i6528 = 0; _i6528 < _set6526.size; ++_i6528) { - _elem6535 = iprot.readI64(); - struct.success.add(_elem6535); + _elem6527 = iprot.readI64(); + struct.success.add(_elem6527); } iprot.readSetEnd(); } @@ -608911,22 +608254,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_result stru break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -608939,7 +608273,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_result stru } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCriteriaOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -608947,9 +608281,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCcl_result str oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6537 : struct.success) + for (long _iter6529 : struct.success) { - oprot.writeI64(_iter6537); + oprot.writeI64(_iter6529); } oprot.writeSetEnd(); } @@ -608970,28 +608304,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCcl_result str struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class findCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCriteriaOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCcl_resultTupleScheme getScheme() { - return new findCcl_resultTupleScheme(); + public findCriteriaOrderPage_resultTupleScheme getScheme() { + return new findCriteriaOrderPage_resultTupleScheme(); } } - private static class findCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCriteriaOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCcl_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -609006,16 +608335,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCcl_result stru if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6538 : struct.success) + for (long _iter6530 : struct.success) { - oprot.writeI64(_iter6538); + oprot.writeI64(_iter6530); } } } @@ -609028,24 +608354,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCcl_result stru if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCcl_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCriteriaOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6539 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6539.size); - long _elem6540; - for (int _i6541 = 0; _i6541 < _set6539.size; ++_i6541) + org.apache.thrift.protocol.TSet _set6531 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6531.size); + long _elem6532; + for (int _i6533 = 0; _i6533 < _set6531.size; ++_i6533) { - _elem6540 = iprot.readI64(); - struct.success.add(_elem6540); + _elem6532 = iprot.readI64(); + struct.success.add(_elem6532); } } struct.setSuccessIsSet(true); @@ -609061,15 +608384,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findCcl_result struc struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -609078,20 +608396,18 @@ private static S scheme(org.apache. } } - public static class findCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclPage_args"); + public static class findCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCcl_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCclPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCclPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCcl_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCcl_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -609099,10 +608415,9 @@ public static class findCclPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -609120,13 +608435,11 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // CCL return CCL; - case 2: // PAGE - return PAGE; - case 3: // CREDS + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -609176,8 +608489,6 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -609185,22 +608496,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCcl_args.class, metaDataMap); } - public findCclPage_args() { + public findCcl_args() { } - public findCclPage_args( + public findCcl_args( java.lang.String ccl, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.ccl = ccl; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -609209,13 +608518,10 @@ public findCclPage_args( /** * Performs a deep copy on other. */ - public findCclPage_args(findCclPage_args other) { + public findCcl_args(findCcl_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -609228,14 +608534,13 @@ public findCclPage_args(findCclPage_args other) { } @Override - public findCclPage_args deepCopy() { - return new findCclPage_args(this); + public findCcl_args deepCopy() { + return new findCcl_args(this); } @Override public void clear() { this.ccl = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -609246,7 +608551,7 @@ public java.lang.String getCcl() { return this.ccl; } - public findCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public findCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -609266,37 +608571,12 @@ public void setCclIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -609321,7 +608601,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -609346,7 +608626,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -609377,14 +608657,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -609419,9 +608691,6 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -609445,8 +608714,6 @@ public boolean isSet(_Fields field) { switch (field) { case CCL: return isSetCcl(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -609459,12 +608726,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCclPage_args) - return this.equals((findCclPage_args)that); + if (that instanceof findCcl_args) + return this.equals((findCcl_args)that); return false; } - public boolean equals(findCclPage_args that) { + public boolean equals(findCcl_args that) { if (that == null) return false; if (this == that) @@ -609479,15 +608746,6 @@ public boolean equals(findCclPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -609526,10 +608784,6 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -609546,7 +608800,7 @@ public int hashCode() { } @Override - public int compareTo(findCclPage_args other) { + public int compareTo(findCcl_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -609563,16 +608817,6 @@ public int compareTo(findCclPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -609624,7 +608868,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCcl_args("); boolean first = true; sb.append("ccl:"); @@ -609635,14 +608879,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -609673,9 +608909,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -609700,17 +608933,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclPage_argsStandardScheme getScheme() { - return new findCclPage_argsStandardScheme(); + public findCcl_argsStandardScheme getScheme() { + return new findCcl_argsStandardScheme(); } } - private static class findCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -609728,16 +608961,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -609746,7 +608970,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -609755,7 +608979,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -609775,7 +608999,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCcl_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -609784,11 +609008,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclPage_args s oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -609810,41 +609029,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclPage_args s } - private static class findCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclPage_argsTupleScheme getScheme() { - return new findCclPage_argsTupleScheme(); + public findCcl_argsTupleScheme getScheme() { + return new findCcl_argsTupleScheme(); } } - private static class findCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCclPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { optionals.set(0); } - if (struct.isSetPage()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -609857,29 +609070,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclPage_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCclPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); } if (incoming.get(1)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -609891,8 +609099,8 @@ private static S scheme(org.apache. } } - public static class findCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclPage_result"); + public static class findCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCcl_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -609900,8 +609108,8 @@ public static class findCclPage_result implements org.apache.thrift.TBase success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -609999,13 +609207,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCcl_result.class, metaDataMap); } - public findCclPage_result() { + public findCcl_result() { } - public findCclPage_result( + public findCcl_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -610023,7 +609231,7 @@ public findCclPage_result( /** * Performs a deep copy on other. */ - public findCclPage_result(findCclPage_result other) { + public findCcl_result(findCcl_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -610043,8 +609251,8 @@ public findCclPage_result(findCclPage_result other) { } @Override - public findCclPage_result deepCopy() { - return new findCclPage_result(this); + public findCcl_result deepCopy() { + return new findCcl_result(this); } @Override @@ -610077,7 +609285,7 @@ public java.util.Set getSuccess() { return this.success; } - public findCclPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findCcl_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -610102,7 +609310,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -610127,7 +609335,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -610152,7 +609360,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -610177,7 +609385,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -610290,12 +609498,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCclPage_result) - return this.equals((findCclPage_result)that); + if (that instanceof findCcl_result) + return this.equals((findCcl_result)that); return false; } - public boolean equals(findCclPage_result that) { + public boolean equals(findCcl_result that) { if (that == null) return false; if (this == that) @@ -610377,7 +609585,7 @@ public int hashCode() { } @Override - public int compareTo(findCclPage_result other) { + public int compareTo(findCcl_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -610454,7 +609662,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCcl_result("); boolean first = true; sb.append("success:"); @@ -610521,17 +609729,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclPage_resultStandardScheme getScheme() { - return new findCclPage_resultStandardScheme(); + public findCcl_resultStandardScheme getScheme() { + return new findCcl_resultStandardScheme(); } } - private static class findCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -610544,13 +609752,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6542 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6542.size); - long _elem6543; - for (int _i6544 = 0; _i6544 < _set6542.size; ++_i6544) + org.apache.thrift.protocol.TSet _set6534 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6534.size); + long _elem6535; + for (int _i6536 = 0; _i6536 < _set6534.size; ++_i6536) { - _elem6543 = iprot.readI64(); - struct.success.add(_elem6543); + _elem6535 = iprot.readI64(); + struct.success.add(_elem6535); } iprot.readSetEnd(); } @@ -610607,7 +609815,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCcl_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -610615,9 +609823,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclPage_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6545 : struct.success) + for (long _iter6537 : struct.success) { - oprot.writeI64(_iter6545); + oprot.writeI64(_iter6537); } oprot.writeSetEnd(); } @@ -610649,17 +609857,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclPage_result } - private static class findCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclPage_resultTupleScheme getScheme() { - return new findCclPage_resultTupleScheme(); + public findCcl_resultTupleScheme getScheme() { + return new findCcl_resultTupleScheme(); } } - private static class findCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCclPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -610681,9 +609889,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclPage_result if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6546 : struct.success) + for (long _iter6538 : struct.success) { - oprot.writeI64(_iter6546); + oprot.writeI64(_iter6538); } } } @@ -610702,18 +609910,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclPage_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCclPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6547 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6547.size); - long _elem6548; - for (int _i6549 = 0; _i6549 < _set6547.size; ++_i6549) + org.apache.thrift.protocol.TSet _set6539 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6539.size); + long _elem6540; + for (int _i6541 = 0; _i6541 < _set6539.size; ++_i6541) { - _elem6548 = iprot.readI64(); - struct.success.add(_elem6548); + _elem6540 = iprot.readI64(); + struct.success.add(_elem6540); } } struct.setSuccessIsSet(true); @@ -610746,20 +609954,20 @@ private static S scheme(org.apache. } } - public static class findCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclOrder_args"); + public static class findCclPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclPage_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCclOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCclOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCclPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCclPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -610767,7 +609975,7 @@ public static class findCclOrder_args implements org.apache.thrift.TBase tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -610853,22 +610061,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclPage_args.class, metaDataMap); } - public findCclOrder_args() { + public findCclPage_args() { } - public findCclOrder_args( + public findCclPage_args( java.lang.String ccl, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.ccl = ccl; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -610877,12 +610085,12 @@ public findCclOrder_args( /** * Performs a deep copy on other. */ - public findCclOrder_args(findCclOrder_args other) { + public findCclPage_args(findCclPage_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -610896,14 +610104,14 @@ public findCclOrder_args(findCclOrder_args other) { } @Override - public findCclOrder_args deepCopy() { - return new findCclOrder_args(this); + public findCclPage_args deepCopy() { + return new findCclPage_args(this); } @Override public void clear() { this.ccl = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -610914,7 +610122,7 @@ public java.lang.String getCcl() { return this.ccl; } - public findCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public findCclPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -610935,27 +610143,27 @@ public void setCclIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public findCclPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -610964,7 +610172,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findCclPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -610989,7 +610197,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findCclPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -611014,7 +610222,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findCclPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -611045,11 +610253,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -611087,8 +610295,8 @@ public java.lang.Object getFieldValue(_Fields field) { case CCL: return getCcl(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -611113,8 +610321,8 @@ public boolean isSet(_Fields field) { switch (field) { case CCL: return isSetCcl(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -611127,12 +610335,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCclOrder_args) - return this.equals((findCclOrder_args)that); + if (that instanceof findCclPage_args) + return this.equals((findCclPage_args)that); return false; } - public boolean equals(findCclOrder_args that) { + public boolean equals(findCclPage_args that) { if (that == null) return false; if (this == that) @@ -611147,12 +610355,12 @@ public boolean equals(findCclOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -611194,9 +610402,9 @@ public int hashCode() { if (isSetCcl()) hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -611214,7 +610422,7 @@ public int hashCode() { } @Override - public int compareTo(findCclOrder_args other) { + public int compareTo(findCclPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -611231,12 +610439,12 @@ public int compareTo(findCclOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -611292,7 +610500,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclPage_args("); boolean first = true; sb.append("ccl:"); @@ -611303,11 +610511,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -611341,8 +610549,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -611368,17 +610576,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclOrder_argsStandardScheme getScheme() { - return new findCclOrder_argsStandardScheme(); + public findCclPage_argsStandardScheme getScheme() { + return new findCclPage_argsStandardScheme(); } } - private static class findCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCclPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -611396,11 +610604,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrder_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // ORDER + case 2: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -611443,7 +610651,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrder_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCclPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -611452,9 +610660,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrder_args oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -611478,23 +610686,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrder_args } - private static class findCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclOrder_argsTupleScheme getScheme() { - return new findCclOrder_argsTupleScheme(); + public findCclPage_argsTupleScheme getScheme() { + return new findCclPage_argsTupleScheme(); } } - private static class findCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCclPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { optionals.set(0); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(1); } if (struct.isSetCreds()) { @@ -611510,8 +610718,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrder_args s if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -611525,7 +610733,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrder_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCclPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { @@ -611533,9 +610741,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrder_args st struct.setCclIsSet(true); } if (incoming.get(1)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -611559,8 +610767,8 @@ private static S scheme(org.apache. } } - public static class findCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclOrder_result"); + public static class findCclPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -611568,8 +610776,8 @@ public static class findCclOrder_result implements org.apache.thrift.TBase success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -611667,13 +610875,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclPage_result.class, metaDataMap); } - public findCclOrder_result() { + public findCclPage_result() { } - public findCclOrder_result( + public findCclPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -611691,7 +610899,7 @@ public findCclOrder_result( /** * Performs a deep copy on other. */ - public findCclOrder_result(findCclOrder_result other) { + public findCclPage_result(findCclPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -611711,8 +610919,8 @@ public findCclOrder_result(findCclOrder_result other) { } @Override - public findCclOrder_result deepCopy() { - return new findCclOrder_result(this); + public findCclPage_result deepCopy() { + return new findCclPage_result(this); } @Override @@ -611745,7 +610953,7 @@ public java.util.Set getSuccess() { return this.success; } - public findCclOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findCclPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -611770,7 +610978,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findCclPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -611795,7 +611003,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findCclPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -611820,7 +611028,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findCclPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -611845,7 +611053,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findCclPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -611958,12 +611166,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCclOrder_result) - return this.equals((findCclOrder_result)that); + if (that instanceof findCclPage_result) + return this.equals((findCclPage_result)that); return false; } - public boolean equals(findCclOrder_result that) { + public boolean equals(findCclPage_result that) { if (that == null) return false; if (this == that) @@ -612045,7 +611253,7 @@ public int hashCode() { } @Override - public int compareTo(findCclOrder_result other) { + public int compareTo(findCclPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -612122,7 +611330,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclPage_result("); boolean first = true; sb.append("success:"); @@ -612189,17 +611397,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclOrder_resultStandardScheme getScheme() { - return new findCclOrder_resultStandardScheme(); + public findCclPage_resultStandardScheme getScheme() { + return new findCclPage_resultStandardScheme(); } } - private static class findCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCclPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -612212,13 +611420,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrder_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6550 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6550.size); - long _elem6551; - for (int _i6552 = 0; _i6552 < _set6550.size; ++_i6552) + org.apache.thrift.protocol.TSet _set6542 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6542.size); + long _elem6543; + for (int _i6544 = 0; _i6544 < _set6542.size; ++_i6544) { - _elem6551 = iprot.readI64(); - struct.success.add(_elem6551); + _elem6543 = iprot.readI64(); + struct.success.add(_elem6543); } iprot.readSetEnd(); } @@ -612275,7 +611483,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrder_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCclPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -612283,9 +611491,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrder_resul oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6553 : struct.success) + for (long _iter6545 : struct.success) { - oprot.writeI64(_iter6553); + oprot.writeI64(_iter6545); } oprot.writeSetEnd(); } @@ -612317,17 +611525,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrder_resul } - private static class findCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclOrder_resultTupleScheme getScheme() { - return new findCclOrder_resultTupleScheme(); + public findCclPage_resultTupleScheme getScheme() { + return new findCclPage_resultTupleScheme(); } } - private static class findCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCclPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -612349,9 +611557,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrder_result if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6554 : struct.success) + for (long _iter6546 : struct.success) { - oprot.writeI64(_iter6554); + oprot.writeI64(_iter6546); } } } @@ -612370,18 +611578,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrder_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCclPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6555 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6555.size); - long _elem6556; - for (int _i6557 = 0; _i6557 < _set6555.size; ++_i6557) + org.apache.thrift.protocol.TSet _set6547 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6547.size); + long _elem6548; + for (int _i6549 = 0; _i6549 < _set6547.size; ++_i6549) { - _elem6556 = iprot.readI64(); - struct.success.add(_elem6556); + _elem6548 = iprot.readI64(); + struct.success.add(_elem6548); } } struct.setSuccessIsSet(true); @@ -612414,22 +611622,20 @@ private static S scheme(org.apache. } } - public static class findCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclOrderPage_args"); + public static class findCclOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclOrder_args"); private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCclOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCclOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCclOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCclOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -612438,10 +611644,9 @@ public static class findCclOrderPage_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -612461,13 +611666,11 @@ public static _Fields findByThriftId(int fieldId) { return CCL; case 2: // ORDER return ORDER; - case 3: // PAGE - return PAGE; - case 4: // CREDS + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -612519,8 +611722,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -612528,16 +611729,15 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclOrder_args.class, metaDataMap); } - public findCclOrderPage_args() { + public findCclOrder_args() { } - public findCclOrderPage_args( + public findCclOrder_args( java.lang.String ccl, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -612545,7 +611745,6 @@ public findCclOrderPage_args( this(); this.ccl = ccl; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -612554,16 +611753,13 @@ public findCclOrderPage_args( /** * Performs a deep copy on other. */ - public findCclOrderPage_args(findCclOrderPage_args other) { + public findCclOrder_args(findCclOrder_args other) { if (other.isSetCcl()) { this.ccl = other.ccl; } if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -612576,15 +611772,14 @@ public findCclOrderPage_args(findCclOrderPage_args other) { } @Override - public findCclOrderPage_args deepCopy() { - return new findCclOrderPage_args(this); + public findCclOrder_args deepCopy() { + return new findCclOrder_args(this); } @Override public void clear() { this.ccl = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -612595,7 +611790,7 @@ public java.lang.String getCcl() { return this.ccl; } - public findCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + public findCclOrder_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { this.ccl = ccl; return this; } @@ -612620,7 +611815,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public findCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public findCclOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -612640,37 +611835,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findCclOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -612695,7 +611865,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findCclOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -612720,7 +611890,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findCclOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -612759,14 +611929,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -612804,9 +611966,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -612832,8 +611991,6 @@ public boolean isSet(_Fields field) { return isSetCcl(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -612846,12 +612003,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCclOrderPage_args) - return this.equals((findCclOrderPage_args)that); + if (that instanceof findCclOrder_args) + return this.equals((findCclOrder_args)that); return false; } - public boolean equals(findCclOrderPage_args that) { + public boolean equals(findCclOrder_args that) { if (that == null) return false; if (this == that) @@ -612875,15 +612032,6 @@ public boolean equals(findCclOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -612926,10 +612074,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -612946,7 +612090,7 @@ public int hashCode() { } @Override - public int compareTo(findCclOrderPage_args other) { + public int compareTo(findCclOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -612973,16 +612117,6 @@ public int compareTo(findCclOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -613034,7 +612168,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclOrder_args("); boolean first = true; sb.append("ccl:"); @@ -613053,14 +612187,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -613094,9 +612220,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -613121,17 +612244,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclOrderPage_argsStandardScheme getScheme() { - return new findCclOrderPage_argsStandardScheme(); + public findCclOrder_argsStandardScheme getScheme() { + return new findCclOrder_argsStandardScheme(); } } - private static class findCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCclOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -613158,16 +612281,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -613176,7 +612290,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -613185,7 +612299,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -613205,7 +612319,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -613219,11 +612333,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrderPage_a struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -613245,17 +612354,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrderPage_a } - private static class findCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclOrderPage_argsTupleScheme getScheme() { - return new findCclOrderPage_argsTupleScheme(); + public findCclOrder_argsTupleScheme getScheme() { + return new findCclOrder_argsTupleScheme(); } } - private static class findCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCclOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetCcl()) { @@ -613264,28 +612373,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_ar if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetPage()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); + optionals.set(4); } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetCcl()) { oprot.writeString(struct.ccl); } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -613298,9 +612401,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.ccl = iprot.readString(); struct.setCclIsSet(true); @@ -613311,21 +612414,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_arg struct.setOrderIsSet(true); } if (incoming.get(2)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -613337,8 +612435,8 @@ private static S scheme(org.apache. } } - public static class findCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclOrderPage_result"); + public static class findCclOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -613346,8 +612444,8 @@ public static class findCclOrderPage_result implements org.apache.thrift.TBase success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -613445,13 +612543,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclOrder_result.class, metaDataMap); } - public findCclOrderPage_result() { + public findCclOrder_result() { } - public findCclOrderPage_result( + public findCclOrder_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -613469,7 +612567,7 @@ public findCclOrderPage_result( /** * Performs a deep copy on other. */ - public findCclOrderPage_result(findCclOrderPage_result other) { + public findCclOrder_result(findCclOrder_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -613489,8 +612587,8 @@ public findCclOrderPage_result(findCclOrderPage_result other) { } @Override - public findCclOrderPage_result deepCopy() { - return new findCclOrderPage_result(this); + public findCclOrder_result deepCopy() { + return new findCclOrder_result(this); } @Override @@ -613523,7 +612621,7 @@ public java.util.Set getSuccess() { return this.success; } - public findCclOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findCclOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -613548,7 +612646,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findCclOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -613573,7 +612671,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findCclOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -613598,7 +612696,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findCclOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -613623,7 +612721,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findCclOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -613736,12 +612834,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findCclOrderPage_result) - return this.equals((findCclOrderPage_result)that); + if (that instanceof findCclOrder_result) + return this.equals((findCclOrder_result)that); return false; } - public boolean equals(findCclOrderPage_result that) { + public boolean equals(findCclOrder_result that) { if (that == null) return false; if (this == that) @@ -613823,7 +612921,7 @@ public int hashCode() { } @Override - public int compareTo(findCclOrderPage_result other) { + public int compareTo(findCclOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -613900,7 +612998,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclOrder_result("); boolean first = true; sb.append("success:"); @@ -613967,17 +613065,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclOrderPage_resultStandardScheme getScheme() { - return new findCclOrderPage_resultStandardScheme(); + public findCclOrder_resultStandardScheme getScheme() { + return new findCclOrder_resultStandardScheme(); } } - private static class findCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCclOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -613990,13 +613088,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_re case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6558 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6558.size); - long _elem6559; - for (int _i6560 = 0; _i6560 < _set6558.size; ++_i6560) + org.apache.thrift.protocol.TSet _set6550 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6550.size); + long _elem6551; + for (int _i6552 = 0; _i6552 < _set6550.size; ++_i6552) { - _elem6559 = iprot.readI64(); - struct.success.add(_elem6559); + _elem6551 = iprot.readI64(); + struct.success.add(_elem6551); } iprot.readSetEnd(); } @@ -614053,7 +613151,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -614061,9 +613159,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrderPage_r oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6561 : struct.success) + for (long _iter6553 : struct.success) { - oprot.writeI64(_iter6561); + oprot.writeI64(_iter6553); } oprot.writeSetEnd(); } @@ -614095,17 +613193,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrderPage_r } - private static class findCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findCclOrderPage_resultTupleScheme getScheme() { - return new findCclOrderPage_resultTupleScheme(); + public findCclOrder_resultTupleScheme getScheme() { + return new findCclOrder_resultTupleScheme(); } } - private static class findCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCclOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -614127,9 +613225,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_re if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6562 : struct.success) + for (long _iter6554 : struct.success) { - oprot.writeI64(_iter6562); + oprot.writeI64(_iter6554); } } } @@ -614148,18 +613246,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6563 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6563.size); - long _elem6564; - for (int _i6565 = 0; _i6565 < _set6563.size; ++_i6565) + org.apache.thrift.protocol.TSet _set6555 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6555.size); + long _elem6556; + for (int _i6557 = 0; _i6557 < _set6555.size; ++_i6557) { - _elem6564 = iprot.readI64(); - struct.success.add(_elem6564); + _elem6556 = iprot.readI64(); + struct.success.add(_elem6556); } } struct.setSuccessIsSet(true); @@ -614192,39 +613290,31 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValues_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValues_args"); + public static class findCclOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclOrderPage_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); - private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValues_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValues_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCclOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCclOrderPage_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - /** - * - * @see com.cinchapi.concourse.thrift.Operator - */ - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required - public @org.apache.thrift.annotation.Nullable java.util.List values; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - /** - * - * @see com.cinchapi.concourse.thrift.Operator - */ - OPERATOR((short)2, "operator"), - VALUES((short)3, "values"), + CCL((short)1, "ccl"), + ORDER((short)2, "order"), + PAGE((short)3, "page"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), ENVIRONMENT((short)6, "environment"); @@ -614243,12 +613333,12 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // OPERATOR - return OPERATOR; - case 3: // VALUES - return VALUES; + case 1: // CCL + return CCL; + case 2: // ORDER + return ORDER; + case 3: // PAGE + return PAGE; case 4: // CREDS return CREDS; case 5: // TRANSACTION @@ -614301,13 +613391,12 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.OPERATOR, new org.apache.thrift.meta_data.FieldMetaData("operator", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, com.cinchapi.concourse.thrift.Operator.class))); - tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -614315,24 +613404,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValues_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclOrderPage_args.class, metaDataMap); } - public findKeyOperatorValues_args() { + public findCclOrderPage_args() { } - public findKeyOperatorValues_args( - java.lang.String key, - com.cinchapi.concourse.thrift.Operator operator, - java.util.List values, + public findCclOrderPage_args( + java.lang.String ccl, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.operator = operator; - this.values = values; + this.ccl = ccl; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -614341,19 +613430,15 @@ public findKeyOperatorValues_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValues_args(findKeyOperatorValues_args other) { - if (other.isSetKey()) { - this.key = other.key; + public findCclOrderPage_args(findCclOrderPage_args other) { + if (other.isSetCcl()) { + this.ccl = other.ccl; } - if (other.isSetOperator()) { - this.operator = other.operator; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetValues()) { - java.util.List __this__values = new java.util.ArrayList(other.values.size()); - for (com.cinchapi.concourse.thrift.TObject other_element : other.values) { - __this__values.add(new com.cinchapi.concourse.thrift.TObject(other_element)); - } - this.values = __this__values; + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -614367,116 +613452,92 @@ public findKeyOperatorValues_args(findKeyOperatorValues_args other) { } @Override - public findKeyOperatorValues_args deepCopy() { - return new findKeyOperatorValues_args(this); + public findCclOrderPage_args deepCopy() { + return new findCclOrderPage_args(this); } @Override public void clear() { - this.key = null; - this.operator = null; - this.values = null; + this.ccl = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public java.lang.String getCcl() { + return this.ccl; } - public findKeyOperatorValues_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; + public findCclOrderPage_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetKey() { - this.key = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setKeyIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.key = null; + this.ccl = null; } } - /** - * - * @see com.cinchapi.concourse.thrift.Operator - */ @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.Operator getOperator() { - return this.operator; + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - /** - * - * @see com.cinchapi.concourse.thrift.Operator - */ - public findKeyOperatorValues_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { - this.operator = operator; + public findCclOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetOperator() { - this.operator = null; + public void unsetOrder() { + this.order = null; } - /** Returns true if field operator is set (has been assigned a value) and false otherwise */ - public boolean isSetOperator() { - return this.operator != null; + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setOperatorIsSet(boolean value) { + public void setOrderIsSet(boolean value) { if (!value) { - this.operator = null; - } - } - - public int getValuesSize() { - return (this.values == null) ? 0 : this.values.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getValuesIterator() { - return (this.values == null) ? null : this.values.iterator(); - } - - public void addToValues(com.cinchapi.concourse.thrift.TObject elem) { - if (this.values == null) { - this.values = new java.util.ArrayList(); + this.order = null; } - this.values.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.List getValues() { - return this.values; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findKeyOperatorValues_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { - this.values = values; + public findCclOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetValues() { - this.values = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field values is set (has been assigned a value) and false otherwise */ - public boolean isSetValues() { - return this.values != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setValuesIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.values = null; + this.page = null; } } @@ -614485,7 +613546,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValues_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findCclOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -614510,7 +613571,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValues_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findCclOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -614535,7 +613596,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValues_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findCclOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -614558,27 +613619,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case CCL: if (value == null) { - unsetKey(); + unsetCcl(); } else { - setKey((java.lang.String)value); + setCcl((java.lang.String)value); } break; - case OPERATOR: + case ORDER: if (value == null) { - unsetOperator(); + unsetOrder(); } else { - setOperator((com.cinchapi.concourse.thrift.Operator)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); } break; - case VALUES: + case PAGE: if (value == null) { - unsetValues(); + unsetPage(); } else { - setValues((java.util.List)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -614613,14 +613674,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case CCL: + return getCcl(); - case OPERATOR: - return getOperator(); + case ORDER: + return getOrder(); - case VALUES: - return getValues(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -614643,12 +613704,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case OPERATOR: - return isSetOperator(); - case VALUES: - return isSetValues(); + case CCL: + return isSetCcl(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -614661,41 +613722,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValues_args) - return this.equals((findKeyOperatorValues_args)that); + if (that instanceof findCclOrderPage_args) + return this.equals((findCclOrderPage_args)that); return false; } - public boolean equals(findKeyOperatorValues_args that) { + public boolean equals(findCclOrderPage_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.key.equals(that.key)) + if (!this.ccl.equals(that.ccl)) return false; } - boolean this_present_operator = true && this.isSetOperator(); - boolean that_present_operator = true && that.isSetOperator(); - if (this_present_operator || that_present_operator) { - if (!(this_present_operator && that_present_operator)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (!this.operator.equals(that.operator)) + if (!this.order.equals(that.order)) return false; } - boolean this_present_values = true && this.isSetValues(); - boolean that_present_values = true && that.isSetValues(); - if (this_present_values || that_present_values) { - if (!(this_present_values && that_present_values)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.values.equals(that.values)) + if (!this.page.equals(that.page)) return false; } @@ -614733,17 +613794,17 @@ public boolean equals(findKeyOperatorValues_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); - hashCode = hashCode * 8191 + ((isSetOperator()) ? 131071 : 524287); - if (isSetOperator()) - hashCode = hashCode * 8191 + operator.getValue(); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetValues()) ? 131071 : 524287); - if (isSetValues()) - hashCode = hashCode * 8191 + values.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -614761,39 +613822,39 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValues_args other) { + public int compareTo(findCclOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOperator(), other.isSetOperator()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetOperator()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.operator, other.operator); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetValues()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.values, other.values); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -614849,30 +613910,30 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValues_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclOrderPage_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); - sb.append("operator:"); - if (this.operator == null) { + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.operator); + sb.append(this.order); } first = false; if (!first) sb.append(", "); - sb.append("values:"); - if (this.values == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.values); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -614906,6 +613967,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -614930,17 +613997,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValues_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValues_argsStandardScheme getScheme() { - return new findKeyOperatorValues_argsStandardScheme(); + public findCclOrderPage_argsStandardScheme getScheme() { + return new findCclOrderPage_argsStandardScheme(); } } - private static class findKeyOperatorValues_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCclOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValues_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -614950,37 +614017,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu break; } switch (schemeField.id) { - case 1: // KEY + case 1: // CCL if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // OPERATOR - if (schemeField.type == org.apache.thrift.protocol.TType.I32) { - struct.operator = com.cinchapi.concourse.thrift.Operator.findByValue(iprot.readI32()); - struct.setOperatorIsSet(true); + case 2: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // VALUES - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list6566 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6566.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6567; - for (int _i6568 = 0; _i6568 < _list6566.size; ++_i6568) - { - _elem6567 = new com.cinchapi.concourse.thrift.TObject(); - _elem6567.read(iprot); - struct.values.add(_elem6567); - } - iprot.readListEnd(); - } - struct.setValuesIsSet(true); + case 3: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -615023,30 +614081,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValues_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } - if (struct.operator != null) { - oprot.writeFieldBegin(OPERATOR_FIELD_DESC); - oprot.writeI32(struct.operator.getValue()); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.values != null) { - oprot.writeFieldBegin(VALUES_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6569 : struct.values) - { - _iter6569.write(oprot); - } - oprot.writeListEnd(); - } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -615070,26 +614121,26 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValues_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValues_argsTupleScheme getScheme() { - return new findKeyOperatorValues_argsTupleScheme(); + public findCclOrderPage_argsTupleScheme getScheme() { + return new findCclOrderPage_argsTupleScheme(); } } - private static class findKeyOperatorValues_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCclOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValues_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetCcl()) { optionals.set(0); } - if (struct.isSetOperator()) { + if (struct.isSetOrder()) { optionals.set(1); } - if (struct.isSetValues()) { + if (struct.isSetPage()) { optionals.set(2); } if (struct.isSetCreds()) { @@ -615102,20 +614153,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu optionals.set(5); } oprot.writeBitSet(optionals, 6); - if (struct.isSetKey()) { - oprot.writeString(struct.key); + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); } - if (struct.isSetOperator()) { - oprot.writeI32(struct.operator.getValue()); + if (struct.isSetOrder()) { + struct.order.write(oprot); } - if (struct.isSetValues()) { - { - oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6570 : struct.values) - { - _iter6570.write(oprot); - } - } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -615129,30 +614174,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValues_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(1)) { - struct.operator = com.cinchapi.concourse.thrift.Operator.findByValue(iprot.readI32()); - struct.setOperatorIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(2)) { - { - org.apache.thrift.protocol.TList _list6571 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6571.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6572; - for (int _i6573 = 0; _i6573 < _list6571.size; ++_i6573) - { - _elem6572 = new com.cinchapi.concourse.thrift.TObject(); - _elem6572.read(iprot); - struct.values.add(_elem6572); - } - } - struct.setValuesIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -615176,28 +614213,31 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValues_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValues_result"); + public static class findCclOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findCclOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValues_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValues_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findCclOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findCclOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -615221,6 +614261,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -615275,31 +614317,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValues_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findCclOrderPage_result.class, metaDataMap); } - public findKeyOperatorValues_result() { + public findCclOrderPage_result() { } - public findKeyOperatorValues_result( + public findCclOrderPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public findKeyOperatorValues_result(findKeyOperatorValues_result other) { + public findCclOrderPage_result(findCclOrderPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -615311,13 +614357,16 @@ public findKeyOperatorValues_result(findKeyOperatorValues_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public findKeyOperatorValues_result deepCopy() { - return new findKeyOperatorValues_result(this); + public findCclOrderPage_result deepCopy() { + return new findCclOrderPage_result(this); } @Override @@ -615326,6 +614375,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -615349,7 +614399,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValues_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findCclOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -615374,7 +614424,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValues_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findCclOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -615399,7 +614449,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValues_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findCclOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -615420,11 +614470,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorValues_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findCclOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -615444,6 +614494,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public findCclOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -615475,7 +614550,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -615498,6 +614581,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -615518,18 +614604,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValues_result) - return this.equals((findKeyOperatorValues_result)that); + if (that instanceof findCclOrderPage_result) + return this.equals((findCclOrderPage_result)that); return false; } - public boolean equals(findKeyOperatorValues_result that) { + public boolean equals(findCclOrderPage_result that) { if (that == null) return false; if (this == that) @@ -615571,6 +614659,15 @@ public boolean equals(findKeyOperatorValues_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -615594,11 +614691,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(findKeyOperatorValues_result other) { + public int compareTo(findCclOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -615645,6 +614746,16 @@ public int compareTo(findKeyOperatorValues_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -615665,7 +614776,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValues_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findCclOrderPage_result("); boolean first = true; sb.append("success:"); @@ -615699,6 +614810,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -615724,17 +614843,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValues_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValues_resultStandardScheme getScheme() { - return new findKeyOperatorValues_resultStandardScheme(); + public findCclOrderPage_resultStandardScheme getScheme() { + return new findCclOrderPage_resultStandardScheme(); } } - private static class findKeyOperatorValues_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findCclOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValues_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -615747,13 +614866,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6574 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6574.size); - long _elem6575; - for (int _i6576 = 0; _i6576 < _set6574.size; ++_i6576) + org.apache.thrift.protocol.TSet _set6558 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6558.size); + long _elem6559; + for (int _i6560 = 0; _i6560 < _set6558.size; ++_i6560) { - _elem6575 = iprot.readI64(); - struct.success.add(_elem6575); + _elem6559 = iprot.readI64(); + struct.success.add(_elem6559); } iprot.readSetEnd(); } @@ -615782,13 +614901,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -615801,7 +614929,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValues_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findCclOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -615809,9 +614937,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6577 : struct.success) + for (long _iter6561 : struct.success) { - oprot.writeI64(_iter6577); + oprot.writeI64(_iter6561); } oprot.writeSetEnd(); } @@ -615832,23 +614960,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class findKeyOperatorValues_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findCclOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValues_resultTupleScheme getScheme() { - return new findKeyOperatorValues_resultTupleScheme(); + public findCclOrderPage_resultTupleScheme getScheme() { + return new findCclOrderPage_resultTupleScheme(); } } - private static class findKeyOperatorValues_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findCclOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValues_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -615863,13 +614996,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6578 : struct.success) + for (long _iter6562 : struct.success) { - oprot.writeI64(_iter6578); + oprot.writeI64(_iter6562); } } } @@ -615882,21 +615018,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValues_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findCclOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6579 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6579.size); - long _elem6580; - for (int _i6581 = 0; _i6581 < _set6579.size; ++_i6581) + org.apache.thrift.protocol.TSet _set6563 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6563.size); + long _elem6564; + for (int _i6565 = 0; _i6565 < _set6563.size; ++_i6565) { - _elem6580 = iprot.readI64(); - struct.success.add(_elem6580); + _elem6564 = iprot.readI64(); + struct.success.add(_elem6564); } } struct.setSuccessIsSet(true); @@ -615912,10 +615051,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -615924,19 +615068,18 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesPage_args"); + public static class findKeyOperatorValues_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValues_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValues_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValues_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -615945,7 +615088,6 @@ public static class findKeyOperatorValuesPage_args implements org.apache.thrift. */ public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -615959,10 +615101,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { */ OPERATOR((short)2, "operator"), VALUES((short)3, "values"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -615984,13 +615125,11 @@ public static _Fields findByThriftId(int fieldId) { return OPERATOR; case 3: // VALUES return VALUES; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -616045,8 +615184,6 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -616054,17 +615191,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValues_args.class, metaDataMap); } - public findKeyOperatorValuesPage_args() { + public findKeyOperatorValues_args() { } - public findKeyOperatorValuesPage_args( + public findKeyOperatorValues_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -616073,7 +615209,6 @@ public findKeyOperatorValuesPage_args( this.key = key; this.operator = operator; this.values = values; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -616082,7 +615217,7 @@ public findKeyOperatorValuesPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesPage_args(findKeyOperatorValuesPage_args other) { + public findKeyOperatorValues_args(findKeyOperatorValues_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -616096,9 +615231,6 @@ public findKeyOperatorValuesPage_args(findKeyOperatorValuesPage_args other) { } this.values = __this__values; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -616111,8 +615243,8 @@ public findKeyOperatorValuesPage_args(findKeyOperatorValuesPage_args other) { } @Override - public findKeyOperatorValuesPage_args deepCopy() { - return new findKeyOperatorValuesPage_args(this); + public findKeyOperatorValues_args deepCopy() { + return new findKeyOperatorValues_args(this); } @Override @@ -616120,7 +615252,6 @@ public void clear() { this.key = null; this.operator = null; this.values = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -616131,7 +615262,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValues_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -616164,7 +615295,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValues_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -616205,7 +615336,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValues_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -616225,37 +615356,12 @@ public void setValuesIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorValuesPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValues_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -616280,7 +615386,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValues_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -616305,7 +615411,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValues_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -616352,14 +615458,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -616400,9 +615498,6 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUES: return getValues(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -616430,8 +615525,6 @@ public boolean isSet(_Fields field) { return isSetOperator(); case VALUES: return isSetValues(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -616444,12 +615537,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesPage_args) - return this.equals((findKeyOperatorValuesPage_args)that); + if (that instanceof findKeyOperatorValues_args) + return this.equals((findKeyOperatorValues_args)that); return false; } - public boolean equals(findKeyOperatorValuesPage_args that) { + public boolean equals(findKeyOperatorValues_args that) { if (that == null) return false; if (this == that) @@ -616482,15 +615575,6 @@ public boolean equals(findKeyOperatorValuesPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -616537,10 +615621,6 @@ public int hashCode() { if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -616557,7 +615637,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesPage_args other) { + public int compareTo(findKeyOperatorValues_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -616594,16 +615674,6 @@ public int compareTo(findKeyOperatorValuesPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -616655,7 +615725,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValues_args("); boolean first = true; sb.append("key:"); @@ -616682,14 +615752,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -616720,9 +615782,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -616747,17 +615806,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValues_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesPage_argsStandardScheme getScheme() { - return new findKeyOperatorValuesPage_argsStandardScheme(); + public findKeyOperatorValues_argsStandardScheme getScheme() { + return new findKeyOperatorValues_argsStandardScheme(); } } - private static class findKeyOperatorValuesPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValues_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -616786,14 +615845,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6582 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6582.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6583; - for (int _i6584 = 0; _i6584 < _list6582.size; ++_i6584) + org.apache.thrift.protocol.TList _list6566 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6566.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6567; + for (int _i6568 = 0; _i6568 < _list6566.size; ++_i6568) { - _elem6583 = new com.cinchapi.concourse.thrift.TObject(); - _elem6583.read(iprot); - struct.values.add(_elem6583); + _elem6567 = new com.cinchapi.concourse.thrift.TObject(); + _elem6567.read(iprot); + struct.values.add(_elem6567); } iprot.readListEnd(); } @@ -616802,16 +615861,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -616820,7 +615870,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -616829,7 +615879,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -616849,7 +615899,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValues_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -616867,19 +615917,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6585 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6569 : struct.values) { - _iter6585.write(oprot); + _iter6569.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -616901,17 +615946,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValues_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesPage_argsTupleScheme getScheme() { - return new findKeyOperatorValuesPage_argsTupleScheme(); + public findKeyOperatorValues_argsTupleScheme getScheme() { + return new findKeyOperatorValues_argsTupleScheme(); } } - private static class findKeyOperatorValuesPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValues_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -616923,19 +615968,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -616945,15 +615987,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6586 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6570 : struct.values) { - _iter6586.write(oprot); + _iter6570.write(oprot); } } } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -616966,9 +616005,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -616979,34 +616018,29 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6587 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6587.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6588; - for (int _i6589 = 0; _i6589 < _list6587.size; ++_i6589) + org.apache.thrift.protocol.TList _list6571 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6571.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6572; + for (int _i6573 = 0; _i6573 < _list6571.size; ++_i6573) { - _elem6588 = new com.cinchapi.concourse.thrift.TObject(); - _elem6588.read(iprot); - struct.values.add(_elem6588); + _elem6572 = new com.cinchapi.concourse.thrift.TObject(); + _elem6572.read(iprot); + struct.values.add(_elem6572); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -617018,16 +616052,16 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesPage_result"); + public static class findKeyOperatorValues_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValues_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValues_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValues_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -617119,13 +616153,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValues_result.class, metaDataMap); } - public findKeyOperatorValuesPage_result() { + public findKeyOperatorValues_result() { } - public findKeyOperatorValuesPage_result( + public findKeyOperatorValues_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -617141,7 +616175,7 @@ public findKeyOperatorValuesPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesPage_result(findKeyOperatorValuesPage_result other) { + public findKeyOperatorValues_result(findKeyOperatorValues_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -617158,8 +616192,8 @@ public findKeyOperatorValuesPage_result(findKeyOperatorValuesPage_result other) } @Override - public findKeyOperatorValuesPage_result deepCopy() { - return new findKeyOperatorValuesPage_result(this); + public findKeyOperatorValues_result deepCopy() { + return new findKeyOperatorValues_result(this); } @Override @@ -617191,7 +616225,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValues_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -617216,7 +616250,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValues_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -617241,7 +616275,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValues_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -617266,7 +616300,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findKeyOperatorValuesPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findKeyOperatorValues_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -617366,12 +616400,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesPage_result) - return this.equals((findKeyOperatorValuesPage_result)that); + if (that instanceof findKeyOperatorValues_result) + return this.equals((findKeyOperatorValues_result)that); return false; } - public boolean equals(findKeyOperatorValuesPage_result that) { + public boolean equals(findKeyOperatorValues_result that) { if (that == null) return false; if (this == that) @@ -617440,7 +616474,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesPage_result other) { + public int compareTo(findKeyOperatorValues_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -617507,7 +616541,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValues_result("); boolean first = true; sb.append("success:"); @@ -617566,17 +616600,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValues_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesPage_resultStandardScheme getScheme() { - return new findKeyOperatorValuesPage_resultStandardScheme(); + public findKeyOperatorValues_resultStandardScheme getScheme() { + return new findKeyOperatorValues_resultStandardScheme(); } } - private static class findKeyOperatorValuesPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValues_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -617589,13 +616623,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6590 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6590.size); - long _elem6591; - for (int _i6592 = 0; _i6592 < _set6590.size; ++_i6592) + org.apache.thrift.protocol.TSet _set6574 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6574.size); + long _elem6575; + for (int _i6576 = 0; _i6576 < _set6574.size; ++_i6576) { - _elem6591 = iprot.readI64(); - struct.success.add(_elem6591); + _elem6575 = iprot.readI64(); + struct.success.add(_elem6575); } iprot.readSetEnd(); } @@ -617643,7 +616677,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValues_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -617651,9 +616685,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6593 : struct.success) + for (long _iter6577 : struct.success) { - oprot.writeI64(_iter6593); + oprot.writeI64(_iter6577); } oprot.writeSetEnd(); } @@ -617680,17 +616714,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValues_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesPage_resultTupleScheme getScheme() { - return new findKeyOperatorValuesPage_resultTupleScheme(); + public findKeyOperatorValues_resultTupleScheme getScheme() { + return new findKeyOperatorValues_resultTupleScheme(); } } - private static class findKeyOperatorValuesPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValues_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -617709,9 +616743,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6594 : struct.success) + for (long _iter6578 : struct.success) { - oprot.writeI64(_iter6594); + oprot.writeI64(_iter6578); } } } @@ -617727,18 +616761,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6595 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6595.size); - long _elem6596; - for (int _i6597 = 0; _i6597 < _set6595.size; ++_i6597) + org.apache.thrift.protocol.TSet _set6579 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6579.size); + long _elem6580; + for (int _i6581 = 0; _i6581 < _set6579.size; ++_i6581) { - _elem6596 = iprot.readI64(); - struct.success.add(_elem6596); + _elem6580 = iprot.readI64(); + struct.success.add(_elem6580); } } struct.setSuccessIsSet(true); @@ -617766,19 +616800,19 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesOrder_args"); + public static class findKeyOperatorValuesPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -617787,7 +616821,7 @@ public static class findKeyOperatorValuesOrder_args implements org.apache.thrift */ public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -617801,7 +616835,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { */ OPERATOR((short)2, "operator"), VALUES((short)3, "values"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -617826,8 +616860,8 @@ public static _Fields findByThriftId(int fieldId) { return OPERATOR; case 3: // VALUES return VALUES; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -617887,8 +616921,8 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -617896,17 +616930,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesPage_args.class, metaDataMap); } - public findKeyOperatorValuesOrder_args() { + public findKeyOperatorValuesPage_args() { } - public findKeyOperatorValuesOrder_args( + public findKeyOperatorValuesPage_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -617915,7 +616949,7 @@ public findKeyOperatorValuesOrder_args( this.key = key; this.operator = operator; this.values = values; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -617924,7 +616958,7 @@ public findKeyOperatorValuesOrder_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesOrder_args(findKeyOperatorValuesOrder_args other) { + public findKeyOperatorValuesPage_args(findKeyOperatorValuesPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -617938,8 +616972,8 @@ public findKeyOperatorValuesOrder_args(findKeyOperatorValuesOrder_args other) { } this.values = __this__values; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -617953,8 +616987,8 @@ public findKeyOperatorValuesOrder_args(findKeyOperatorValuesOrder_args other) { } @Override - public findKeyOperatorValuesOrder_args deepCopy() { - return new findKeyOperatorValuesOrder_args(this); + public findKeyOperatorValuesPage_args deepCopy() { + return new findKeyOperatorValuesPage_args(this); } @Override @@ -617962,7 +616996,7 @@ public void clear() { this.key = null; this.operator = null; this.values = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -617973,7 +617007,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -618006,7 +617040,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesOrder_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -618047,7 +617081,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -618068,27 +617102,27 @@ public void setValuesIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findKeyOperatorValuesOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public findKeyOperatorValuesPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -618097,7 +617131,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -618122,7 +617156,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -618147,7 +617181,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -618194,11 +617228,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -618242,8 +617276,8 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUES: return getValues(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -618272,8 +617306,8 @@ public boolean isSet(_Fields field) { return isSetOperator(); case VALUES: return isSetValues(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -618286,12 +617320,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesOrder_args) - return this.equals((findKeyOperatorValuesOrder_args)that); + if (that instanceof findKeyOperatorValuesPage_args) + return this.equals((findKeyOperatorValuesPage_args)that); return false; } - public boolean equals(findKeyOperatorValuesOrder_args that) { + public boolean equals(findKeyOperatorValuesPage_args that) { if (that == null) return false; if (this == that) @@ -618324,12 +617358,12 @@ public boolean equals(findKeyOperatorValuesOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -618379,9 +617413,9 @@ public int hashCode() { if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -618399,7 +617433,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesOrder_args other) { + public int compareTo(findKeyOperatorValuesPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -618436,12 +617470,12 @@ public int compareTo(findKeyOperatorValuesOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -618497,7 +617531,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesPage_args("); boolean first = true; sb.append("key:"); @@ -618524,11 +617558,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -618562,8 +617596,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -618589,17 +617623,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesOrder_argsStandardScheme getScheme() { - return new findKeyOperatorValuesOrder_argsStandardScheme(); + public findKeyOperatorValuesPage_argsStandardScheme getScheme() { + return new findKeyOperatorValuesPage_argsStandardScheme(); } } - private static class findKeyOperatorValuesOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -618628,14 +617662,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6598 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6598.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6599; - for (int _i6600 = 0; _i6600 < _list6598.size; ++_i6600) + org.apache.thrift.protocol.TList _list6582 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6582.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6583; + for (int _i6584 = 0; _i6584 < _list6582.size; ++_i6584) { - _elem6599 = new com.cinchapi.concourse.thrift.TObject(); - _elem6599.read(iprot); - struct.values.add(_elem6599); + _elem6583 = new com.cinchapi.concourse.thrift.TObject(); + _elem6583.read(iprot); + struct.values.add(_elem6583); } iprot.readListEnd(); } @@ -618644,11 +617678,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -618691,7 +617725,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -618709,17 +617743,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6601 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6585 : struct.values) { - _iter6601.write(oprot); + _iter6585.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -618743,17 +617777,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesOrder_argsTupleScheme getScheme() { - return new findKeyOperatorValuesOrder_argsTupleScheme(); + public findKeyOperatorValuesPage_argsTupleScheme getScheme() { + return new findKeyOperatorValuesPage_argsTupleScheme(); } } - private static class findKeyOperatorValuesOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -618765,7 +617799,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -618787,14 +617821,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6602 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6586 : struct.values) { - _iter6602.write(oprot); + _iter6586.write(oprot); } } } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -618808,7 +617842,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -618821,22 +617855,22 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6603 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6603.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6604; - for (int _i6605 = 0; _i6605 < _list6603.size; ++_i6605) + org.apache.thrift.protocol.TList _list6587 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6587.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6588; + for (int _i6589 = 0; _i6589 < _list6587.size; ++_i6589) { - _elem6604 = new com.cinchapi.concourse.thrift.TObject(); - _elem6604.read(iprot); - struct.values.add(_elem6604); + _elem6588 = new com.cinchapi.concourse.thrift.TObject(); + _elem6588.read(iprot); + struct.values.add(_elem6588); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -618860,16 +617894,16 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesOrder_result"); + public static class findKeyOperatorValuesPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -618961,13 +617995,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesPage_result.class, metaDataMap); } - public findKeyOperatorValuesOrder_result() { + public findKeyOperatorValuesPage_result() { } - public findKeyOperatorValuesOrder_result( + public findKeyOperatorValuesPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -618983,7 +618017,7 @@ public findKeyOperatorValuesOrder_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesOrder_result(findKeyOperatorValuesOrder_result other) { + public findKeyOperatorValuesPage_result(findKeyOperatorValuesPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -619000,8 +618034,8 @@ public findKeyOperatorValuesOrder_result(findKeyOperatorValuesOrder_result other } @Override - public findKeyOperatorValuesOrder_result deepCopy() { - return new findKeyOperatorValuesOrder_result(this); + public findKeyOperatorValuesPage_result deepCopy() { + return new findKeyOperatorValuesPage_result(this); } @Override @@ -619033,7 +618067,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -619058,7 +618092,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -619083,7 +618117,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -619108,7 +618142,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findKeyOperatorValuesOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findKeyOperatorValuesPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -619208,12 +618242,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesOrder_result) - return this.equals((findKeyOperatorValuesOrder_result)that); + if (that instanceof findKeyOperatorValuesPage_result) + return this.equals((findKeyOperatorValuesPage_result)that); return false; } - public boolean equals(findKeyOperatorValuesOrder_result that) { + public boolean equals(findKeyOperatorValuesPage_result that) { if (that == null) return false; if (this == that) @@ -619282,7 +618316,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesOrder_result other) { + public int compareTo(findKeyOperatorValuesPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -619349,7 +618383,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesPage_result("); boolean first = true; sb.append("success:"); @@ -619408,17 +618442,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesOrder_resultStandardScheme getScheme() { - return new findKeyOperatorValuesOrder_resultStandardScheme(); + public findKeyOperatorValuesPage_resultStandardScheme getScheme() { + return new findKeyOperatorValuesPage_resultStandardScheme(); } } - private static class findKeyOperatorValuesOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -619431,13 +618465,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6606 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6606.size); - long _elem6607; - for (int _i6608 = 0; _i6608 < _set6606.size; ++_i6608) + org.apache.thrift.protocol.TSet _set6590 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6590.size); + long _elem6591; + for (int _i6592 = 0; _i6592 < _set6590.size; ++_i6592) { - _elem6607 = iprot.readI64(); - struct.success.add(_elem6607); + _elem6591 = iprot.readI64(); + struct.success.add(_elem6591); } iprot.readSetEnd(); } @@ -619485,7 +618519,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -619493,9 +618527,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6609 : struct.success) + for (long _iter6593 : struct.success) { - oprot.writeI64(_iter6609); + oprot.writeI64(_iter6593); } oprot.writeSetEnd(); } @@ -619522,17 +618556,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesOrder_resultTupleScheme getScheme() { - return new findKeyOperatorValuesOrder_resultTupleScheme(); + public findKeyOperatorValuesPage_resultTupleScheme getScheme() { + return new findKeyOperatorValuesPage_resultTupleScheme(); } } - private static class findKeyOperatorValuesOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -619551,9 +618585,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6610 : struct.success) + for (long _iter6594 : struct.success) { - oprot.writeI64(_iter6610); + oprot.writeI64(_iter6594); } } } @@ -619569,18 +618603,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6611 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6611.size); - long _elem6612; - for (int _i6613 = 0; _i6613 < _set6611.size; ++_i6613) + org.apache.thrift.protocol.TSet _set6595 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6595.size); + long _elem6596; + for (int _i6597 = 0; _i6597 < _set6595.size; ++_i6597) { - _elem6612 = iprot.readI64(); - struct.success.add(_elem6612); + _elem6596 = iprot.readI64(); + struct.success.add(_elem6596); } } struct.setSuccessIsSet(true); @@ -619608,20 +618642,19 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesOrderPage_args"); + public static class findKeyOperatorValuesOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -619631,7 +618664,6 @@ public static class findKeyOperatorValuesOrderPage_args implements org.apache.th public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -619646,10 +618678,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -619673,13 +618704,11 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -619736,8 +618765,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -619745,18 +618772,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesOrder_args.class, metaDataMap); } - public findKeyOperatorValuesOrderPage_args() { + public findKeyOperatorValuesOrder_args() { } - public findKeyOperatorValuesOrderPage_args( + public findKeyOperatorValuesOrder_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -619766,7 +618792,6 @@ public findKeyOperatorValuesOrderPage_args( this.operator = operator; this.values = values; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -619775,7 +618800,7 @@ public findKeyOperatorValuesOrderPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesOrderPage_args(findKeyOperatorValuesOrderPage_args other) { + public findKeyOperatorValuesOrder_args(findKeyOperatorValuesOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -619792,9 +618817,6 @@ public findKeyOperatorValuesOrderPage_args(findKeyOperatorValuesOrderPage_args o if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -619807,8 +618829,8 @@ public findKeyOperatorValuesOrderPage_args(findKeyOperatorValuesOrderPage_args o } @Override - public findKeyOperatorValuesOrderPage_args deepCopy() { - return new findKeyOperatorValuesOrderPage_args(this); + public findKeyOperatorValuesOrder_args deepCopy() { + return new findKeyOperatorValuesOrder_args(this); } @Override @@ -619817,7 +618839,6 @@ public void clear() { this.operator = null; this.values = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -619828,7 +618849,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -619861,7 +618882,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesOrder_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -619902,7 +618923,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -619927,7 +618948,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public findKeyOperatorValuesOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public findKeyOperatorValuesOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -619947,37 +618968,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorValuesOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -620002,7 +618998,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -620027,7 +619023,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -620082,14 +619078,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -620133,9 +619121,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -620165,8 +619150,6 @@ public boolean isSet(_Fields field) { return isSetValues(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -620179,12 +619162,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesOrderPage_args) - return this.equals((findKeyOperatorValuesOrderPage_args)that); + if (that instanceof findKeyOperatorValuesOrder_args) + return this.equals((findKeyOperatorValuesOrder_args)that); return false; } - public boolean equals(findKeyOperatorValuesOrderPage_args that) { + public boolean equals(findKeyOperatorValuesOrder_args that) { if (that == null) return false; if (this == that) @@ -620226,15 +619209,6 @@ public boolean equals(findKeyOperatorValuesOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -620285,10 +619259,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -620305,7 +619275,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesOrderPage_args other) { + public int compareTo(findKeyOperatorValuesOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -620352,16 +619322,6 @@ public int compareTo(findKeyOperatorValuesOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -620413,7 +619373,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesOrder_args("); boolean first = true; sb.append("key:"); @@ -620448,14 +619408,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -620489,9 +619441,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -620516,17 +619465,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesOrderPage_argsStandardScheme getScheme() { - return new findKeyOperatorValuesOrderPage_argsStandardScheme(); + public findKeyOperatorValuesOrder_argsStandardScheme getScheme() { + return new findKeyOperatorValuesOrder_argsStandardScheme(); } } - private static class findKeyOperatorValuesOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -620555,14 +619504,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6614 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6614.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6615; - for (int _i6616 = 0; _i6616 < _list6614.size; ++_i6616) + org.apache.thrift.protocol.TList _list6598 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6598.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6599; + for (int _i6600 = 0; _i6600 < _list6598.size; ++_i6600) { - _elem6615 = new com.cinchapi.concourse.thrift.TObject(); - _elem6615.read(iprot); - struct.values.add(_elem6615); + _elem6599 = new com.cinchapi.concourse.thrift.TObject(); + _elem6599.read(iprot); + struct.values.add(_elem6599); } iprot.readListEnd(); } @@ -620580,16 +619529,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -620598,7 +619538,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -620607,7 +619547,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -620627,7 +619567,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -620645,9 +619585,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6617 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6601 : struct.values) { - _iter6617.write(oprot); + _iter6601.write(oprot); } oprot.writeListEnd(); } @@ -620658,11 +619598,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -620684,17 +619619,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesOrderPage_argsTupleScheme getScheme() { - return new findKeyOperatorValuesOrderPage_argsTupleScheme(); + public findKeyOperatorValuesOrder_argsTupleScheme getScheme() { + return new findKeyOperatorValuesOrder_argsTupleScheme(); } } - private static class findKeyOperatorValuesOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -620709,19 +619644,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -620731,18 +619663,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6618 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6602 : struct.values) { - _iter6618.write(oprot); + _iter6602.write(oprot); } } } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -620755,9 +619684,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -620768,14 +619697,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6619 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6619.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6620; - for (int _i6621 = 0; _i6621 < _list6619.size; ++_i6621) + org.apache.thrift.protocol.TList _list6603 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6603.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6604; + for (int _i6605 = 0; _i6605 < _list6603.size; ++_i6605) { - _elem6620 = new com.cinchapi.concourse.thrift.TObject(); - _elem6620.read(iprot); - struct.values.add(_elem6620); + _elem6604 = new com.cinchapi.concourse.thrift.TObject(); + _elem6604.read(iprot); + struct.values.add(_elem6604); } } struct.setValuesIsSet(true); @@ -620786,21 +619715,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -620812,16 +619736,16 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesOrderPage_result"); + public static class findKeyOperatorValuesOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -620913,13 +619837,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesOrder_result.class, metaDataMap); } - public findKeyOperatorValuesOrderPage_result() { + public findKeyOperatorValuesOrder_result() { } - public findKeyOperatorValuesOrderPage_result( + public findKeyOperatorValuesOrder_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -620935,7 +619859,7 @@ public findKeyOperatorValuesOrderPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesOrderPage_result(findKeyOperatorValuesOrderPage_result other) { + public findKeyOperatorValuesOrder_result(findKeyOperatorValuesOrder_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -620952,8 +619876,8 @@ public findKeyOperatorValuesOrderPage_result(findKeyOperatorValuesOrderPage_resu } @Override - public findKeyOperatorValuesOrderPage_result deepCopy() { - return new findKeyOperatorValuesOrderPage_result(this); + public findKeyOperatorValuesOrder_result deepCopy() { + return new findKeyOperatorValuesOrder_result(this); } @Override @@ -620985,7 +619909,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -621010,7 +619934,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -621035,7 +619959,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -621060,7 +619984,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findKeyOperatorValuesOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findKeyOperatorValuesOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -621160,12 +620084,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesOrderPage_result) - return this.equals((findKeyOperatorValuesOrderPage_result)that); + if (that instanceof findKeyOperatorValuesOrder_result) + return this.equals((findKeyOperatorValuesOrder_result)that); return false; } - public boolean equals(findKeyOperatorValuesOrderPage_result that) { + public boolean equals(findKeyOperatorValuesOrder_result that) { if (that == null) return false; if (this == that) @@ -621234,7 +620158,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesOrderPage_result other) { + public int compareTo(findKeyOperatorValuesOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -621301,7 +620225,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesOrder_result("); boolean first = true; sb.append("success:"); @@ -621360,17 +620284,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesOrderPage_resultStandardScheme getScheme() { - return new findKeyOperatorValuesOrderPage_resultStandardScheme(); + public findKeyOperatorValuesOrder_resultStandardScheme getScheme() { + return new findKeyOperatorValuesOrder_resultStandardScheme(); } } - private static class findKeyOperatorValuesOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -621383,13 +620307,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6622 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6622.size); - long _elem6623; - for (int _i6624 = 0; _i6624 < _set6622.size; ++_i6624) + org.apache.thrift.protocol.TSet _set6606 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6606.size); + long _elem6607; + for (int _i6608 = 0; _i6608 < _set6606.size; ++_i6608) { - _elem6623 = iprot.readI64(); - struct.success.add(_elem6623); + _elem6607 = iprot.readI64(); + struct.success.add(_elem6607); } iprot.readSetEnd(); } @@ -621437,7 +620361,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -621445,9 +620369,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6625 : struct.success) + for (long _iter6609 : struct.success) { - oprot.writeI64(_iter6625); + oprot.writeI64(_iter6609); } oprot.writeSetEnd(); } @@ -621474,17 +620398,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesOrderPage_resultTupleScheme getScheme() { - return new findKeyOperatorValuesOrderPage_resultTupleScheme(); + public findKeyOperatorValuesOrder_resultTupleScheme getScheme() { + return new findKeyOperatorValuesOrder_resultTupleScheme(); } } - private static class findKeyOperatorValuesOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -621503,9 +620427,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6626 : struct.success) + for (long _iter6610 : struct.success) { - oprot.writeI64(_iter6626); + oprot.writeI64(_iter6610); } } } @@ -621521,18 +620445,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6627 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6627.size); - long _elem6628; - for (int _i6629 = 0; _i6629 < _set6627.size; ++_i6629) + org.apache.thrift.protocol.TSet _set6611 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6611.size); + long _elem6612; + for (int _i6613 = 0; _i6613 < _set6611.size; ++_i6613) { - _elem6628 = iprot.readI64(); - struct.success.add(_elem6628); + _elem6612 = iprot.readI64(); + struct.success.add(_elem6612); } } struct.setSuccessIsSet(true); @@ -621560,19 +620484,20 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTime_args"); + public static class findKeyOperatorValuesOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -621581,7 +620506,8 @@ public static class findKeyOperatorValuesTime_args implements org.apache.thrift. */ public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -621595,10 +620521,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { */ OPERATOR((short)2, "operator"), VALUES((short)3, "values"), - TIMESTAMP((short)4, "timestamp"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -621620,13 +620547,15 @@ public static _Fields findByThriftId(int fieldId) { return OPERATOR; case 3: // VALUES return VALUES; - case 4: // TIMESTAMP - return TIMESTAMP; - case 5: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 6: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -621671,8 +620600,6 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -621683,8 +620610,10 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -621692,17 +620621,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesOrderPage_args.class, metaDataMap); } - public findKeyOperatorValuesTime_args() { + public findKeyOperatorValuesOrderPage_args() { } - public findKeyOperatorValuesTime_args( + public findKeyOperatorValuesOrderPage_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, - long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -621711,8 +620641,8 @@ public findKeyOperatorValuesTime_args( this.key = key; this.operator = operator; this.values = values; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -621721,8 +620651,7 @@ public findKeyOperatorValuesTime_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTime_args(findKeyOperatorValuesTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public findKeyOperatorValuesOrderPage_args(findKeyOperatorValuesOrderPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -621736,7 +620665,12 @@ public findKeyOperatorValuesTime_args(findKeyOperatorValuesTime_args other) { } this.values = __this__values; } - this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -621749,8 +620683,8 @@ public findKeyOperatorValuesTime_args(findKeyOperatorValuesTime_args other) { } @Override - public findKeyOperatorValuesTime_args deepCopy() { - return new findKeyOperatorValuesTime_args(this); + public findKeyOperatorValuesOrderPage_args deepCopy() { + return new findKeyOperatorValuesOrderPage_args(this); } @Override @@ -621758,8 +620692,8 @@ public void clear() { this.key = null; this.operator = null; this.values = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -621770,7 +620704,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -621803,7 +620737,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesTime_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -621844,7 +620778,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesTime_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -621864,27 +620798,54 @@ public void setValuesIsSet(boolean value) { } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public findKeyOperatorValuesTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public findKeyOperatorValuesOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public findKeyOperatorValuesOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -621892,7 +620853,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -621917,7 +620878,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -621942,7 +620903,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -621989,11 +620950,19 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -622037,8 +621006,11 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUES: return getValues(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -622067,8 +621039,10 @@ public boolean isSet(_Fields field) { return isSetOperator(); case VALUES: return isSetValues(); - case TIMESTAMP: - return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -622081,12 +621055,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTime_args) - return this.equals((findKeyOperatorValuesTime_args)that); + if (that instanceof findKeyOperatorValuesOrderPage_args) + return this.equals((findKeyOperatorValuesOrderPage_args)that); return false; } - public boolean equals(findKeyOperatorValuesTime_args that) { + public boolean equals(findKeyOperatorValuesOrderPage_args that) { if (that == null) return false; if (this == that) @@ -622119,12 +621093,21 @@ public boolean equals(findKeyOperatorValuesTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -622174,7 +621157,13 @@ public int hashCode() { if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -622192,7 +621181,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTime_args other) { + public int compareTo(findKeyOperatorValuesOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -622229,12 +621218,22 @@ public int compareTo(findKeyOperatorValuesTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -622290,7 +621289,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesOrderPage_args("); boolean first = true; sb.append("key:"); @@ -622317,8 +621316,20 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -622351,6 +621362,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -622369,25 +621386,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 findKeyOperatorValuesTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTime_argsStandardScheme getScheme() { - return new findKeyOperatorValuesTime_argsStandardScheme(); + public findKeyOperatorValuesOrderPage_argsStandardScheme getScheme() { + return new findKeyOperatorValuesOrderPage_argsStandardScheme(); } } - private static class findKeyOperatorValuesTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -622416,14 +621431,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6630 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6630.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6631; - for (int _i6632 = 0; _i6632 < _list6630.size; ++_i6632) + org.apache.thrift.protocol.TList _list6614 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6614.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6615; + for (int _i6616 = 0; _i6616 < _list6614.size; ++_i6616) { - _elem6631 = new com.cinchapi.concourse.thrift.TObject(); - _elem6631.read(iprot); - struct.values.add(_elem6631); + _elem6615 = new com.cinchapi.concourse.thrift.TObject(); + _elem6615.read(iprot); + struct.values.add(_elem6615); } iprot.readListEnd(); } @@ -622432,15 +621447,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // CREDS + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -622449,7 +621474,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -622458,7 +621483,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -622478,7 +621503,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -622496,17 +621521,24 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6633 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6617 : struct.values) { - _iter6633.write(oprot); + _iter6617.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -622528,17 +621560,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTime_argsTupleScheme getScheme() { - return new findKeyOperatorValuesTime_argsTupleScheme(); + public findKeyOperatorValuesOrderPage_argsTupleScheme getScheme() { + return new findKeyOperatorValuesOrderPage_argsTupleScheme(); } } - private static class findKeyOperatorValuesTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -622550,19 +621582,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { optionals.set(2); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(5); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(6); } - oprot.writeBitSet(optionals, 7); + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -622572,14 +621607,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6634 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6618 : struct.values) { - _iter6634.write(oprot); + _iter6618.write(oprot); } } } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -622593,9 +621631,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -622606,33 +621644,39 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6635 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6635.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6636; - for (int _i6637 = 0; _i6637 < _list6635.size; ++_i6637) + org.apache.thrift.protocol.TList _list6619 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6619.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6620; + for (int _i6621 = 0; _i6621 < _list6619.size; ++_i6621) { - _elem6636 = new com.cinchapi.concourse.thrift.TObject(); - _elem6636.read(iprot); - struct.values.add(_elem6636); + _elem6620 = new com.cinchapi.concourse.thrift.TObject(); + _elem6620.read(iprot); + struct.values.add(_elem6620); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -622644,16 +621688,16 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTime_result"); + public static class findKeyOperatorValuesOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -622745,13 +621789,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesOrderPage_result.class, metaDataMap); } - public findKeyOperatorValuesTime_result() { + public findKeyOperatorValuesOrderPage_result() { } - public findKeyOperatorValuesTime_result( + public findKeyOperatorValuesOrderPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -622767,7 +621811,7 @@ public findKeyOperatorValuesTime_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTime_result(findKeyOperatorValuesTime_result other) { + public findKeyOperatorValuesOrderPage_result(findKeyOperatorValuesOrderPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -622784,8 +621828,8 @@ public findKeyOperatorValuesTime_result(findKeyOperatorValuesTime_result other) } @Override - public findKeyOperatorValuesTime_result deepCopy() { - return new findKeyOperatorValuesTime_result(this); + public findKeyOperatorValuesOrderPage_result deepCopy() { + return new findKeyOperatorValuesOrderPage_result(this); } @Override @@ -622817,7 +621861,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -622842,7 +621886,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -622867,7 +621911,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -622892,7 +621936,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findKeyOperatorValuesTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findKeyOperatorValuesOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -622992,12 +622036,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTime_result) - return this.equals((findKeyOperatorValuesTime_result)that); + if (that instanceof findKeyOperatorValuesOrderPage_result) + return this.equals((findKeyOperatorValuesOrderPage_result)that); return false; } - public boolean equals(findKeyOperatorValuesTime_result that) { + public boolean equals(findKeyOperatorValuesOrderPage_result that) { if (that == null) return false; if (this == that) @@ -623066,7 +622110,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTime_result other) { + public int compareTo(findKeyOperatorValuesOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -623133,7 +622177,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesOrderPage_result("); boolean first = true; sb.append("success:"); @@ -623192,17 +622236,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTime_resultStandardScheme getScheme() { - return new findKeyOperatorValuesTime_resultStandardScheme(); + public findKeyOperatorValuesOrderPage_resultStandardScheme getScheme() { + return new findKeyOperatorValuesOrderPage_resultStandardScheme(); } } - private static class findKeyOperatorValuesTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -623215,13 +622259,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6638 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6638.size); - long _elem6639; - for (int _i6640 = 0; _i6640 < _set6638.size; ++_i6640) + org.apache.thrift.protocol.TSet _set6622 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6622.size); + long _elem6623; + for (int _i6624 = 0; _i6624 < _set6622.size; ++_i6624) { - _elem6639 = iprot.readI64(); - struct.success.add(_elem6639); + _elem6623 = iprot.readI64(); + struct.success.add(_elem6623); } iprot.readSetEnd(); } @@ -623269,7 +622313,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -623277,9 +622321,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6641 : struct.success) + for (long _iter6625 : struct.success) { - oprot.writeI64(_iter6641); + oprot.writeI64(_iter6625); } oprot.writeSetEnd(); } @@ -623306,17 +622350,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTime_resultTupleScheme getScheme() { - return new findKeyOperatorValuesTime_resultTupleScheme(); + public findKeyOperatorValuesOrderPage_resultTupleScheme getScheme() { + return new findKeyOperatorValuesOrderPage_resultTupleScheme(); } } - private static class findKeyOperatorValuesTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -623335,9 +622379,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6642 : struct.success) + for (long _iter6626 : struct.success) { - oprot.writeI64(_iter6642); + oprot.writeI64(_iter6626); } } } @@ -623353,18 +622397,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6643 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6643.size); - long _elem6644; - for (int _i6645 = 0; _i6645 < _set6643.size; ++_i6645) + org.apache.thrift.protocol.TSet _set6627 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6627.size); + long _elem6628; + for (int _i6629 = 0; _i6629 < _set6627.size; ++_i6629) { - _elem6644 = iprot.readI64(); - struct.success.add(_elem6644); + _elem6628 = iprot.readI64(); + struct.success.add(_elem6628); } } struct.setSuccessIsSet(true); @@ -623392,20 +622436,19 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimePage_args"); + public static class findKeyOperatorValuesTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -623415,7 +622458,6 @@ public static class findKeyOperatorValuesTimePage_args implements org.apache.thr public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -623430,10 +622472,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -623457,13 +622498,11 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -623522,8 +622561,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -623531,18 +622568,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTime_args.class, metaDataMap); } - public findKeyOperatorValuesTimePage_args() { + public findKeyOperatorValuesTime_args() { } - public findKeyOperatorValuesTimePage_args( + public findKeyOperatorValuesTime_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -623553,7 +622589,6 @@ public findKeyOperatorValuesTimePage_args( this.values = values; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -623562,7 +622597,7 @@ public findKeyOperatorValuesTimePage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimePage_args(findKeyOperatorValuesTimePage_args other) { + public findKeyOperatorValuesTime_args(findKeyOperatorValuesTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -623578,9 +622613,6 @@ public findKeyOperatorValuesTimePage_args(findKeyOperatorValuesTimePage_args oth this.values = __this__values; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -623593,8 +622625,8 @@ public findKeyOperatorValuesTimePage_args(findKeyOperatorValuesTimePage_args oth } @Override - public findKeyOperatorValuesTimePage_args deepCopy() { - return new findKeyOperatorValuesTimePage_args(this); + public findKeyOperatorValuesTime_args deepCopy() { + return new findKeyOperatorValuesTime_args(this); } @Override @@ -623604,7 +622636,6 @@ public void clear() { this.values = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -623615,7 +622646,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -623648,7 +622679,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesTimePage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesTime_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -623689,7 +622720,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesTimePage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesTime_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -623713,7 +622744,7 @@ public long getTimestamp() { return this.timestamp; } - public findKeyOperatorValuesTimePage_args setTimestamp(long timestamp) { + public findKeyOperatorValuesTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -623732,37 +622763,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorValuesTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -623787,7 +622793,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -623812,7 +622818,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -623867,14 +622873,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -623918,9 +622916,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -623950,8 +622945,6 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -623964,12 +622957,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimePage_args) - return this.equals((findKeyOperatorValuesTimePage_args)that); + if (that instanceof findKeyOperatorValuesTime_args) + return this.equals((findKeyOperatorValuesTime_args)that); return false; } - public boolean equals(findKeyOperatorValuesTimePage_args that) { + public boolean equals(findKeyOperatorValuesTime_args that) { if (that == null) return false; if (this == that) @@ -624011,15 +623004,6 @@ public boolean equals(findKeyOperatorValuesTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -624068,10 +623052,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -624088,7 +623068,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimePage_args other) { + public int compareTo(findKeyOperatorValuesTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -624135,16 +623115,6 @@ public int compareTo(findKeyOperatorValuesTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -624196,7 +623166,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTime_args("); boolean first = true; sb.append("key:"); @@ -624227,14 +623197,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -624265,9 +623227,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -624294,17 +623253,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimePage_argsStandardScheme getScheme() { - return new findKeyOperatorValuesTimePage_argsStandardScheme(); + public findKeyOperatorValuesTime_argsStandardScheme getScheme() { + return new findKeyOperatorValuesTime_argsStandardScheme(); } } - private static class findKeyOperatorValuesTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -624333,14 +623292,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6646 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6646.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6647; - for (int _i6648 = 0; _i6648 < _list6646.size; ++_i6648) + org.apache.thrift.protocol.TList _list6630 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6630.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6631; + for (int _i6632 = 0; _i6632 < _list6630.size; ++_i6632) { - _elem6647 = new com.cinchapi.concourse.thrift.TObject(); - _elem6647.read(iprot); - struct.values.add(_elem6647); + _elem6631 = new com.cinchapi.concourse.thrift.TObject(); + _elem6631.read(iprot); + struct.values.add(_elem6631); } iprot.readListEnd(); } @@ -624357,16 +623316,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -624375,7 +623325,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -624384,7 +623334,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -624404,7 +623354,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -624422,9 +623372,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6649 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6633 : struct.values) { - _iter6649.write(oprot); + _iter6633.write(oprot); } oprot.writeListEnd(); } @@ -624433,11 +623383,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -624459,17 +623404,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimePage_argsTupleScheme getScheme() { - return new findKeyOperatorValuesTimePage_argsTupleScheme(); + public findKeyOperatorValuesTime_argsTupleScheme getScheme() { + return new findKeyOperatorValuesTime_argsTupleScheme(); } } - private static class findKeyOperatorValuesTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -624484,19 +623429,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -624506,18 +623448,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6650 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6634 : struct.values) { - _iter6650.write(oprot); + _iter6634.write(oprot); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -624530,9 +623469,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -624543,14 +623482,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6651 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6651.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6652; - for (int _i6653 = 0; _i6653 < _list6651.size; ++_i6653) + org.apache.thrift.protocol.TList _list6635 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6635.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6636; + for (int _i6637 = 0; _i6637 < _list6635.size; ++_i6637) { - _elem6652 = new com.cinchapi.concourse.thrift.TObject(); - _elem6652.read(iprot); - struct.values.add(_elem6652); + _elem6636 = new com.cinchapi.concourse.thrift.TObject(); + _elem6636.read(iprot); + struct.values.add(_elem6636); } } struct.setValuesIsSet(true); @@ -624560,21 +623499,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setTimestampIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -624586,16 +623520,16 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimePage_result"); + public static class findKeyOperatorValuesTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -624687,13 +623621,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTime_result.class, metaDataMap); } - public findKeyOperatorValuesTimePage_result() { + public findKeyOperatorValuesTime_result() { } - public findKeyOperatorValuesTimePage_result( + public findKeyOperatorValuesTime_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -624709,7 +623643,7 @@ public findKeyOperatorValuesTimePage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimePage_result(findKeyOperatorValuesTimePage_result other) { + public findKeyOperatorValuesTime_result(findKeyOperatorValuesTime_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -624726,8 +623660,8 @@ public findKeyOperatorValuesTimePage_result(findKeyOperatorValuesTimePage_result } @Override - public findKeyOperatorValuesTimePage_result deepCopy() { - return new findKeyOperatorValuesTimePage_result(this); + public findKeyOperatorValuesTime_result deepCopy() { + return new findKeyOperatorValuesTime_result(this); } @Override @@ -624759,7 +623693,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -624784,7 +623718,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -624809,7 +623743,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -624834,7 +623768,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findKeyOperatorValuesTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findKeyOperatorValuesTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -624934,12 +623868,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimePage_result) - return this.equals((findKeyOperatorValuesTimePage_result)that); + if (that instanceof findKeyOperatorValuesTime_result) + return this.equals((findKeyOperatorValuesTime_result)that); return false; } - public boolean equals(findKeyOperatorValuesTimePage_result that) { + public boolean equals(findKeyOperatorValuesTime_result that) { if (that == null) return false; if (this == that) @@ -625008,7 +623942,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimePage_result other) { + public int compareTo(findKeyOperatorValuesTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -625075,7 +624009,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTime_result("); boolean first = true; sb.append("success:"); @@ -625134,17 +624068,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimePage_resultStandardScheme getScheme() { - return new findKeyOperatorValuesTimePage_resultStandardScheme(); + public findKeyOperatorValuesTime_resultStandardScheme getScheme() { + return new findKeyOperatorValuesTime_resultStandardScheme(); } } - private static class findKeyOperatorValuesTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -625157,13 +624091,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6654 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6654.size); - long _elem6655; - for (int _i6656 = 0; _i6656 < _set6654.size; ++_i6656) + org.apache.thrift.protocol.TSet _set6638 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6638.size); + long _elem6639; + for (int _i6640 = 0; _i6640 < _set6638.size; ++_i6640) { - _elem6655 = iprot.readI64(); - struct.success.add(_elem6655); + _elem6639 = iprot.readI64(); + struct.success.add(_elem6639); } iprot.readSetEnd(); } @@ -625211,7 +624145,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -625219,9 +624153,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6657 : struct.success) + for (long _iter6641 : struct.success) { - oprot.writeI64(_iter6657); + oprot.writeI64(_iter6641); } oprot.writeSetEnd(); } @@ -625248,17 +624182,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimePage_resultTupleScheme getScheme() { - return new findKeyOperatorValuesTimePage_resultTupleScheme(); + public findKeyOperatorValuesTime_resultTupleScheme getScheme() { + return new findKeyOperatorValuesTime_resultTupleScheme(); } } - private static class findKeyOperatorValuesTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -625277,9 +624211,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6658 : struct.success) + for (long _iter6642 : struct.success) { - oprot.writeI64(_iter6658); + oprot.writeI64(_iter6642); } } } @@ -625295,18 +624229,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6659 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6659.size); - long _elem6660; - for (int _i6661 = 0; _i6661 < _set6659.size; ++_i6661) + org.apache.thrift.protocol.TSet _set6643 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6643.size); + long _elem6644; + for (int _i6645 = 0; _i6645 < _set6643.size; ++_i6645) { - _elem6660 = iprot.readI64(); - struct.success.add(_elem6660); + _elem6644 = iprot.readI64(); + struct.success.add(_elem6644); } } struct.setSuccessIsSet(true); @@ -625334,20 +624268,20 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimeOrder_args"); + public static class findKeyOperatorValuesTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimePage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -625357,7 +624291,7 @@ public static class findKeyOperatorValuesTimeOrder_args implements org.apache.th public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -625372,7 +624306,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - ORDER((short)5, "order"), + PAGE((short)5, "page"), CREDS((short)6, "creds"), TRANSACTION((short)7, "transaction"), ENVIRONMENT((short)8, "environment"); @@ -625399,8 +624333,8 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // ORDER - return ORDER; + case 5: // PAGE + return PAGE; case 6: // CREDS return CREDS; case 7: // TRANSACTION @@ -625464,8 +624398,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -625473,18 +624407,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimePage_args.class, metaDataMap); } - public findKeyOperatorValuesTimeOrder_args() { + public findKeyOperatorValuesTimePage_args() { } - public findKeyOperatorValuesTimeOrder_args( + public findKeyOperatorValuesTimePage_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -625495,7 +624429,7 @@ public findKeyOperatorValuesTimeOrder_args( this.values = values; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -625504,7 +624438,7 @@ public findKeyOperatorValuesTimeOrder_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimeOrder_args(findKeyOperatorValuesTimeOrder_args other) { + public findKeyOperatorValuesTimePage_args(findKeyOperatorValuesTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -625520,8 +624454,8 @@ public findKeyOperatorValuesTimeOrder_args(findKeyOperatorValuesTimeOrder_args o this.values = __this__values; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -625535,8 +624469,8 @@ public findKeyOperatorValuesTimeOrder_args(findKeyOperatorValuesTimeOrder_args o } @Override - public findKeyOperatorValuesTimeOrder_args deepCopy() { - return new findKeyOperatorValuesTimeOrder_args(this); + public findKeyOperatorValuesTimePage_args deepCopy() { + return new findKeyOperatorValuesTimePage_args(this); } @Override @@ -625546,7 +624480,7 @@ public void clear() { this.values = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -625557,7 +624491,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -625590,7 +624524,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesTimeOrder_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesTimePage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -625631,7 +624565,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesTimeOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesTimePage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -625655,7 +624589,7 @@ public long getTimestamp() { return this.timestamp; } - public findKeyOperatorValuesTimeOrder_args setTimestamp(long timestamp) { + public findKeyOperatorValuesTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -625675,27 +624609,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findKeyOperatorValuesTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public findKeyOperatorValuesTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -625704,7 +624638,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -625729,7 +624663,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -625754,7 +624688,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -625809,11 +624743,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -625860,8 +624794,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -625892,8 +624826,8 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -625906,12 +624840,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimeOrder_args) - return this.equals((findKeyOperatorValuesTimeOrder_args)that); + if (that instanceof findKeyOperatorValuesTimePage_args) + return this.equals((findKeyOperatorValuesTimePage_args)that); return false; } - public boolean equals(findKeyOperatorValuesTimeOrder_args that) { + public boolean equals(findKeyOperatorValuesTimePage_args that) { if (that == null) return false; if (this == that) @@ -625953,12 +624887,12 @@ public boolean equals(findKeyOperatorValuesTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -626010,9 +624944,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -626030,7 +624964,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimeOrder_args other) { + public int compareTo(findKeyOperatorValuesTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -626077,12 +625011,12 @@ public int compareTo(findKeyOperatorValuesTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -626138,7 +625072,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimePage_args("); boolean first = true; sb.append("key:"); @@ -626169,11 +625103,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -626207,8 +625141,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -626236,17 +625170,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimeOrder_argsStandardScheme getScheme() { - return new findKeyOperatorValuesTimeOrder_argsStandardScheme(); + public findKeyOperatorValuesTimePage_argsStandardScheme getScheme() { + return new findKeyOperatorValuesTimePage_argsStandardScheme(); } } - private static class findKeyOperatorValuesTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -626275,14 +625209,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6662 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6662.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6663; - for (int _i6664 = 0; _i6664 < _list6662.size; ++_i6664) + org.apache.thrift.protocol.TList _list6646 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6646.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6647; + for (int _i6648 = 0; _i6648 < _list6646.size; ++_i6648) { - _elem6663 = new com.cinchapi.concourse.thrift.TObject(); - _elem6663.read(iprot); - struct.values.add(_elem6663); + _elem6647 = new com.cinchapi.concourse.thrift.TObject(); + _elem6647.read(iprot); + struct.values.add(_elem6647); } iprot.readListEnd(); } @@ -626299,11 +625233,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ORDER + case 5: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -626346,7 +625280,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -626364,9 +625298,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6665 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6649 : struct.values) { - _iter6665.write(oprot); + _iter6649.write(oprot); } oprot.writeListEnd(); } @@ -626375,9 +625309,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -626401,17 +625335,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimeOrder_argsTupleScheme getScheme() { - return new findKeyOperatorValuesTimeOrder_argsTupleScheme(); + public findKeyOperatorValuesTimePage_argsTupleScheme getScheme() { + return new findKeyOperatorValuesTimePage_argsTupleScheme(); } } - private static class findKeyOperatorValuesTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -626426,7 +625360,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(4); } if (struct.isSetCreds()) { @@ -626448,17 +625382,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6666 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6650 : struct.values) { - _iter6666.write(oprot); + _iter6650.write(oprot); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -626472,7 +625406,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { @@ -626485,14 +625419,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6667 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6667.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6668; - for (int _i6669 = 0; _i6669 < _list6667.size; ++_i6669) + org.apache.thrift.protocol.TList _list6651 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6651.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6652; + for (int _i6653 = 0; _i6653 < _list6651.size; ++_i6653) { - _elem6668 = new com.cinchapi.concourse.thrift.TObject(); - _elem6668.read(iprot); - struct.values.add(_elem6668); + _elem6652 = new com.cinchapi.concourse.thrift.TObject(); + _elem6652.read(iprot); + struct.values.add(_elem6652); } } struct.setValuesIsSet(true); @@ -626502,9 +625436,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setTimestampIsSet(true); } if (incoming.get(4)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -626528,16 +625462,16 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimeOrder_result"); + public static class findKeyOperatorValuesTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -626629,13 +625563,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimePage_result.class, metaDataMap); } - public findKeyOperatorValuesTimeOrder_result() { + public findKeyOperatorValuesTimePage_result() { } - public findKeyOperatorValuesTimeOrder_result( + public findKeyOperatorValuesTimePage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -626651,7 +625585,7 @@ public findKeyOperatorValuesTimeOrder_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimeOrder_result(findKeyOperatorValuesTimeOrder_result other) { + public findKeyOperatorValuesTimePage_result(findKeyOperatorValuesTimePage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -626668,8 +625602,8 @@ public findKeyOperatorValuesTimeOrder_result(findKeyOperatorValuesTimeOrder_resu } @Override - public findKeyOperatorValuesTimeOrder_result deepCopy() { - return new findKeyOperatorValuesTimeOrder_result(this); + public findKeyOperatorValuesTimePage_result deepCopy() { + return new findKeyOperatorValuesTimePage_result(this); } @Override @@ -626701,7 +625635,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -626726,7 +625660,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -626751,7 +625685,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -626776,7 +625710,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findKeyOperatorValuesTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findKeyOperatorValuesTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -626876,12 +625810,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimeOrder_result) - return this.equals((findKeyOperatorValuesTimeOrder_result)that); + if (that instanceof findKeyOperatorValuesTimePage_result) + return this.equals((findKeyOperatorValuesTimePage_result)that); return false; } - public boolean equals(findKeyOperatorValuesTimeOrder_result that) { + public boolean equals(findKeyOperatorValuesTimePage_result that) { if (that == null) return false; if (this == that) @@ -626950,7 +625884,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimeOrder_result other) { + public int compareTo(findKeyOperatorValuesTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -627017,7 +625951,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimePage_result("); boolean first = true; sb.append("success:"); @@ -627076,17 +626010,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimeOrder_resultStandardScheme getScheme() { - return new findKeyOperatorValuesTimeOrder_resultStandardScheme(); + public findKeyOperatorValuesTimePage_resultStandardScheme getScheme() { + return new findKeyOperatorValuesTimePage_resultStandardScheme(); } } - private static class findKeyOperatorValuesTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -627099,13 +626033,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6670 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6670.size); - long _elem6671; - for (int _i6672 = 0; _i6672 < _set6670.size; ++_i6672) + org.apache.thrift.protocol.TSet _set6654 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6654.size); + long _elem6655; + for (int _i6656 = 0; _i6656 < _set6654.size; ++_i6656) { - _elem6671 = iprot.readI64(); - struct.success.add(_elem6671); + _elem6655 = iprot.readI64(); + struct.success.add(_elem6655); } iprot.readSetEnd(); } @@ -627153,7 +626087,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -627161,9 +626095,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6673 : struct.success) + for (long _iter6657 : struct.success) { - oprot.writeI64(_iter6673); + oprot.writeI64(_iter6657); } oprot.writeSetEnd(); } @@ -627190,17 +626124,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimeOrder_resultTupleScheme getScheme() { - return new findKeyOperatorValuesTimeOrder_resultTupleScheme(); + public findKeyOperatorValuesTimePage_resultTupleScheme getScheme() { + return new findKeyOperatorValuesTimePage_resultTupleScheme(); } } - private static class findKeyOperatorValuesTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -627219,9 +626153,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6674 : struct.success) + for (long _iter6658 : struct.success) { - oprot.writeI64(_iter6674); + oprot.writeI64(_iter6658); } } } @@ -627237,18 +626171,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6675 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6675.size); - long _elem6676; - for (int _i6677 = 0; _i6677 < _set6675.size; ++_i6677) + org.apache.thrift.protocol.TSet _set6659 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6659.size); + long _elem6660; + for (int _i6661 = 0; _i6661 < _set6659.size; ++_i6661) { - _elem6676 = iprot.readI64(); - struct.success.add(_elem6676); + _elem6660 = iprot.readI64(); + struct.success.add(_elem6660); } } struct.setSuccessIsSet(true); @@ -627276,21 +626210,20 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimeOrderPage_args"); + public static class findKeyOperatorValuesTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)8); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)9); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -627301,7 +626234,6 @@ public static class findKeyOperatorValuesTimeOrderPage_args implements org.apach public @org.apache.thrift.annotation.Nullable java.util.List values; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -627317,10 +626249,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), ORDER((short)5, "order"), - PAGE((short)6, "page"), - CREDS((short)7, "creds"), - TRANSACTION((short)8, "transaction"), - ENVIRONMENT((short)9, "environment"); + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -627346,13 +626277,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 5: // ORDER return ORDER; - case 6: // PAGE - return PAGE; - case 7: // CREDS + case 6: // CREDS return CREDS; - case 8: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 9: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -627413,8 +626342,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -627422,19 +626349,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimeOrder_args.class, metaDataMap); } - public findKeyOperatorValuesTimeOrderPage_args() { + public findKeyOperatorValuesTimeOrder_args() { } - public findKeyOperatorValuesTimeOrderPage_args( + public findKeyOperatorValuesTimeOrder_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -627446,7 +626372,6 @@ public findKeyOperatorValuesTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -627455,7 +626380,7 @@ public findKeyOperatorValuesTimeOrderPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimeOrderPage_args(findKeyOperatorValuesTimeOrderPage_args other) { + public findKeyOperatorValuesTimeOrder_args(findKeyOperatorValuesTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -627474,9 +626399,6 @@ public findKeyOperatorValuesTimeOrderPage_args(findKeyOperatorValuesTimeOrderPag if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -627489,8 +626411,8 @@ public findKeyOperatorValuesTimeOrderPage_args(findKeyOperatorValuesTimeOrderPag } @Override - public findKeyOperatorValuesTimeOrderPage_args deepCopy() { - return new findKeyOperatorValuesTimeOrderPage_args(this); + public findKeyOperatorValuesTimeOrder_args deepCopy() { + return new findKeyOperatorValuesTimeOrder_args(this); } @Override @@ -627501,7 +626423,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -627512,7 +626433,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -627545,7 +626466,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesTimeOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesTimeOrder_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -627586,7 +626507,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesTimeOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesTimeOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -627610,7 +626531,7 @@ public long getTimestamp() { return this.timestamp; } - public findKeyOperatorValuesTimeOrderPage_args setTimestamp(long timestamp) { + public findKeyOperatorValuesTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -627634,7 +626555,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public findKeyOperatorValuesTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public findKeyOperatorValuesTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -627654,37 +626575,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorValuesTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -627709,7 +626605,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -627734,7 +626630,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -627797,14 +626693,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -627851,9 +626739,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -627885,8 +626770,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -627899,12 +626782,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimeOrderPage_args) - return this.equals((findKeyOperatorValuesTimeOrderPage_args)that); + if (that instanceof findKeyOperatorValuesTimeOrder_args) + return this.equals((findKeyOperatorValuesTimeOrder_args)that); return false; } - public boolean equals(findKeyOperatorValuesTimeOrderPage_args that) { + public boolean equals(findKeyOperatorValuesTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -627955,15 +626838,6 @@ public boolean equals(findKeyOperatorValuesTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -628016,10 +626890,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -628036,7 +626906,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimeOrderPage_args other) { + public int compareTo(findKeyOperatorValuesTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -628093,16 +626963,6 @@ public int compareTo(findKeyOperatorValuesTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -628154,7 +627014,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimeOrder_args("); boolean first = true; sb.append("key:"); @@ -628193,14 +627053,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -628234,9 +627086,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -628263,17 +627112,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimeOrderPage_argsStandardScheme getScheme() { - return new findKeyOperatorValuesTimeOrderPage_argsStandardScheme(); + public findKeyOperatorValuesTimeOrder_argsStandardScheme getScheme() { + return new findKeyOperatorValuesTimeOrder_argsStandardScheme(); } } - private static class findKeyOperatorValuesTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -628302,14 +627151,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6678 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6678.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6679; - for (int _i6680 = 0; _i6680 < _list6678.size; ++_i6680) + org.apache.thrift.protocol.TList _list6662 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6662.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6663; + for (int _i6664 = 0; _i6664 < _list6662.size; ++_i6664) { - _elem6679 = new com.cinchapi.concourse.thrift.TObject(); - _elem6679.read(iprot); - struct.values.add(_elem6679); + _elem6663 = new com.cinchapi.concourse.thrift.TObject(); + _elem6663.read(iprot); + struct.values.add(_elem6663); } iprot.readListEnd(); } @@ -628335,16 +627184,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 7: // CREDS + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -628353,7 +627193,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -628362,7 +627202,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 9: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -628382,7 +627222,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -628400,9 +627240,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6681 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6665 : struct.values) { - _iter6681.write(oprot); + _iter6665.write(oprot); } oprot.writeListEnd(); } @@ -628416,11 +627256,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -628442,17 +627277,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimeOrderPage_argsTupleScheme getScheme() { - return new findKeyOperatorValuesTimeOrderPage_argsTupleScheme(); + public findKeyOperatorValuesTimeOrder_argsTupleScheme getScheme() { + return new findKeyOperatorValuesTimeOrder_argsTupleScheme(); } } - private static class findKeyOperatorValuesTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -628470,19 +627305,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetOrder()) { optionals.set(4); } - if (struct.isSetPage()) { - optionals.set(5); - } if (struct.isSetCreds()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetTransaction()) { - optionals.set(7); + optionals.set(6); } if (struct.isSetEnvironment()) { - optionals.set(8); + optionals.set(7); } - oprot.writeBitSet(optionals, 9); + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -628492,9 +627324,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6682 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6666 : struct.values) { - _iter6682.write(oprot); + _iter6666.write(oprot); } } } @@ -628504,9 +627336,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -628519,9 +627348,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(9); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -628532,14 +627361,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6683 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6683.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6684; - for (int _i6685 = 0; _i6685 < _list6683.size; ++_i6685) + org.apache.thrift.protocol.TList _list6667 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6667.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6668; + for (int _i6669 = 0; _i6669 < _list6667.size; ++_i6669) { - _elem6684 = new com.cinchapi.concourse.thrift.TObject(); - _elem6684.read(iprot); - struct.values.add(_elem6684); + _elem6668 = new com.cinchapi.concourse.thrift.TObject(); + _elem6668.read(iprot); + struct.values.add(_elem6668); } } struct.setValuesIsSet(true); @@ -628554,21 +627383,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setOrderIsSet(true); } if (incoming.get(5)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(6)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(8)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -628580,16 +627404,16 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimeOrderPage_result"); + public static class findKeyOperatorValuesTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -628681,13 +627505,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimeOrder_result.class, metaDataMap); } - public findKeyOperatorValuesTimeOrderPage_result() { + public findKeyOperatorValuesTimeOrder_result() { } - public findKeyOperatorValuesTimeOrderPage_result( + public findKeyOperatorValuesTimeOrder_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -628703,7 +627527,7 @@ public findKeyOperatorValuesTimeOrderPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimeOrderPage_result(findKeyOperatorValuesTimeOrderPage_result other) { + public findKeyOperatorValuesTimeOrder_result(findKeyOperatorValuesTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -628720,8 +627544,8 @@ public findKeyOperatorValuesTimeOrderPage_result(findKeyOperatorValuesTimeOrderP } @Override - public findKeyOperatorValuesTimeOrderPage_result deepCopy() { - return new findKeyOperatorValuesTimeOrderPage_result(this); + public findKeyOperatorValuesTimeOrder_result deepCopy() { + return new findKeyOperatorValuesTimeOrder_result(this); } @Override @@ -628753,7 +627577,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -628778,7 +627602,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -628803,7 +627627,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -628828,7 +627652,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findKeyOperatorValuesTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findKeyOperatorValuesTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -628928,12 +627752,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimeOrderPage_result) - return this.equals((findKeyOperatorValuesTimeOrderPage_result)that); + if (that instanceof findKeyOperatorValuesTimeOrder_result) + return this.equals((findKeyOperatorValuesTimeOrder_result)that); return false; } - public boolean equals(findKeyOperatorValuesTimeOrderPage_result that) { + public boolean equals(findKeyOperatorValuesTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -629002,7 +627826,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimeOrderPage_result other) { + public int compareTo(findKeyOperatorValuesTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -629069,7 +627893,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -629128,17 +627952,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimeOrderPage_resultStandardScheme getScheme() { - return new findKeyOperatorValuesTimeOrderPage_resultStandardScheme(); + public findKeyOperatorValuesTimeOrder_resultStandardScheme getScheme() { + return new findKeyOperatorValuesTimeOrder_resultStandardScheme(); } } - private static class findKeyOperatorValuesTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -629151,13 +627975,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6686 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6686.size); - long _elem6687; - for (int _i6688 = 0; _i6688 < _set6686.size; ++_i6688) + org.apache.thrift.protocol.TSet _set6670 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6670.size); + long _elem6671; + for (int _i6672 = 0; _i6672 < _set6670.size; ++_i6672) { - _elem6687 = iprot.readI64(); - struct.success.add(_elem6687); + _elem6671 = iprot.readI64(); + struct.success.add(_elem6671); } iprot.readSetEnd(); } @@ -629205,7 +628029,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -629213,9 +628037,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6689 : struct.success) + for (long _iter6673 : struct.success) { - oprot.writeI64(_iter6689); + oprot.writeI64(_iter6673); } oprot.writeSetEnd(); } @@ -629242,17 +628066,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimeOrderPage_resultTupleScheme getScheme() { - return new findKeyOperatorValuesTimeOrderPage_resultTupleScheme(); + public findKeyOperatorValuesTimeOrder_resultTupleScheme getScheme() { + return new findKeyOperatorValuesTimeOrder_resultTupleScheme(); } } - private static class findKeyOperatorValuesTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -629271,9 +628095,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6690 : struct.success) + for (long _iter6674 : struct.success) { - oprot.writeI64(_iter6690); + oprot.writeI64(_iter6674); } } } @@ -629289,18 +628113,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6691 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6691.size); - long _elem6692; - for (int _i6693 = 0; _i6693 < _set6691.size; ++_i6693) + org.apache.thrift.protocol.TSet _set6675 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6675.size); + long _elem6676; + for (int _i6677 = 0; _i6677 < _set6675.size; ++_i6677) { - _elem6692 = iprot.readI64(); - struct.success.add(_elem6692); + _elem6676 = iprot.readI64(); + struct.success.add(_elem6676); } } struct.setSuccessIsSet(true); @@ -629328,19 +628152,21 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestr_args"); + public static class findKeyOperatorValuesTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)8); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)9); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -629349,7 +628175,9 @@ public static class findKeyOperatorValuesTimestr_args implements org.apache.thri */ public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -629364,9 +628192,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + ORDER((short)5, "order"), + PAGE((short)6, "page"), + CREDS((short)7, "creds"), + TRANSACTION((short)8, "transaction"), + ENVIRONMENT((short)9, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -629390,11 +628220,15 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // CREDS + case 5: // ORDER + return ORDER; + case 6: // PAGE + return PAGE; + case 7: // CREDS return CREDS; - case 6: // TRANSACTION + case 8: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 9: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -629439,6 +628273,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -629450,7 +628286,11 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -629458,17 +628298,19 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimeOrderPage_args.class, metaDataMap); } - public findKeyOperatorValuesTimestr_args() { + public findKeyOperatorValuesTimeOrderPage_args() { } - public findKeyOperatorValuesTimestr_args( + public findKeyOperatorValuesTimeOrderPage_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -629478,6 +628320,9 @@ public findKeyOperatorValuesTimestr_args( this.operator = operator; this.values = values; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -629486,7 +628331,8 @@ public findKeyOperatorValuesTimestr_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimestr_args(findKeyOperatorValuesTimestr_args other) { + public findKeyOperatorValuesTimeOrderPage_args(findKeyOperatorValuesTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } @@ -629500,8 +628346,12 @@ public findKeyOperatorValuesTimestr_args(findKeyOperatorValuesTimestr_args other } this.values = __this__values; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -629515,8 +628365,8 @@ public findKeyOperatorValuesTimestr_args(findKeyOperatorValuesTimestr_args other } @Override - public findKeyOperatorValuesTimestr_args deepCopy() { - return new findKeyOperatorValuesTimestr_args(this); + public findKeyOperatorValuesTimeOrderPage_args deepCopy() { + return new findKeyOperatorValuesTimeOrderPage_args(this); } @Override @@ -629524,7 +628374,10 @@ public void clear() { this.key = null; this.operator = null; this.values = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -629535,7 +628388,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -629568,7 +628421,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesTimestr_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesTimeOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -629609,7 +628462,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesTimestr_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesTimeOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -629629,28 +628482,76 @@ public void setValuesIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public findKeyOperatorValuesTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public findKeyOperatorValuesTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public findKeyOperatorValuesTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public findKeyOperatorValuesTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -629659,7 +628560,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -629684,7 +628585,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -629709,7 +628610,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -629760,7 +628661,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -629807,6 +628724,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -629836,6 +628759,10 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -629848,12 +628775,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimestr_args) - return this.equals((findKeyOperatorValuesTimestr_args)that); + if (that instanceof findKeyOperatorValuesTimeOrderPage_args) + return this.equals((findKeyOperatorValuesTimeOrderPage_args)that); return false; } - public boolean equals(findKeyOperatorValuesTimestr_args that) { + public boolean equals(findKeyOperatorValuesTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -629886,12 +628813,30 @@ public boolean equals(findKeyOperatorValuesTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -629941,9 +628886,15 @@ public int hashCode() { if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -629961,7 +628912,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimestr_args other) { + public int compareTo(findKeyOperatorValuesTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -630008,6 +628959,26 @@ public int compareTo(findKeyOperatorValuesTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -630059,7 +629030,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimeOrderPage_args("); boolean first = true; sb.append("key:"); @@ -630087,10 +629058,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -630124,6 +629107,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -630142,23 +629131,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 findKeyOperatorValuesTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestr_argsStandardScheme getScheme() { - return new findKeyOperatorValuesTimestr_argsStandardScheme(); + public findKeyOperatorValuesTimeOrderPage_argsStandardScheme getScheme() { + return new findKeyOperatorValuesTimeOrderPage_argsStandardScheme(); } } - private static class findKeyOperatorValuesTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -630187,14 +629178,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6694 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6694.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6695; - for (int _i6696 = 0; _i6696 < _list6694.size; ++_i6696) + org.apache.thrift.protocol.TList _list6678 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6678.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6679; + for (int _i6680 = 0; _i6680 < _list6678.size; ++_i6680) { - _elem6695 = new com.cinchapi.concourse.thrift.TObject(); - _elem6695.read(iprot); - struct.values.add(_elem6695); + _elem6679 = new com.cinchapi.concourse.thrift.TObject(); + _elem6679.read(iprot); + struct.values.add(_elem6679); } iprot.readListEnd(); } @@ -630204,14 +629195,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } break; case 4: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // CREDS + case 5: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 7: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -630220,7 +629229,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 8: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -630229,7 +629238,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 9: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -630249,7 +629258,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -630267,17 +629276,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6697 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6681 : struct.values) { - _iter6697.write(oprot); + _iter6681.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -630301,17 +629318,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestr_argsTupleScheme getScheme() { - return new findKeyOperatorValuesTimestr_argsTupleScheme(); + public findKeyOperatorValuesTimeOrderPage_argsTupleScheme getScheme() { + return new findKeyOperatorValuesTimeOrderPage_argsTupleScheme(); } } - private static class findKeyOperatorValuesTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -630326,16 +629343,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(4); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(5); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(6); } - oprot.writeBitSet(optionals, 7); + if (struct.isSetTransaction()) { + optionals.set(7); + } + if (struct.isSetEnvironment()) { + optionals.set(8); + } + oprot.writeBitSet(optionals, 9); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -630345,14 +629368,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6698 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6682 : struct.values) { - _iter6698.write(oprot); + _iter6682.write(oprot); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -630366,9 +629395,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(9); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -630379,33 +629408,43 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6699 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6699.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6700; - for (int _i6701 = 0; _i6701 < _list6699.size; ++_i6701) + org.apache.thrift.protocol.TList _list6683 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6683.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6684; + for (int _i6685 = 0; _i6685 < _list6683.size; ++_i6685) { - _elem6700 = new com.cinchapi.concourse.thrift.TObject(); - _elem6700.read(iprot); - struct.values.add(_elem6700); + _elem6684 = new com.cinchapi.concourse.thrift.TObject(); + _elem6684.read(iprot); + struct.values.add(_elem6684); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(4)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(5)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(6)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(8)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -630417,31 +629456,28 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestr_result"); + public static class findKeyOperatorValuesTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -630465,8 +629501,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -630521,35 +629555,31 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimeOrderPage_result.class, metaDataMap); } - public findKeyOperatorValuesTimestr_result() { + public findKeyOperatorValuesTimeOrderPage_result() { } - public findKeyOperatorValuesTimestr_result( + public findKeyOperatorValuesTimeOrderPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimestr_result(findKeyOperatorValuesTimestr_result other) { + public findKeyOperatorValuesTimeOrderPage_result(findKeyOperatorValuesTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -630561,16 +629591,13 @@ public findKeyOperatorValuesTimestr_result(findKeyOperatorValuesTimestr_result o this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public findKeyOperatorValuesTimestr_result deepCopy() { - return new findKeyOperatorValuesTimestr_result(this); + public findKeyOperatorValuesTimeOrderPage_result deepCopy() { + return new findKeyOperatorValuesTimeOrderPage_result(this); } @Override @@ -630579,7 +629606,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public int getSuccessSize() { @@ -630603,7 +629629,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -630628,7 +629654,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -630653,7 +629679,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -630674,11 +629700,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findKeyOperatorValuesTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorValuesTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -630698,31 +629724,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public findKeyOperatorValuesTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -630754,15 +629755,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -630785,9 +629778,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -630808,20 +629798,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimestr_result) - return this.equals((findKeyOperatorValuesTimestr_result)that); + if (that instanceof findKeyOperatorValuesTimeOrderPage_result) + return this.equals((findKeyOperatorValuesTimeOrderPage_result)that); return false; } - public boolean equals(findKeyOperatorValuesTimestr_result that) { + public boolean equals(findKeyOperatorValuesTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -630863,15 +629851,6 @@ public boolean equals(findKeyOperatorValuesTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -630895,15 +629874,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(findKeyOperatorValuesTimestr_result other) { + public int compareTo(findKeyOperatorValuesTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -630950,16 +629925,6 @@ public int compareTo(findKeyOperatorValuesTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -630980,7 +629945,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -631014,14 +629979,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -631047,17 +630004,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestr_resultStandardScheme getScheme() { - return new findKeyOperatorValuesTimestr_resultStandardScheme(); + public findKeyOperatorValuesTimeOrderPage_resultStandardScheme getScheme() { + return new findKeyOperatorValuesTimeOrderPage_resultStandardScheme(); } } - private static class findKeyOperatorValuesTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -631070,13 +630027,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6702 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6702.size); - long _elem6703; - for (int _i6704 = 0; _i6704 < _set6702.size; ++_i6704) + org.apache.thrift.protocol.TSet _set6686 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6686.size); + long _elem6687; + for (int _i6688 = 0; _i6688 < _set6686.size; ++_i6688) { - _elem6703 = iprot.readI64(); - struct.success.add(_elem6703); + _elem6687 = iprot.readI64(); + struct.success.add(_elem6687); } iprot.readSetEnd(); } @@ -631105,22 +630062,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -631133,7 +630081,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -631141,9 +630089,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6705 : struct.success) + for (long _iter6689 : struct.success) { - oprot.writeI64(_iter6705); + oprot.writeI64(_iter6689); } oprot.writeSetEnd(); } @@ -631164,28 +630112,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class findKeyOperatorValuesTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestr_resultTupleScheme getScheme() { - return new findKeyOperatorValuesTimestr_resultTupleScheme(); + public findKeyOperatorValuesTimeOrderPage_resultTupleScheme getScheme() { + return new findKeyOperatorValuesTimeOrderPage_resultTupleScheme(); } } - private static class findKeyOperatorValuesTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -631200,16 +630143,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6706 : struct.success) + for (long _iter6690 : struct.success) { - oprot.writeI64(_iter6706); + oprot.writeI64(_iter6690); } } } @@ -631222,24 +630162,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6707 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6707.size); - long _elem6708; - for (int _i6709 = 0; _i6709 < _set6707.size; ++_i6709) + org.apache.thrift.protocol.TSet _set6691 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6691.size); + long _elem6692; + for (int _i6693 = 0; _i6693 < _set6691.size; ++_i6693) { - _elem6708 = iprot.readI64(); - struct.success.add(_elem6708); + _elem6692 = iprot.readI64(); + struct.success.add(_elem6692); } } struct.setSuccessIsSet(true); @@ -631255,15 +630192,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -631272,20 +630204,19 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrPage_args"); + public static class findKeyOperatorValuesTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -631295,7 +630226,6 @@ public static class findKeyOperatorValuesTimestrPage_args implements org.apache. public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -631310,10 +630240,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -631337,13 +630266,11 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -631400,8 +630327,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -631409,18 +630334,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestr_args.class, metaDataMap); } - public findKeyOperatorValuesTimestrPage_args() { + public findKeyOperatorValuesTimestr_args() { } - public findKeyOperatorValuesTimestrPage_args( + public findKeyOperatorValuesTimestr_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -631430,7 +630354,6 @@ public findKeyOperatorValuesTimestrPage_args( this.operator = operator; this.values = values; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -631439,7 +630362,7 @@ public findKeyOperatorValuesTimestrPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimestrPage_args(findKeyOperatorValuesTimestrPage_args other) { + public findKeyOperatorValuesTimestr_args(findKeyOperatorValuesTimestr_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -631456,9 +630379,6 @@ public findKeyOperatorValuesTimestrPage_args(findKeyOperatorValuesTimestrPage_ar if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -631471,8 +630391,8 @@ public findKeyOperatorValuesTimestrPage_args(findKeyOperatorValuesTimestrPage_ar } @Override - public findKeyOperatorValuesTimestrPage_args deepCopy() { - return new findKeyOperatorValuesTimestrPage_args(this); + public findKeyOperatorValuesTimestr_args deepCopy() { + return new findKeyOperatorValuesTimestr_args(this); } @Override @@ -631481,7 +630401,6 @@ public void clear() { this.operator = null; this.values = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -631492,7 +630411,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -631525,7 +630444,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesTimestrPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesTimestr_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -631566,7 +630485,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesTimestrPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesTimestr_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -631591,7 +630510,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public findKeyOperatorValuesTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public findKeyOperatorValuesTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -631611,37 +630530,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorValuesTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -631666,7 +630560,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -631691,7 +630585,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -631746,14 +630640,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -631797,9 +630683,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -631829,8 +630712,6 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -631843,12 +630724,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimestrPage_args) - return this.equals((findKeyOperatorValuesTimestrPage_args)that); + if (that instanceof findKeyOperatorValuesTimestr_args) + return this.equals((findKeyOperatorValuesTimestr_args)that); return false; } - public boolean equals(findKeyOperatorValuesTimestrPage_args that) { + public boolean equals(findKeyOperatorValuesTimestr_args that) { if (that == null) return false; if (this == that) @@ -631890,15 +630771,6 @@ public boolean equals(findKeyOperatorValuesTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -631949,10 +630821,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -631969,7 +630837,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimestrPage_args other) { + public int compareTo(findKeyOperatorValuesTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -632016,16 +630884,6 @@ public int compareTo(findKeyOperatorValuesTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -632077,7 +630935,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestr_args("); boolean first = true; sb.append("key:"); @@ -632112,14 +630970,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -632150,9 +631000,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -632177,17 +631024,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrPage_argsStandardScheme getScheme() { - return new findKeyOperatorValuesTimestrPage_argsStandardScheme(); + public findKeyOperatorValuesTimestr_argsStandardScheme getScheme() { + return new findKeyOperatorValuesTimestr_argsStandardScheme(); } } - private static class findKeyOperatorValuesTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -632216,14 +631063,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6710 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6710.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6711; - for (int _i6712 = 0; _i6712 < _list6710.size; ++_i6712) + org.apache.thrift.protocol.TList _list6694 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6694.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6695; + for (int _i6696 = 0; _i6696 < _list6694.size; ++_i6696) { - _elem6711 = new com.cinchapi.concourse.thrift.TObject(); - _elem6711.read(iprot); - struct.values.add(_elem6711); + _elem6695 = new com.cinchapi.concourse.thrift.TObject(); + _elem6695.read(iprot); + struct.values.add(_elem6695); } iprot.readListEnd(); } @@ -632240,16 +631087,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -632258,7 +631096,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -632267,7 +631105,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -632287,7 +631125,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -632305,9 +631143,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6713 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6697 : struct.values) { - _iter6713.write(oprot); + _iter6697.write(oprot); } oprot.writeListEnd(); } @@ -632318,11 +631156,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -632344,17 +631177,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrPage_argsTupleScheme getScheme() { - return new findKeyOperatorValuesTimestrPage_argsTupleScheme(); + public findKeyOperatorValuesTimestr_argsTupleScheme getScheme() { + return new findKeyOperatorValuesTimestr_argsTupleScheme(); } } - private static class findKeyOperatorValuesTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -632369,19 +631202,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -632391,18 +631221,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6714 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6698 : struct.values) { - _iter6714.write(oprot); + _iter6698.write(oprot); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -632415,9 +631242,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -632428,14 +631255,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6715 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6715.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6716; - for (int _i6717 = 0; _i6717 < _list6715.size; ++_i6717) + org.apache.thrift.protocol.TList _list6699 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6699.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6700; + for (int _i6701 = 0; _i6701 < _list6699.size; ++_i6701) { - _elem6716 = new com.cinchapi.concourse.thrift.TObject(); - _elem6716.read(iprot); - struct.values.add(_elem6716); + _elem6700 = new com.cinchapi.concourse.thrift.TObject(); + _elem6700.read(iprot); + struct.values.add(_elem6700); } } struct.setValuesIsSet(true); @@ -632445,21 +631272,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setTimestampIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -632471,8 +631293,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrPage_result"); + public static class findKeyOperatorValuesTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -632480,8 +631302,8 @@ public static class findKeyOperatorValuesTimestrPage_result implements org.apach private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -632579,13 +631401,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestr_result.class, metaDataMap); } - public findKeyOperatorValuesTimestrPage_result() { + public findKeyOperatorValuesTimestr_result() { } - public findKeyOperatorValuesTimestrPage_result( + public findKeyOperatorValuesTimestr_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -632603,7 +631425,7 @@ public findKeyOperatorValuesTimestrPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimestrPage_result(findKeyOperatorValuesTimestrPage_result other) { + public findKeyOperatorValuesTimestr_result(findKeyOperatorValuesTimestr_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -632623,8 +631445,8 @@ public findKeyOperatorValuesTimestrPage_result(findKeyOperatorValuesTimestrPage_ } @Override - public findKeyOperatorValuesTimestrPage_result deepCopy() { - return new findKeyOperatorValuesTimestrPage_result(this); + public findKeyOperatorValuesTimestr_result deepCopy() { + return new findKeyOperatorValuesTimestr_result(this); } @Override @@ -632657,7 +631479,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -632682,7 +631504,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -632707,7 +631529,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -632732,7 +631554,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorValuesTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorValuesTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -632757,7 +631579,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorValuesTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorValuesTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -632870,12 +631692,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimestrPage_result) - return this.equals((findKeyOperatorValuesTimestrPage_result)that); + if (that instanceof findKeyOperatorValuesTimestr_result) + return this.equals((findKeyOperatorValuesTimestr_result)that); return false; } - public boolean equals(findKeyOperatorValuesTimestrPage_result that) { + public boolean equals(findKeyOperatorValuesTimestr_result that) { if (that == null) return false; if (this == that) @@ -632957,7 +631779,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimestrPage_result other) { + public int compareTo(findKeyOperatorValuesTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -633034,7 +631856,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestr_result("); boolean first = true; sb.append("success:"); @@ -633101,17 +631923,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrPage_resultStandardScheme getScheme() { - return new findKeyOperatorValuesTimestrPage_resultStandardScheme(); + public findKeyOperatorValuesTimestr_resultStandardScheme getScheme() { + return new findKeyOperatorValuesTimestr_resultStandardScheme(); } } - private static class findKeyOperatorValuesTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -633124,13 +631946,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6718 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6718.size); - long _elem6719; - for (int _i6720 = 0; _i6720 < _set6718.size; ++_i6720) + org.apache.thrift.protocol.TSet _set6702 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6702.size); + long _elem6703; + for (int _i6704 = 0; _i6704 < _set6702.size; ++_i6704) { - _elem6719 = iprot.readI64(); - struct.success.add(_elem6719); + _elem6703 = iprot.readI64(); + struct.success.add(_elem6703); } iprot.readSetEnd(); } @@ -633187,7 +632009,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -633195,9 +632017,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6721 : struct.success) + for (long _iter6705 : struct.success) { - oprot.writeI64(_iter6721); + oprot.writeI64(_iter6705); } oprot.writeSetEnd(); } @@ -633229,17 +632051,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrPage_resultTupleScheme getScheme() { - return new findKeyOperatorValuesTimestrPage_resultTupleScheme(); + public findKeyOperatorValuesTimestr_resultTupleScheme getScheme() { + return new findKeyOperatorValuesTimestr_resultTupleScheme(); } } - private static class findKeyOperatorValuesTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -633261,9 +632083,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6722 : struct.success) + for (long _iter6706 : struct.success) { - oprot.writeI64(_iter6722); + oprot.writeI64(_iter6706); } } } @@ -633282,18 +632104,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6723 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6723.size); - long _elem6724; - for (int _i6725 = 0; _i6725 < _set6723.size; ++_i6725) + org.apache.thrift.protocol.TSet _set6707 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6707.size); + long _elem6708; + for (int _i6709 = 0; _i6709 < _set6707.size; ++_i6709) { - _elem6724 = iprot.readI64(); - struct.success.add(_elem6724); + _elem6708 = iprot.readI64(); + struct.success.add(_elem6708); } } struct.setSuccessIsSet(true); @@ -633326,20 +632148,20 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrOrder_args"); + public static class findKeyOperatorValuesTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -633349,7 +632171,7 @@ public static class findKeyOperatorValuesTimestrOrder_args implements org.apache public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -633364,7 +632186,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - ORDER((short)5, "order"), + PAGE((short)5, "page"), CREDS((short)6, "creds"), TRANSACTION((short)7, "transaction"), ENVIRONMENT((short)8, "environment"); @@ -633391,8 +632213,8 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // ORDER - return ORDER; + case 5: // PAGE + return PAGE; case 6: // CREDS return CREDS; case 7: // TRANSACTION @@ -633454,8 +632276,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -633463,18 +632285,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrPage_args.class, metaDataMap); } - public findKeyOperatorValuesTimestrOrder_args() { + public findKeyOperatorValuesTimestrPage_args() { } - public findKeyOperatorValuesTimestrOrder_args( + public findKeyOperatorValuesTimestrPage_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -633484,7 +632306,7 @@ public findKeyOperatorValuesTimestrOrder_args( this.operator = operator; this.values = values; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -633493,7 +632315,7 @@ public findKeyOperatorValuesTimestrOrder_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimestrOrder_args(findKeyOperatorValuesTimestrOrder_args other) { + public findKeyOperatorValuesTimestrPage_args(findKeyOperatorValuesTimestrPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -633510,8 +632332,8 @@ public findKeyOperatorValuesTimestrOrder_args(findKeyOperatorValuesTimestrOrder_ if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -633525,8 +632347,8 @@ public findKeyOperatorValuesTimestrOrder_args(findKeyOperatorValuesTimestrOrder_ } @Override - public findKeyOperatorValuesTimestrOrder_args deepCopy() { - return new findKeyOperatorValuesTimestrOrder_args(this); + public findKeyOperatorValuesTimestrPage_args deepCopy() { + return new findKeyOperatorValuesTimestrPage_args(this); } @Override @@ -633535,7 +632357,7 @@ public void clear() { this.operator = null; this.values = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -633546,7 +632368,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -633579,7 +632401,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesTimestrOrder_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesTimestrPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -633620,7 +632442,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesTimestrOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesTimestrPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -633645,7 +632467,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public findKeyOperatorValuesTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public findKeyOperatorValuesTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -633666,27 +632488,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findKeyOperatorValuesTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public findKeyOperatorValuesTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -633695,7 +632517,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -633720,7 +632542,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -633745,7 +632567,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -633800,11 +632622,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -633851,8 +632673,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -633883,8 +632705,8 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -633897,12 +632719,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimestrOrder_args) - return this.equals((findKeyOperatorValuesTimestrOrder_args)that); + if (that instanceof findKeyOperatorValuesTimestrPage_args) + return this.equals((findKeyOperatorValuesTimestrPage_args)that); return false; } - public boolean equals(findKeyOperatorValuesTimestrOrder_args that) { + public boolean equals(findKeyOperatorValuesTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -633944,12 +632766,12 @@ public boolean equals(findKeyOperatorValuesTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -634003,9 +632825,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -634023,7 +632845,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimestrOrder_args other) { + public int compareTo(findKeyOperatorValuesTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -634070,12 +632892,12 @@ public int compareTo(findKeyOperatorValuesTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -634131,7 +632953,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrPage_args("); boolean first = true; sb.append("key:"); @@ -634166,11 +632988,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -634204,8 +633026,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -634231,17 +633053,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrOrder_argsStandardScheme getScheme() { - return new findKeyOperatorValuesTimestrOrder_argsStandardScheme(); + public findKeyOperatorValuesTimestrPage_argsStandardScheme getScheme() { + return new findKeyOperatorValuesTimestrPage_argsStandardScheme(); } } - private static class findKeyOperatorValuesTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -634270,14 +633092,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6726 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6726.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6727; - for (int _i6728 = 0; _i6728 < _list6726.size; ++_i6728) + org.apache.thrift.protocol.TList _list6710 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6710.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6711; + for (int _i6712 = 0; _i6712 < _list6710.size; ++_i6712) { - _elem6727 = new com.cinchapi.concourse.thrift.TObject(); - _elem6727.read(iprot); - struct.values.add(_elem6727); + _elem6711 = new com.cinchapi.concourse.thrift.TObject(); + _elem6711.read(iprot); + struct.values.add(_elem6711); } iprot.readListEnd(); } @@ -634294,11 +633116,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ORDER + case 5: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -634341,7 +633163,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -634359,9 +633181,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6729 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6713 : struct.values) { - _iter6729.write(oprot); + _iter6713.write(oprot); } oprot.writeListEnd(); } @@ -634372,9 +633194,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -634398,17 +633220,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrOrder_argsTupleScheme getScheme() { - return new findKeyOperatorValuesTimestrOrder_argsTupleScheme(); + public findKeyOperatorValuesTimestrPage_argsTupleScheme getScheme() { + return new findKeyOperatorValuesTimestrPage_argsTupleScheme(); } } - private static class findKeyOperatorValuesTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -634423,7 +633245,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(4); } if (struct.isSetCreds()) { @@ -634445,17 +633267,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6730 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6714 : struct.values) { - _iter6730.write(oprot); + _iter6714.write(oprot); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -634469,7 +633291,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { @@ -634482,14 +633304,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6731 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6731.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6732; - for (int _i6733 = 0; _i6733 < _list6731.size; ++_i6733) + org.apache.thrift.protocol.TList _list6715 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6715.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6716; + for (int _i6717 = 0; _i6717 < _list6715.size; ++_i6717) { - _elem6732 = new com.cinchapi.concourse.thrift.TObject(); - _elem6732.read(iprot); - struct.values.add(_elem6732); + _elem6716 = new com.cinchapi.concourse.thrift.TObject(); + _elem6716.read(iprot); + struct.values.add(_elem6716); } } struct.setValuesIsSet(true); @@ -634499,9 +633321,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setTimestampIsSet(true); } if (incoming.get(4)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -634525,8 +633347,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrOrder_result"); + public static class findKeyOperatorValuesTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -634534,8 +633356,8 @@ public static class findKeyOperatorValuesTimestrOrder_result implements org.apac private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -634633,13 +633455,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrPage_result.class, metaDataMap); } - public findKeyOperatorValuesTimestrOrder_result() { + public findKeyOperatorValuesTimestrPage_result() { } - public findKeyOperatorValuesTimestrOrder_result( + public findKeyOperatorValuesTimestrPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -634657,7 +633479,7 @@ public findKeyOperatorValuesTimestrOrder_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimestrOrder_result(findKeyOperatorValuesTimestrOrder_result other) { + public findKeyOperatorValuesTimestrPage_result(findKeyOperatorValuesTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -634677,8 +633499,8 @@ public findKeyOperatorValuesTimestrOrder_result(findKeyOperatorValuesTimestrOrde } @Override - public findKeyOperatorValuesTimestrOrder_result deepCopy() { - return new findKeyOperatorValuesTimestrOrder_result(this); + public findKeyOperatorValuesTimestrPage_result deepCopy() { + return new findKeyOperatorValuesTimestrPage_result(this); } @Override @@ -634711,7 +633533,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -634736,7 +633558,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -634761,7 +633583,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -634786,7 +633608,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorValuesTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorValuesTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -634811,7 +633633,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorValuesTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorValuesTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -634924,12 +633746,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimestrOrder_result) - return this.equals((findKeyOperatorValuesTimestrOrder_result)that); + if (that instanceof findKeyOperatorValuesTimestrPage_result) + return this.equals((findKeyOperatorValuesTimestrPage_result)that); return false; } - public boolean equals(findKeyOperatorValuesTimestrOrder_result that) { + public boolean equals(findKeyOperatorValuesTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -635011,7 +633833,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimestrOrder_result other) { + public int compareTo(findKeyOperatorValuesTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -635088,7 +633910,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -635155,17 +633977,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrOrder_resultStandardScheme getScheme() { - return new findKeyOperatorValuesTimestrOrder_resultStandardScheme(); + public findKeyOperatorValuesTimestrPage_resultStandardScheme getScheme() { + return new findKeyOperatorValuesTimestrPage_resultStandardScheme(); } } - private static class findKeyOperatorValuesTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -635178,13 +634000,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6734 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6734.size); - long _elem6735; - for (int _i6736 = 0; _i6736 < _set6734.size; ++_i6736) + org.apache.thrift.protocol.TSet _set6718 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6718.size); + long _elem6719; + for (int _i6720 = 0; _i6720 < _set6718.size; ++_i6720) { - _elem6735 = iprot.readI64(); - struct.success.add(_elem6735); + _elem6719 = iprot.readI64(); + struct.success.add(_elem6719); } iprot.readSetEnd(); } @@ -635241,7 +634063,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -635249,9 +634071,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6737 : struct.success) + for (long _iter6721 : struct.success) { - oprot.writeI64(_iter6737); + oprot.writeI64(_iter6721); } oprot.writeSetEnd(); } @@ -635283,17 +634105,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrOrder_resultTupleScheme getScheme() { - return new findKeyOperatorValuesTimestrOrder_resultTupleScheme(); + public findKeyOperatorValuesTimestrPage_resultTupleScheme getScheme() { + return new findKeyOperatorValuesTimestrPage_resultTupleScheme(); } } - private static class findKeyOperatorValuesTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -635315,9 +634137,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6738 : struct.success) + for (long _iter6722 : struct.success) { - oprot.writeI64(_iter6738); + oprot.writeI64(_iter6722); } } } @@ -635336,18 +634158,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6739 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6739.size); - long _elem6740; - for (int _i6741 = 0; _i6741 < _set6739.size; ++_i6741) + org.apache.thrift.protocol.TSet _set6723 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6723.size); + long _elem6724; + for (int _i6725 = 0; _i6725 < _set6723.size; ++_i6725) { - _elem6740 = iprot.readI64(); - struct.success.add(_elem6740); + _elem6724 = iprot.readI64(); + struct.success.add(_elem6724); } } struct.setSuccessIsSet(true); @@ -635380,21 +634202,20 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrOrderPage_args"); + public static class findKeyOperatorValuesTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)8); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)9); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required /** @@ -635405,7 +634226,6 @@ public static class findKeyOperatorValuesTimestrOrderPage_args implements org.ap public @org.apache.thrift.annotation.Nullable java.util.List values; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -635421,10 +634241,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), ORDER((short)5, "order"), - PAGE((short)6, "page"), - CREDS((short)7, "creds"), - TRANSACTION((short)8, "transaction"), - ENVIRONMENT((short)9, "environment"); + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -635450,13 +634269,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 5: // ORDER return ORDER; - case 6: // PAGE - return PAGE; - case 7: // CREDS + case 6: // CREDS return CREDS; - case 8: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 9: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -635515,8 +634332,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -635524,19 +634339,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrOrder_args.class, metaDataMap); } - public findKeyOperatorValuesTimestrOrderPage_args() { + public findKeyOperatorValuesTimestrOrder_args() { } - public findKeyOperatorValuesTimestrOrderPage_args( + public findKeyOperatorValuesTimestrOrder_args( java.lang.String key, com.cinchapi.concourse.thrift.Operator operator, java.util.List values, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -635547,7 +634361,6 @@ public findKeyOperatorValuesTimestrOrderPage_args( this.values = values; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -635556,7 +634369,7 @@ public findKeyOperatorValuesTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimestrOrderPage_args(findKeyOperatorValuesTimestrOrderPage_args other) { + public findKeyOperatorValuesTimestrOrder_args(findKeyOperatorValuesTimestrOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -635576,9 +634389,6 @@ public findKeyOperatorValuesTimestrOrderPage_args(findKeyOperatorValuesTimestrOr if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -635591,8 +634401,8 @@ public findKeyOperatorValuesTimestrOrderPage_args(findKeyOperatorValuesTimestrOr } @Override - public findKeyOperatorValuesTimestrOrderPage_args deepCopy() { - return new findKeyOperatorValuesTimestrOrderPage_args(this); + public findKeyOperatorValuesTimestrOrder_args deepCopy() { + return new findKeyOperatorValuesTimestrOrder_args(this); } @Override @@ -635602,7 +634412,6 @@ public void clear() { this.values = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -635613,7 +634422,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorValuesTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -635646,7 +634455,7 @@ public com.cinchapi.concourse.thrift.Operator getOperator() { * * @see com.cinchapi.concourse.thrift.Operator */ - public findKeyOperatorValuesTimestrOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { + public findKeyOperatorValuesTimestrOrder_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -635687,7 +634496,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorValuesTimestrOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesTimestrOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -635712,7 +634521,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public findKeyOperatorValuesTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public findKeyOperatorValuesTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -635737,7 +634546,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public findKeyOperatorValuesTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public findKeyOperatorValuesTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -635757,37 +634566,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorValuesTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorValuesTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -635812,7 +634596,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorValuesTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -635837,7 +634621,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorValuesTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -635900,14 +634684,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -635954,9 +634730,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -635988,8 +634761,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -636002,12 +634773,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimestrOrderPage_args) - return this.equals((findKeyOperatorValuesTimestrOrderPage_args)that); + if (that instanceof findKeyOperatorValuesTimestrOrder_args) + return this.equals((findKeyOperatorValuesTimestrOrder_args)that); return false; } - public boolean equals(findKeyOperatorValuesTimestrOrderPage_args that) { + public boolean equals(findKeyOperatorValuesTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -636058,15 +634829,6 @@ public boolean equals(findKeyOperatorValuesTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -636121,10 +634883,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -636141,7 +634899,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimestrOrderPage_args other) { + public int compareTo(findKeyOperatorValuesTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -636198,16 +634956,6 @@ public int compareTo(findKeyOperatorValuesTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -636259,7 +635007,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrOrder_args("); boolean first = true; sb.append("key:"); @@ -636302,14 +635050,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -636343,9 +635083,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -636370,17 +635107,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrOrderPage_argsStandardScheme getScheme() { - return new findKeyOperatorValuesTimestrOrderPage_argsStandardScheme(); + public findKeyOperatorValuesTimestrOrder_argsStandardScheme getScheme() { + return new findKeyOperatorValuesTimestrOrder_argsStandardScheme(); } } - private static class findKeyOperatorValuesTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -636409,14 +635146,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6742 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6742.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6743; - for (int _i6744 = 0; _i6744 < _list6742.size; ++_i6744) + org.apache.thrift.protocol.TList _list6726 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6726.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6727; + for (int _i6728 = 0; _i6728 < _list6726.size; ++_i6728) { - _elem6743 = new com.cinchapi.concourse.thrift.TObject(); - _elem6743.read(iprot); - struct.values.add(_elem6743); + _elem6727 = new com.cinchapi.concourse.thrift.TObject(); + _elem6727.read(iprot); + struct.values.add(_elem6727); } iprot.readListEnd(); } @@ -636442,16 +635179,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 7: // CREDS + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -636460,7 +635188,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -636469,7 +635197,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 9: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -636489,7 +635217,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -636507,9 +635235,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6745 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6729 : struct.values) { - _iter6745.write(oprot); + _iter6729.write(oprot); } oprot.writeListEnd(); } @@ -636525,11 +635253,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -636551,17 +635274,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrOrderPage_argsTupleScheme getScheme() { - return new findKeyOperatorValuesTimestrOrderPage_argsTupleScheme(); + public findKeyOperatorValuesTimestrOrder_argsTupleScheme getScheme() { + return new findKeyOperatorValuesTimestrOrder_argsTupleScheme(); } } - private static class findKeyOperatorValuesTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -636579,19 +635302,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetOrder()) { optionals.set(4); } - if (struct.isSetPage()) { - optionals.set(5); - } if (struct.isSetCreds()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetTransaction()) { - optionals.set(7); + optionals.set(6); } if (struct.isSetEnvironment()) { - optionals.set(8); + optionals.set(7); } - oprot.writeBitSet(optionals, 9); + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -636601,9 +635321,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6746 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6730 : struct.values) { - _iter6746.write(oprot); + _iter6730.write(oprot); } } } @@ -636613,9 +635333,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -636628,9 +635345,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(9); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -636641,14 +635358,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6747 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6747.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6748; - for (int _i6749 = 0; _i6749 < _list6747.size; ++_i6749) + org.apache.thrift.protocol.TList _list6731 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6731.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6732; + for (int _i6733 = 0; _i6733 < _list6731.size; ++_i6733) { - _elem6748 = new com.cinchapi.concourse.thrift.TObject(); - _elem6748.read(iprot); - struct.values.add(_elem6748); + _elem6732 = new com.cinchapi.concourse.thrift.TObject(); + _elem6732.read(iprot); + struct.values.add(_elem6732); } } struct.setValuesIsSet(true); @@ -636663,21 +635380,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValue struct.setOrderIsSet(true); } if (incoming.get(5)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(6)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(8)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -636689,8 +635401,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorValuesTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrOrderPage_result"); + public static class findKeyOperatorValuesTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -636698,8 +635410,8 @@ public static class findKeyOperatorValuesTimestrOrderPage_result implements org. private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -636797,13 +635509,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrOrder_result.class, metaDataMap); } - public findKeyOperatorValuesTimestrOrderPage_result() { + public findKeyOperatorValuesTimestrOrder_result() { } - public findKeyOperatorValuesTimestrOrderPage_result( + public findKeyOperatorValuesTimestrOrder_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -636821,7 +635533,7 @@ public findKeyOperatorValuesTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorValuesTimestrOrderPage_result(findKeyOperatorValuesTimestrOrderPage_result other) { + public findKeyOperatorValuesTimestrOrder_result(findKeyOperatorValuesTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -636841,8 +635553,8 @@ public findKeyOperatorValuesTimestrOrderPage_result(findKeyOperatorValuesTimestr } @Override - public findKeyOperatorValuesTimestrOrderPage_result deepCopy() { - return new findKeyOperatorValuesTimestrOrderPage_result(this); + public findKeyOperatorValuesTimestrOrder_result deepCopy() { + return new findKeyOperatorValuesTimestrOrder_result(this); } @Override @@ -636875,7 +635587,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorValuesTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -636900,7 +635612,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorValuesTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -636925,7 +635637,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorValuesTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -636950,7 +635662,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorValuesTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorValuesTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -636975,7 +635687,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorValuesTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorValuesTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -637088,12 +635800,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorValuesTimestrOrderPage_result) - return this.equals((findKeyOperatorValuesTimestrOrderPage_result)that); + if (that instanceof findKeyOperatorValuesTimestrOrder_result) + return this.equals((findKeyOperatorValuesTimestrOrder_result)that); return false; } - public boolean equals(findKeyOperatorValuesTimestrOrderPage_result that) { + public boolean equals(findKeyOperatorValuesTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -637175,7 +635887,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorValuesTimestrOrderPage_result other) { + public int compareTo(findKeyOperatorValuesTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -637252,7 +635964,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -637319,17 +636031,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorValuesTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrOrderPage_resultStandardScheme getScheme() { - return new findKeyOperatorValuesTimestrOrderPage_resultStandardScheme(); + public findKeyOperatorValuesTimestrOrder_resultStandardScheme getScheme() { + return new findKeyOperatorValuesTimestrOrder_resultStandardScheme(); } } - private static class findKeyOperatorValuesTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -637342,13 +636054,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6750 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6750.size); - long _elem6751; - for (int _i6752 = 0; _i6752 < _set6750.size; ++_i6752) + org.apache.thrift.protocol.TSet _set6734 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6734.size); + long _elem6735; + for (int _i6736 = 0; _i6736 < _set6734.size; ++_i6736) { - _elem6751 = iprot.readI64(); - struct.success.add(_elem6751); + _elem6735 = iprot.readI64(); + struct.success.add(_elem6735); } iprot.readSetEnd(); } @@ -637405,7 +636117,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValu } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -637413,9 +636125,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6753 : struct.success) + for (long _iter6737 : struct.success) { - oprot.writeI64(_iter6753); + oprot.writeI64(_iter6737); } oprot.writeSetEnd(); } @@ -637447,17 +636159,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorVal } - private static class findKeyOperatorValuesTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorValuesTimestrOrderPage_resultTupleScheme getScheme() { - return new findKeyOperatorValuesTimestrOrderPage_resultTupleScheme(); + public findKeyOperatorValuesTimestrOrder_resultTupleScheme getScheme() { + return new findKeyOperatorValuesTimestrOrder_resultTupleScheme(); } } - private static class findKeyOperatorValuesTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -637479,9 +636191,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6754 : struct.success) + for (long _iter6738 : struct.success) { - oprot.writeI64(_iter6754); + oprot.writeI64(_iter6738); } } } @@ -637500,18 +636212,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValu } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6755 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6755.size); - long _elem6756; - for (int _i6757 = 0; _i6757 < _set6755.size; ++_i6757) + org.apache.thrift.protocol.TSet _set6739 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6739.size); + long _elem6740; + for (int _i6741 = 0; _i6741 < _set6739.size; ++_i6741) { - _elem6756 = iprot.readI64(); - struct.success.add(_elem6756); + _elem6740 = iprot.readI64(); + struct.success.add(_elem6740); } } struct.setSuccessIsSet(true); @@ -637544,22 +636256,32 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValues_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValues_args"); + public static class findKeyOperatorValuesTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.I32, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)8); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)9); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValues_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValues_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required + /** + * + * @see com.cinchapi.concourse.thrift.Operator + */ + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -637567,11 +636289,18 @@ public static class findKeyOperatorstrValues_args implements org.apache.thrift.T /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), + /** + * + * @see com.cinchapi.concourse.thrift.Operator + */ OPERATOR((short)2, "operator"), VALUES((short)3, "values"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + TIMESTAMP((short)4, "timestamp"), + ORDER((short)5, "order"), + PAGE((short)6, "page"), + CREDS((short)7, "creds"), + TRANSACTION((short)8, "transaction"), + ENVIRONMENT((short)9, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -637593,11 +636322,17 @@ public static _Fields findByThriftId(int fieldId) { return OPERATOR; case 3: // VALUES return VALUES; - case 4: // CREDS + case 4: // TIMESTAMP + return TIMESTAMP; + case 5: // ORDER + return ORDER; + case 6: // PAGE + return PAGE; + case 7: // CREDS return CREDS; - case 5: // TRANSACTION + case 8: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 9: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -637648,10 +636383,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.OPERATOR, new org.apache.thrift.meta_data.FieldMetaData("operator", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, com.cinchapi.concourse.thrift.Operator.class))); tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -637659,16 +636400,19 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValues_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrOrderPage_args.class, metaDataMap); } - public findKeyOperatorstrValues_args() { + public findKeyOperatorValuesTimestrOrderPage_args() { } - public findKeyOperatorstrValues_args( + public findKeyOperatorValuesTimestrOrderPage_args( java.lang.String key, - java.lang.String operator, + com.cinchapi.concourse.thrift.Operator operator, java.util.List values, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -637677,6 +636421,9 @@ public findKeyOperatorstrValues_args( this.key = key; this.operator = operator; this.values = values; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -637685,7 +636432,7 @@ public findKeyOperatorstrValues_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValues_args(findKeyOperatorstrValues_args other) { + public findKeyOperatorValuesTimestrOrderPage_args(findKeyOperatorValuesTimestrOrderPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -637699,6 +636446,15 @@ public findKeyOperatorstrValues_args(findKeyOperatorstrValues_args other) { } this.values = __this__values; } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -637711,8 +636467,8 @@ public findKeyOperatorstrValues_args(findKeyOperatorstrValues_args other) { } @Override - public findKeyOperatorstrValues_args deepCopy() { - return new findKeyOperatorstrValues_args(this); + public findKeyOperatorValuesTimestrOrderPage_args deepCopy() { + return new findKeyOperatorValuesTimestrOrderPage_args(this); } @Override @@ -637720,6 +636476,9 @@ public void clear() { this.key = null; this.operator = null; this.values = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -637730,7 +636489,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValues_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorValuesTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -637750,12 +636509,20 @@ public void setKeyIsSet(boolean value) { } } + /** + * + * @see com.cinchapi.concourse.thrift.Operator + */ @org.apache.thrift.annotation.Nullable - public java.lang.String getOperator() { + public com.cinchapi.concourse.thrift.Operator getOperator() { return this.operator; } - public findKeyOperatorstrValues_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + /** + * + * @see com.cinchapi.concourse.thrift.Operator + */ + public findKeyOperatorValuesTimestrOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.Operator operator) { this.operator = operator; return this; } @@ -637796,7 +636563,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValues_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorValuesTimestrOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -637816,12 +636583,87 @@ public void setValuesIsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public findKeyOperatorValuesTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public findKeyOperatorValuesTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public findKeyOperatorValuesTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValues_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorValuesTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -637846,7 +636688,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValues_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorValuesTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -637871,7 +636713,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValues_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorValuesTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -637906,7 +636748,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetOperator(); } else { - setOperator((java.lang.String)value); + setOperator((com.cinchapi.concourse.thrift.Operator)value); } break; @@ -637918,6 +636760,30 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -637958,6 +636824,15 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUES: return getValues(); + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -637985,6 +636860,12 @@ public boolean isSet(_Fields field) { return isSetOperator(); case VALUES: return isSetValues(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -637997,12 +636878,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValues_args) - return this.equals((findKeyOperatorstrValues_args)that); + if (that instanceof findKeyOperatorValuesTimestrOrderPage_args) + return this.equals((findKeyOperatorValuesTimestrOrderPage_args)that); return false; } - public boolean equals(findKeyOperatorstrValues_args that) { + public boolean equals(findKeyOperatorValuesTimestrOrderPage_args that) { if (that == null) return false; if (this == that) @@ -638035,6 +636916,33 @@ public boolean equals(findKeyOperatorstrValues_args that) { return false; } + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -638075,12 +636983,24 @@ public int hashCode() { hashCode = hashCode * 8191 + ((isSetOperator()) ? 131071 : 524287); if (isSetOperator()) - hashCode = hashCode * 8191 + operator.hashCode(); + hashCode = hashCode * 8191 + operator.getValue(); hashCode = hashCode * 8191 + ((isSetValues()) ? 131071 : 524287); if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -638097,7 +637017,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValues_args other) { + public int compareTo(findKeyOperatorValuesTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -638134,6 +637054,36 @@ public int compareTo(findKeyOperatorstrValues_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -638185,7 +637135,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValues_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrOrderPage_args("); boolean first = true; sb.append("key:"); @@ -638212,6 +637162,30 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -638242,6 +637216,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -638266,17 +637246,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValues_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValues_argsStandardScheme getScheme() { - return new findKeyOperatorstrValues_argsStandardScheme(); + public findKeyOperatorValuesTimestrOrderPage_argsStandardScheme getScheme() { + return new findKeyOperatorValuesTimestrOrderPage_argsStandardScheme(); } } - private static class findKeyOperatorstrValues_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValues_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -638295,8 +637275,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } break; case 2: // OPERATOR - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.operator = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I32) { + struct.operator = com.cinchapi.concourse.thrift.Operator.findByValue(iprot.readI32()); struct.setOperatorIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -638305,14 +637285,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6758 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6758.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6759; - for (int _i6760 = 0; _i6760 < _list6758.size; ++_i6760) + org.apache.thrift.protocol.TList _list6742 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6742.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6743; + for (int _i6744 = 0; _i6744 < _list6742.size; ++_i6744) { - _elem6759 = new com.cinchapi.concourse.thrift.TObject(); - _elem6759.read(iprot); - struct.values.add(_elem6759); + _elem6743 = new com.cinchapi.concourse.thrift.TObject(); + _elem6743.read(iprot); + struct.values.add(_elem6743); } iprot.readListEnd(); } @@ -638321,7 +637301,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 7: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -638330,7 +637336,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 8: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -638339,7 +637345,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 9: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -638359,7 +637365,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValues_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -638370,21 +637376,36 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } if (struct.operator != null) { oprot.writeFieldBegin(OPERATOR_FIELD_DESC); - oprot.writeString(struct.operator); + oprot.writeI32(struct.operator.getValue()); oprot.writeFieldEnd(); } if (struct.values != null) { oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6761 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6745 : struct.values) { - _iter6761.write(oprot); + _iter6745.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -638406,17 +637427,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValues_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValues_argsTupleScheme getScheme() { - return new findKeyOperatorstrValues_argsTupleScheme(); + public findKeyOperatorValuesTimestrOrderPage_argsTupleScheme getScheme() { + return new findKeyOperatorValuesTimestrOrderPage_argsTupleScheme(); } } - private static class findKeyOperatorstrValues_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValues_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -638428,31 +637449,49 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetOrder()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetPage()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetCreds()) { + optionals.set(6); + } + if (struct.isSetTransaction()) { + optionals.set(7); + } + if (struct.isSetEnvironment()) { + optionals.set(8); + } + oprot.writeBitSet(optionals, 9); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetOperator()) { - oprot.writeString(struct.operator); + oprot.writeI32(struct.operator.getValue()); } if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6762 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6746 : struct.values) { - _iter6762.write(oprot); + _iter6746.write(oprot); } } } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -638465,42 +637504,56 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValues_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(9); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.operator = iprot.readString(); + struct.operator = com.cinchapi.concourse.thrift.Operator.findByValue(iprot.readI32()); struct.setOperatorIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6763 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6763.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6764; - for (int _i6765 = 0; _i6765 < _list6763.size; ++_i6765) + org.apache.thrift.protocol.TList _list6747 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6747.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6748; + for (int _i6749 = 0; _i6749 < _list6747.size; ++_i6749) { - _elem6764 = new com.cinchapi.concourse.thrift.TObject(); - _elem6764.read(iprot); - struct.values.add(_elem6764); + _elem6748 = new com.cinchapi.concourse.thrift.TObject(); + _elem6748.read(iprot); + struct.values.add(_elem6748); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(4)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(5)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(6)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(7)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(8)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -638512,8 +637565,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValues_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValues_result"); + public static class findKeyOperatorValuesTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorValuesTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -638521,8 +637574,8 @@ public static class findKeyOperatorstrValues_result implements org.apache.thrift private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValues_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValues_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorValuesTimestrOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -638620,13 +637673,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValues_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorValuesTimestrOrderPage_result.class, metaDataMap); } - public findKeyOperatorstrValues_result() { + public findKeyOperatorValuesTimestrOrderPage_result() { } - public findKeyOperatorstrValues_result( + public findKeyOperatorValuesTimestrOrderPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -638644,7 +637697,7 @@ public findKeyOperatorstrValues_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValues_result(findKeyOperatorstrValues_result other) { + public findKeyOperatorValuesTimestrOrderPage_result(findKeyOperatorValuesTimestrOrderPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -638664,8 +637717,8 @@ public findKeyOperatorstrValues_result(findKeyOperatorstrValues_result other) { } @Override - public findKeyOperatorstrValues_result deepCopy() { - return new findKeyOperatorstrValues_result(this); + public findKeyOperatorValuesTimestrOrderPage_result deepCopy() { + return new findKeyOperatorValuesTimestrOrderPage_result(this); } @Override @@ -638698,7 +637751,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValues_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorValuesTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -638723,7 +637776,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValues_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorValuesTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -638748,7 +637801,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValues_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorValuesTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -638773,7 +637826,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValues_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorValuesTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -638798,7 +637851,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValues_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorValuesTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -638911,12 +637964,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValues_result) - return this.equals((findKeyOperatorstrValues_result)that); + if (that instanceof findKeyOperatorValuesTimestrOrderPage_result) + return this.equals((findKeyOperatorValuesTimestrOrderPage_result)that); return false; } - public boolean equals(findKeyOperatorstrValues_result that) { + public boolean equals(findKeyOperatorValuesTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -638998,7 +638051,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValues_result other) { + public int compareTo(findKeyOperatorValuesTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -639075,7 +638128,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValues_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorValuesTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -639142,17 +638195,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValues_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValues_resultStandardScheme getScheme() { - return new findKeyOperatorstrValues_resultStandardScheme(); + public findKeyOperatorValuesTimestrOrderPage_resultStandardScheme getScheme() { + return new findKeyOperatorValuesTimestrOrderPage_resultStandardScheme(); } } - private static class findKeyOperatorstrValues_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorValuesTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValues_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -639165,13 +638218,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6766 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6766.size); - long _elem6767; - for (int _i6768 = 0; _i6768 < _set6766.size; ++_i6768) + org.apache.thrift.protocol.TSet _set6750 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6750.size); + long _elem6751; + for (int _i6752 = 0; _i6752 < _set6750.size; ++_i6752) { - _elem6767 = iprot.readI64(); - struct.success.add(_elem6767); + _elem6751 = iprot.readI64(); + struct.success.add(_elem6751); } iprot.readSetEnd(); } @@ -639228,7 +638281,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValues_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -639236,9 +638289,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6769 : struct.success) + for (long _iter6753 : struct.success) { - oprot.writeI64(_iter6769); + oprot.writeI64(_iter6753); } oprot.writeSetEnd(); } @@ -639270,17 +638323,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValues_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorValuesTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValues_resultTupleScheme getScheme() { - return new findKeyOperatorstrValues_resultTupleScheme(); + public findKeyOperatorValuesTimestrOrderPage_resultTupleScheme getScheme() { + return new findKeyOperatorValuesTimestrOrderPage_resultTupleScheme(); } } - private static class findKeyOperatorstrValues_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorValuesTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValues_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -639302,9 +638355,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6770 : struct.success) + for (long _iter6754 : struct.success) { - oprot.writeI64(_iter6770); + oprot.writeI64(_iter6754); } } } @@ -639323,18 +638376,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValues_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6771 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6771.size); - long _elem6772; - for (int _i6773 = 0; _i6773 < _set6771.size; ++_i6773) + org.apache.thrift.protocol.TSet _set6755 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6755.size); + long _elem6756; + for (int _i6757 = 0; _i6757 < _set6755.size; ++_i6757) { - _elem6772 = iprot.readI64(); - struct.success.add(_elem6772); + _elem6756 = iprot.readI64(); + struct.success.add(_elem6756); } } struct.setSuccessIsSet(true); @@ -639367,24 +638420,22 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesPage_args"); + public static class findKeyOperatorstrValues_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValues_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValues_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValues_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -639394,10 +638445,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), OPERATOR((short)2, "operator"), VALUES((short)3, "values"), - PAGE((short)4, "page"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -639419,13 +638469,11 @@ public static _Fields findByThriftId(int fieldId) { return OPERATOR; case 3: // VALUES return VALUES; - case 4: // PAGE - return PAGE; - case 5: // CREDS + case 4: // CREDS return CREDS; - case 6: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -639480,8 +638528,6 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -639489,17 +638535,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValues_args.class, metaDataMap); } - public findKeyOperatorstrValuesPage_args() { + public findKeyOperatorstrValues_args() { } - public findKeyOperatorstrValuesPage_args( + public findKeyOperatorstrValues_args( java.lang.String key, java.lang.String operator, java.util.List values, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -639508,7 +638553,6 @@ public findKeyOperatorstrValuesPage_args( this.key = key; this.operator = operator; this.values = values; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -639517,7 +638561,7 @@ public findKeyOperatorstrValuesPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesPage_args(findKeyOperatorstrValuesPage_args other) { + public findKeyOperatorstrValues_args(findKeyOperatorstrValues_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -639531,9 +638575,6 @@ public findKeyOperatorstrValuesPage_args(findKeyOperatorstrValuesPage_args other } this.values = __this__values; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -639546,8 +638587,8 @@ public findKeyOperatorstrValuesPage_args(findKeyOperatorstrValuesPage_args other } @Override - public findKeyOperatorstrValuesPage_args deepCopy() { - return new findKeyOperatorstrValuesPage_args(this); + public findKeyOperatorstrValues_args deepCopy() { + return new findKeyOperatorstrValues_args(this); } @Override @@ -639555,7 +638596,6 @@ public void clear() { this.key = null; this.operator = null; this.values = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -639566,7 +638606,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValues_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -639591,7 +638631,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValues_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -639632,7 +638672,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValues_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -639652,37 +638692,12 @@ public void setValuesIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorstrValuesPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValues_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -639707,7 +638722,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValues_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -639732,7 +638747,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValues_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -639779,14 +638794,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -639827,9 +638834,6 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUES: return getValues(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -639857,8 +638861,6 @@ public boolean isSet(_Fields field) { return isSetOperator(); case VALUES: return isSetValues(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -639871,12 +638873,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesPage_args) - return this.equals((findKeyOperatorstrValuesPage_args)that); + if (that instanceof findKeyOperatorstrValues_args) + return this.equals((findKeyOperatorstrValues_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesPage_args that) { + public boolean equals(findKeyOperatorstrValues_args that) { if (that == null) return false; if (this == that) @@ -639909,15 +638911,6 @@ public boolean equals(findKeyOperatorstrValuesPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -639964,10 +638957,6 @@ public int hashCode() { if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -639984,7 +638973,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesPage_args other) { + public int compareTo(findKeyOperatorstrValues_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -640021,16 +639010,6 @@ public int compareTo(findKeyOperatorstrValuesPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -640082,7 +639061,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValues_args("); boolean first = true; sb.append("key:"); @@ -640109,14 +639088,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -640147,9 +639118,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -640174,17 +639142,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValues_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesPage_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesPage_argsStandardScheme(); + public findKeyOperatorstrValues_argsStandardScheme getScheme() { + return new findKeyOperatorstrValues_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValues_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -640213,14 +639181,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6774 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6774.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6775; - for (int _i6776 = 0; _i6776 < _list6774.size; ++_i6776) + org.apache.thrift.protocol.TList _list6758 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6758.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6759; + for (int _i6760 = 0; _i6760 < _list6758.size; ++_i6760) { - _elem6775 = new com.cinchapi.concourse.thrift.TObject(); - _elem6775.read(iprot); - struct.values.add(_elem6775); + _elem6759 = new com.cinchapi.concourse.thrift.TObject(); + _elem6759.read(iprot); + struct.values.add(_elem6759); } iprot.readListEnd(); } @@ -640229,16 +639197,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -640247,7 +639206,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -640256,7 +639215,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -640276,7 +639235,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValues_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -640294,19 +639253,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6777 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6761 : struct.values) { - _iter6777.write(oprot); + _iter6761.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -640328,17 +639282,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValues_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesPage_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesPage_argsTupleScheme(); + public findKeyOperatorstrValues_argsTupleScheme getScheme() { + return new findKeyOperatorstrValues_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValues_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -640350,19 +639304,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { optionals.set(2); } - if (struct.isSetPage()) { - optionals.set(3); - } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetEnvironment()) { - optionals.set(6); + optionals.set(5); } - oprot.writeBitSet(optionals, 7); + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -640372,15 +639323,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6778 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6762 : struct.values) { - _iter6778.write(oprot); + _iter6762.write(oprot); } } } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -640393,9 +639341,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValues_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -640406,34 +639354,29 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6779 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6779.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6780; - for (int _i6781 = 0; _i6781 < _list6779.size; ++_i6781) + org.apache.thrift.protocol.TList _list6763 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6763.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6764; + for (int _i6765 = 0; _i6765 < _list6763.size; ++_i6765) { - _elem6780 = new com.cinchapi.concourse.thrift.TObject(); - _elem6780.read(iprot); - struct.values.add(_elem6780); + _elem6764 = new com.cinchapi.concourse.thrift.TObject(); + _elem6764.read(iprot); + struct.values.add(_elem6764); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -640445,8 +639388,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesPage_result"); + public static class findKeyOperatorstrValues_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValues_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -640454,8 +639397,8 @@ public static class findKeyOperatorstrValuesPage_result implements org.apache.th private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValues_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValues_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -640553,13 +639496,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValues_result.class, metaDataMap); } - public findKeyOperatorstrValuesPage_result() { + public findKeyOperatorstrValues_result() { } - public findKeyOperatorstrValuesPage_result( + public findKeyOperatorstrValues_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -640577,7 +639520,7 @@ public findKeyOperatorstrValuesPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesPage_result(findKeyOperatorstrValuesPage_result other) { + public findKeyOperatorstrValues_result(findKeyOperatorstrValues_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -640597,8 +639540,8 @@ public findKeyOperatorstrValuesPage_result(findKeyOperatorstrValuesPage_result o } @Override - public findKeyOperatorstrValuesPage_result deepCopy() { - return new findKeyOperatorstrValuesPage_result(this); + public findKeyOperatorstrValues_result deepCopy() { + return new findKeyOperatorstrValues_result(this); } @Override @@ -640631,7 +639574,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValues_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -640656,7 +639599,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValues_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -640681,7 +639624,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValues_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -640706,7 +639649,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValues_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -640731,7 +639674,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValues_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -640844,12 +639787,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesPage_result) - return this.equals((findKeyOperatorstrValuesPage_result)that); + if (that instanceof findKeyOperatorstrValues_result) + return this.equals((findKeyOperatorstrValues_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesPage_result that) { + public boolean equals(findKeyOperatorstrValues_result that) { if (that == null) return false; if (this == that) @@ -640931,7 +639874,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesPage_result other) { + public int compareTo(findKeyOperatorstrValues_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -641008,7 +639951,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValues_result("); boolean first = true; sb.append("success:"); @@ -641075,17 +640018,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValues_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesPage_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesPage_resultStandardScheme(); + public findKeyOperatorstrValues_resultStandardScheme getScheme() { + return new findKeyOperatorstrValues_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValues_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -641098,13 +640041,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6782 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6782.size); - long _elem6783; - for (int _i6784 = 0; _i6784 < _set6782.size; ++_i6784) + org.apache.thrift.protocol.TSet _set6766 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6766.size); + long _elem6767; + for (int _i6768 = 0; _i6768 < _set6766.size; ++_i6768) { - _elem6783 = iprot.readI64(); - struct.success.add(_elem6783); + _elem6767 = iprot.readI64(); + struct.success.add(_elem6767); } iprot.readSetEnd(); } @@ -641161,7 +640104,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValues_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -641169,9 +640112,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6785 : struct.success) + for (long _iter6769 : struct.success) { - oprot.writeI64(_iter6785); + oprot.writeI64(_iter6769); } oprot.writeSetEnd(); } @@ -641203,17 +640146,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValues_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesPage_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesPage_resultTupleScheme(); + public findKeyOperatorstrValues_resultTupleScheme getScheme() { + return new findKeyOperatorstrValues_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValues_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -641235,9 +640178,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6786 : struct.success) + for (long _iter6770 : struct.success) { - oprot.writeI64(_iter6786); + oprot.writeI64(_iter6770); } } } @@ -641256,18 +640199,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValues_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6787 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6787.size); - long _elem6788; - for (int _i6789 = 0; _i6789 < _set6787.size; ++_i6789) + org.apache.thrift.protocol.TSet _set6771 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6771.size); + long _elem6772; + for (int _i6773 = 0; _i6773 < _set6771.size; ++_i6773) { - _elem6788 = iprot.readI64(); - struct.success.add(_elem6788); + _elem6772 = iprot.readI64(); + struct.success.add(_elem6772); } } struct.setSuccessIsSet(true); @@ -641300,24 +640243,24 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesOrder_args"); + public static class findKeyOperatorstrValuesPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -641327,7 +640270,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), OPERATOR((short)2, "operator"), VALUES((short)3, "values"), - ORDER((short)4, "order"), + PAGE((short)4, "page"), CREDS((short)5, "creds"), TRANSACTION((short)6, "transaction"), ENVIRONMENT((short)7, "environment"); @@ -641352,8 +640295,8 @@ public static _Fields findByThriftId(int fieldId) { return OPERATOR; case 3: // VALUES return VALUES; - case 4: // ORDER - return ORDER; + case 4: // PAGE + return PAGE; case 5: // CREDS return CREDS; case 6: // TRANSACTION @@ -641413,8 +640356,8 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -641422,17 +640365,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesPage_args.class, metaDataMap); } - public findKeyOperatorstrValuesOrder_args() { + public findKeyOperatorstrValuesPage_args() { } - public findKeyOperatorstrValuesOrder_args( + public findKeyOperatorstrValuesPage_args( java.lang.String key, java.lang.String operator, java.util.List values, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -641441,7 +640384,7 @@ public findKeyOperatorstrValuesOrder_args( this.key = key; this.operator = operator; this.values = values; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -641450,7 +640393,7 @@ public findKeyOperatorstrValuesOrder_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesOrder_args(findKeyOperatorstrValuesOrder_args other) { + public findKeyOperatorstrValuesPage_args(findKeyOperatorstrValuesPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -641464,8 +640407,8 @@ public findKeyOperatorstrValuesOrder_args(findKeyOperatorstrValuesOrder_args oth } this.values = __this__values; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -641479,8 +640422,8 @@ public findKeyOperatorstrValuesOrder_args(findKeyOperatorstrValuesOrder_args oth } @Override - public findKeyOperatorstrValuesOrder_args deepCopy() { - return new findKeyOperatorstrValuesOrder_args(this); + public findKeyOperatorstrValuesPage_args deepCopy() { + return new findKeyOperatorstrValuesPage_args(this); } @Override @@ -641488,7 +640431,7 @@ public void clear() { this.key = null; this.operator = null; this.values = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -641499,7 +640442,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -641524,7 +640467,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesOrder_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -641565,7 +640508,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -641586,27 +640529,27 @@ public void setValuesIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findKeyOperatorstrValuesOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public findKeyOperatorstrValuesPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -641615,7 +640558,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -641640,7 +640583,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -641665,7 +640608,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -641712,11 +640655,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -641760,8 +640703,8 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUES: return getValues(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -641790,8 +640733,8 @@ public boolean isSet(_Fields field) { return isSetOperator(); case VALUES: return isSetValues(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -641804,12 +640747,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesOrder_args) - return this.equals((findKeyOperatorstrValuesOrder_args)that); + if (that instanceof findKeyOperatorstrValuesPage_args) + return this.equals((findKeyOperatorstrValuesPage_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesOrder_args that) { + public boolean equals(findKeyOperatorstrValuesPage_args that) { if (that == null) return false; if (this == that) @@ -641842,12 +640785,12 @@ public boolean equals(findKeyOperatorstrValuesOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -641897,9 +640840,9 @@ public int hashCode() { if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -641917,7 +640860,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesOrder_args other) { + public int compareTo(findKeyOperatorstrValuesPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -641954,12 +640897,12 @@ public int compareTo(findKeyOperatorstrValuesOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -642015,7 +640958,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesPage_args("); boolean first = true; sb.append("key:"); @@ -642042,11 +640985,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -642080,8 +641023,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -642107,17 +641050,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesOrder_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesOrder_argsStandardScheme(); + public findKeyOperatorstrValuesPage_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesPage_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -642146,14 +641089,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6790 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6790.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6791; - for (int _i6792 = 0; _i6792 < _list6790.size; ++_i6792) + org.apache.thrift.protocol.TList _list6774 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6774.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6775; + for (int _i6776 = 0; _i6776 < _list6774.size; ++_i6776) { - _elem6791 = new com.cinchapi.concourse.thrift.TObject(); - _elem6791.read(iprot); - struct.values.add(_elem6791); + _elem6775 = new com.cinchapi.concourse.thrift.TObject(); + _elem6775.read(iprot); + struct.values.add(_elem6775); } iprot.readListEnd(); } @@ -642162,11 +641105,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ORDER + case 4: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -642209,7 +641152,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -642227,17 +641170,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6793 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6777 : struct.values) { - _iter6793.write(oprot); + _iter6777.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -642261,17 +641204,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesOrder_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesOrder_argsTupleScheme(); + public findKeyOperatorstrValuesPage_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesPage_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -642283,7 +641226,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { optionals.set(2); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(3); } if (struct.isSetCreds()) { @@ -642305,14 +641248,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6794 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6778 : struct.values) { - _iter6794.write(oprot); + _iter6778.write(oprot); } } } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -642326,7 +641269,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { @@ -642339,22 +641282,22 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6795 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6795.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6796; - for (int _i6797 = 0; _i6797 < _list6795.size; ++_i6797) + org.apache.thrift.protocol.TList _list6779 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6779.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6780; + for (int _i6781 = 0; _i6781 < _list6779.size; ++_i6781) { - _elem6796 = new com.cinchapi.concourse.thrift.TObject(); - _elem6796.read(iprot); - struct.values.add(_elem6796); + _elem6780 = new com.cinchapi.concourse.thrift.TObject(); + _elem6780.read(iprot); + struct.values.add(_elem6780); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -642378,8 +641321,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesOrder_result"); + public static class findKeyOperatorstrValuesPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -642387,8 +641330,8 @@ public static class findKeyOperatorstrValuesOrder_result implements org.apache.t private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -642486,13 +641429,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesPage_result.class, metaDataMap); } - public findKeyOperatorstrValuesOrder_result() { + public findKeyOperatorstrValuesPage_result() { } - public findKeyOperatorstrValuesOrder_result( + public findKeyOperatorstrValuesPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -642510,7 +641453,7 @@ public findKeyOperatorstrValuesOrder_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesOrder_result(findKeyOperatorstrValuesOrder_result other) { + public findKeyOperatorstrValuesPage_result(findKeyOperatorstrValuesPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -642530,8 +641473,8 @@ public findKeyOperatorstrValuesOrder_result(findKeyOperatorstrValuesOrder_result } @Override - public findKeyOperatorstrValuesOrder_result deepCopy() { - return new findKeyOperatorstrValuesOrder_result(this); + public findKeyOperatorstrValuesPage_result deepCopy() { + return new findKeyOperatorstrValuesPage_result(this); } @Override @@ -642564,7 +641507,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -642589,7 +641532,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -642614,7 +641557,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -642639,7 +641582,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -642664,7 +641607,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -642777,12 +641720,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesOrder_result) - return this.equals((findKeyOperatorstrValuesOrder_result)that); + if (that instanceof findKeyOperatorstrValuesPage_result) + return this.equals((findKeyOperatorstrValuesPage_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesOrder_result that) { + public boolean equals(findKeyOperatorstrValuesPage_result that) { if (that == null) return false; if (this == that) @@ -642864,7 +641807,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesOrder_result other) { + public int compareTo(findKeyOperatorstrValuesPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -642941,7 +641884,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesPage_result("); boolean first = true; sb.append("success:"); @@ -643008,17 +641951,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesOrder_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesOrder_resultStandardScheme(); + public findKeyOperatorstrValuesPage_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesPage_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -643031,13 +641974,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6798 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6798.size); - long _elem6799; - for (int _i6800 = 0; _i6800 < _set6798.size; ++_i6800) + org.apache.thrift.protocol.TSet _set6782 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6782.size); + long _elem6783; + for (int _i6784 = 0; _i6784 < _set6782.size; ++_i6784) { - _elem6799 = iprot.readI64(); - struct.success.add(_elem6799); + _elem6783 = iprot.readI64(); + struct.success.add(_elem6783); } iprot.readSetEnd(); } @@ -643094,7 +642037,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -643102,9 +642045,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6801 : struct.success) + for (long _iter6785 : struct.success) { - oprot.writeI64(_iter6801); + oprot.writeI64(_iter6785); } oprot.writeSetEnd(); } @@ -643136,17 +642079,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesOrder_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesOrder_resultTupleScheme(); + public findKeyOperatorstrValuesPage_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesPage_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -643168,9 +642111,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6802 : struct.success) + for (long _iter6786 : struct.success) { - oprot.writeI64(_iter6802); + oprot.writeI64(_iter6786); } } } @@ -643189,18 +642132,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6803 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6803.size); - long _elem6804; - for (int _i6805 = 0; _i6805 < _set6803.size; ++_i6805) + org.apache.thrift.protocol.TSet _set6787 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6787.size); + long _elem6788; + for (int _i6789 = 0; _i6789 < _set6787.size; ++_i6789) { - _elem6804 = iprot.readI64(); - struct.success.add(_elem6804); + _elem6788 = iprot.readI64(); + struct.success.add(_elem6788); } } struct.setSuccessIsSet(true); @@ -643233,26 +642176,24 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesOrderPage_args"); + public static class findKeyOperatorstrValuesOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -643263,10 +642204,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), ORDER((short)4, "order"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -643290,13 +642230,11 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // ORDER return ORDER; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -643353,8 +642291,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -643362,18 +642298,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesOrder_args.class, metaDataMap); } - public findKeyOperatorstrValuesOrderPage_args() { + public findKeyOperatorstrValuesOrder_args() { } - public findKeyOperatorstrValuesOrderPage_args( + public findKeyOperatorstrValuesOrder_args( java.lang.String key, java.lang.String operator, java.util.List values, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -643383,7 +642318,6 @@ public findKeyOperatorstrValuesOrderPage_args( this.operator = operator; this.values = values; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -643392,7 +642326,7 @@ public findKeyOperatorstrValuesOrderPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesOrderPage_args(findKeyOperatorstrValuesOrderPage_args other) { + public findKeyOperatorstrValuesOrder_args(findKeyOperatorstrValuesOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -643409,9 +642343,6 @@ public findKeyOperatorstrValuesOrderPage_args(findKeyOperatorstrValuesOrderPage_ if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -643424,8 +642355,8 @@ public findKeyOperatorstrValuesOrderPage_args(findKeyOperatorstrValuesOrderPage_ } @Override - public findKeyOperatorstrValuesOrderPage_args deepCopy() { - return new findKeyOperatorstrValuesOrderPage_args(this); + public findKeyOperatorstrValuesOrder_args deepCopy() { + return new findKeyOperatorstrValuesOrder_args(this); } @Override @@ -643434,7 +642365,6 @@ public void clear() { this.operator = null; this.values = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -643445,7 +642375,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -643470,7 +642400,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesOrder_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -643511,7 +642441,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -643536,7 +642466,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public findKeyOperatorstrValuesOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public findKeyOperatorstrValuesOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -643556,37 +642486,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorstrValuesOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -643611,7 +642516,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -643636,7 +642541,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -643691,14 +642596,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -643742,9 +642639,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -643774,8 +642668,6 @@ public boolean isSet(_Fields field) { return isSetValues(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -643788,12 +642680,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesOrderPage_args) - return this.equals((findKeyOperatorstrValuesOrderPage_args)that); + if (that instanceof findKeyOperatorstrValuesOrder_args) + return this.equals((findKeyOperatorstrValuesOrder_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesOrderPage_args that) { + public boolean equals(findKeyOperatorstrValuesOrder_args that) { if (that == null) return false; if (this == that) @@ -643835,15 +642727,6 @@ public boolean equals(findKeyOperatorstrValuesOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -643894,10 +642777,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -643914,7 +642793,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesOrderPage_args other) { + public int compareTo(findKeyOperatorstrValuesOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -643961,16 +642840,6 @@ public int compareTo(findKeyOperatorstrValuesOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -644022,7 +642891,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesOrder_args("); boolean first = true; sb.append("key:"); @@ -644057,14 +642926,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -644098,9 +642959,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -644125,17 +642983,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesOrderPage_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesOrderPage_argsStandardScheme(); + public findKeyOperatorstrValuesOrder_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesOrder_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -644164,14 +643022,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6806 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6806.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6807; - for (int _i6808 = 0; _i6808 < _list6806.size; ++_i6808) + org.apache.thrift.protocol.TList _list6790 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6790.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6791; + for (int _i6792 = 0; _i6792 < _list6790.size; ++_i6792) { - _elem6807 = new com.cinchapi.concourse.thrift.TObject(); - _elem6807.read(iprot); - struct.values.add(_elem6807); + _elem6791 = new com.cinchapi.concourse.thrift.TObject(); + _elem6791.read(iprot); + struct.values.add(_elem6791); } iprot.readListEnd(); } @@ -644189,16 +643047,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -644207,7 +643056,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -644216,7 +643065,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -644236,7 +643085,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -644254,9 +643103,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6809 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6793 : struct.values) { - _iter6809.write(oprot); + _iter6793.write(oprot); } oprot.writeListEnd(); } @@ -644267,11 +643116,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -644293,17 +643137,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesOrderPage_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesOrderPage_argsTupleScheme(); + public findKeyOperatorstrValuesOrder_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesOrder_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -644318,19 +643162,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -644340,18 +643181,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6810 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6794 : struct.values) { - _iter6810.write(oprot); + _iter6794.write(oprot); } } } if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -644364,9 +643202,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -644377,14 +643215,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6811 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6811.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6812; - for (int _i6813 = 0; _i6813 < _list6811.size; ++_i6813) + org.apache.thrift.protocol.TList _list6795 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6795.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6796; + for (int _i6797 = 0; _i6797 < _list6795.size; ++_i6797) { - _elem6812 = new com.cinchapi.concourse.thrift.TObject(); - _elem6812.read(iprot); - struct.values.add(_elem6812); + _elem6796 = new com.cinchapi.concourse.thrift.TObject(); + _elem6796.read(iprot); + struct.values.add(_elem6796); } } struct.setValuesIsSet(true); @@ -644395,21 +643233,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa struct.setOrderIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -644421,8 +643254,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesOrderPage_result"); + public static class findKeyOperatorstrValuesOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -644430,8 +643263,8 @@ public static class findKeyOperatorstrValuesOrderPage_result implements org.apac private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -644529,13 +643362,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesOrder_result.class, metaDataMap); } - public findKeyOperatorstrValuesOrderPage_result() { + public findKeyOperatorstrValuesOrder_result() { } - public findKeyOperatorstrValuesOrderPage_result( + public findKeyOperatorstrValuesOrder_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -644553,7 +643386,7 @@ public findKeyOperatorstrValuesOrderPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesOrderPage_result(findKeyOperatorstrValuesOrderPage_result other) { + public findKeyOperatorstrValuesOrder_result(findKeyOperatorstrValuesOrder_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -644573,8 +643406,8 @@ public findKeyOperatorstrValuesOrderPage_result(findKeyOperatorstrValuesOrderPag } @Override - public findKeyOperatorstrValuesOrderPage_result deepCopy() { - return new findKeyOperatorstrValuesOrderPage_result(this); + public findKeyOperatorstrValuesOrder_result deepCopy() { + return new findKeyOperatorstrValuesOrder_result(this); } @Override @@ -644607,7 +643440,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -644632,7 +643465,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -644657,7 +643490,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -644682,7 +643515,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -644707,7 +643540,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -644820,12 +643653,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesOrderPage_result) - return this.equals((findKeyOperatorstrValuesOrderPage_result)that); + if (that instanceof findKeyOperatorstrValuesOrder_result) + return this.equals((findKeyOperatorstrValuesOrder_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesOrderPage_result that) { + public boolean equals(findKeyOperatorstrValuesOrder_result that) { if (that == null) return false; if (this == that) @@ -644907,7 +643740,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesOrderPage_result other) { + public int compareTo(findKeyOperatorstrValuesOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -644984,7 +643817,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesOrder_result("); boolean first = true; sb.append("success:"); @@ -645051,17 +643884,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesOrderPage_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesOrderPage_resultStandardScheme(); + public findKeyOperatorstrValuesOrder_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesOrder_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -645074,13 +643907,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6814 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6814.size); - long _elem6815; - for (int _i6816 = 0; _i6816 < _set6814.size; ++_i6816) + org.apache.thrift.protocol.TSet _set6798 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6798.size); + long _elem6799; + for (int _i6800 = 0; _i6800 < _set6798.size; ++_i6800) { - _elem6815 = iprot.readI64(); - struct.success.add(_elem6815); + _elem6799 = iprot.readI64(); + struct.success.add(_elem6799); } iprot.readSetEnd(); } @@ -645137,7 +643970,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -645145,9 +643978,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6817 : struct.success) + for (long _iter6801 : struct.success) { - oprot.writeI64(_iter6817); + oprot.writeI64(_iter6801); } oprot.writeSetEnd(); } @@ -645179,17 +644012,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesOrderPage_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesOrderPage_resultTupleScheme(); + public findKeyOperatorstrValuesOrder_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesOrder_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -645211,9 +644044,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6818 : struct.success) + for (long _iter6802 : struct.success) { - oprot.writeI64(_iter6818); + oprot.writeI64(_iter6802); } } } @@ -645232,18 +644065,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6819 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6819.size); - long _elem6820; - for (int _i6821 = 0; _i6821 < _set6819.size; ++_i6821) + org.apache.thrift.protocol.TSet _set6803 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6803.size); + long _elem6804; + for (int _i6805 = 0; _i6805 < _set6803.size; ++_i6805) { - _elem6820 = iprot.readI64(); - struct.success.add(_elem6820); + _elem6804 = iprot.readI64(); + struct.success.add(_elem6804); } } struct.setSuccessIsSet(true); @@ -645276,24 +644109,26 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTime_args"); + public static class findKeyOperatorstrValuesOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -645303,10 +644138,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), OPERATOR((short)2, "operator"), VALUES((short)3, "values"), - TIMESTAMP((short)4, "timestamp"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + ORDER((short)4, "order"), + PAGE((short)5, "page"), + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -645328,13 +644164,15 @@ public static _Fields findByThriftId(int fieldId) { return OPERATOR; case 3: // VALUES return VALUES; - case 4: // TIMESTAMP - return TIMESTAMP; - case 5: // CREDS + case 4: // ORDER + return ORDER; + case 5: // PAGE + return PAGE; + case 6: // CREDS return CREDS; - case 6: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -645379,8 +644217,6 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -645391,8 +644227,10 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -645400,17 +644238,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesOrderPage_args.class, metaDataMap); } - public findKeyOperatorstrValuesTime_args() { + public findKeyOperatorstrValuesOrderPage_args() { } - public findKeyOperatorstrValuesTime_args( + public findKeyOperatorstrValuesOrderPage_args( java.lang.String key, java.lang.String operator, java.util.List values, - long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -645419,8 +644258,8 @@ public findKeyOperatorstrValuesTime_args( this.key = key; this.operator = operator; this.values = values; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -645429,8 +644268,7 @@ public findKeyOperatorstrValuesTime_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTime_args(findKeyOperatorstrValuesTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public findKeyOperatorstrValuesOrderPage_args(findKeyOperatorstrValuesOrderPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -645444,7 +644282,12 @@ public findKeyOperatorstrValuesTime_args(findKeyOperatorstrValuesTime_args other } this.values = __this__values; } - this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -645457,8 +644300,8 @@ public findKeyOperatorstrValuesTime_args(findKeyOperatorstrValuesTime_args other } @Override - public findKeyOperatorstrValuesTime_args deepCopy() { - return new findKeyOperatorstrValuesTime_args(this); + public findKeyOperatorstrValuesOrderPage_args deepCopy() { + return new findKeyOperatorstrValuesOrderPage_args(this); } @Override @@ -645466,8 +644309,8 @@ public void clear() { this.key = null; this.operator = null; this.values = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -645478,7 +644321,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -645503,7 +644346,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesTime_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -645544,7 +644387,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesTime_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -645564,27 +644407,54 @@ public void setValuesIsSet(boolean value) { } } - public long getTimestamp() { - return this.timestamp; + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; } - public findKeyOperatorstrValuesTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); + public findKeyOperatorstrValuesOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; return this; } - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + public void unsetOrder() { + this.order = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; } - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public findKeyOperatorstrValuesOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; + } } @org.apache.thrift.annotation.Nullable @@ -645592,7 +644462,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -645617,7 +644487,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -645642,7 +644512,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -645689,11 +644559,19 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TIMESTAMP: + case ORDER: if (value == null) { - unsetTimestamp(); + unsetOrder(); } else { - setTimestamp((java.lang.Long)value); + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -645737,8 +644615,11 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUES: return getValues(); - case TIMESTAMP: - return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -645767,8 +644648,10 @@ public boolean isSet(_Fields field) { return isSetOperator(); case VALUES: return isSetValues(); - case TIMESTAMP: - return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -645781,12 +644664,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTime_args) - return this.equals((findKeyOperatorstrValuesTime_args)that); + if (that instanceof findKeyOperatorstrValuesOrderPage_args) + return this.equals((findKeyOperatorstrValuesOrderPage_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesTime_args that) { + public boolean equals(findKeyOperatorstrValuesOrderPage_args that) { if (that == null) return false; if (this == that) @@ -645819,12 +644702,21 @@ public boolean equals(findKeyOperatorstrValuesTime_args that) { return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) return false; - if (this.timestamp != that.timestamp) + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -645874,7 +644766,13 @@ public int hashCode() { if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -645892,7 +644790,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTime_args other) { + public int compareTo(findKeyOperatorstrValuesOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -645929,12 +644827,22 @@ public int compareTo(findKeyOperatorstrValuesTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -645990,7 +644898,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesOrderPage_args("); boolean first = true; sb.append("key:"); @@ -646017,8 +644925,20 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -646051,6 +644971,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -646069,25 +644995,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 findKeyOperatorstrValuesTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTime_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesTime_argsStandardScheme(); + public findKeyOperatorstrValuesOrderPage_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesOrderPage_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -646116,14 +645040,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6822 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6822.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6823; - for (int _i6824 = 0; _i6824 < _list6822.size; ++_i6824) + org.apache.thrift.protocol.TList _list6806 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6806.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6807; + for (int _i6808 = 0; _i6808 < _list6806.size; ++_i6808) { - _elem6823 = new com.cinchapi.concourse.thrift.TObject(); - _elem6823.read(iprot); - struct.values.add(_elem6823); + _elem6807 = new com.cinchapi.concourse.thrift.TObject(); + _elem6807.read(iprot); + struct.values.add(_elem6807); } iprot.readListEnd(); } @@ -646132,15 +645056,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 4: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // CREDS + case 5: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -646149,7 +645083,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -646158,7 +645092,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -646178,7 +645112,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -646196,17 +645130,24 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6825 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6809 : struct.values) { - _iter6825.write(oprot); + _iter6809.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -646228,17 +645169,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTime_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesTime_argsTupleScheme(); + public findKeyOperatorstrValuesOrderPage_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesOrderPage_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -646250,19 +645191,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { optionals.set(2); } - if (struct.isSetTimestamp()) { + if (struct.isSetOrder()) { optionals.set(3); } - if (struct.isSetCreds()) { + if (struct.isSetPage()) { optionals.set(4); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(5); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(6); } - oprot.writeBitSet(optionals, 7); + if (struct.isSetEnvironment()) { + optionals.set(7); + } + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -646272,14 +645216,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6826 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6810 : struct.values) { - _iter6826.write(oprot); + _iter6810.write(oprot); } } } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -646293,9 +645240,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -646306,33 +645253,39 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6827 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6827.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6828; - for (int _i6829 = 0; _i6829 < _list6827.size; ++_i6829) + org.apache.thrift.protocol.TList _list6811 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6811.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6812; + for (int _i6813 = 0; _i6813 < _list6811.size; ++_i6813) { - _elem6828 = new com.cinchapi.concourse.thrift.TObject(); - _elem6828.read(iprot); - struct.values.add(_elem6828); + _elem6812 = new com.cinchapi.concourse.thrift.TObject(); + _elem6812.read(iprot); + struct.values.add(_elem6812); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); } if (incoming.get(4)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -646344,8 +645297,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTime_result"); + public static class findKeyOperatorstrValuesOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -646353,8 +645306,8 @@ public static class findKeyOperatorstrValuesTime_result implements org.apache.th private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -646452,13 +645405,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesOrderPage_result.class, metaDataMap); } - public findKeyOperatorstrValuesTime_result() { + public findKeyOperatorstrValuesOrderPage_result() { } - public findKeyOperatorstrValuesTime_result( + public findKeyOperatorstrValuesOrderPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -646476,7 +645429,7 @@ public findKeyOperatorstrValuesTime_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTime_result(findKeyOperatorstrValuesTime_result other) { + public findKeyOperatorstrValuesOrderPage_result(findKeyOperatorstrValuesOrderPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -646496,8 +645449,8 @@ public findKeyOperatorstrValuesTime_result(findKeyOperatorstrValuesTime_result o } @Override - public findKeyOperatorstrValuesTime_result deepCopy() { - return new findKeyOperatorstrValuesTime_result(this); + public findKeyOperatorstrValuesOrderPage_result deepCopy() { + return new findKeyOperatorstrValuesOrderPage_result(this); } @Override @@ -646530,7 +645483,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -646555,7 +645508,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -646580,7 +645533,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -646605,7 +645558,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -646630,7 +645583,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -646743,12 +645696,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTime_result) - return this.equals((findKeyOperatorstrValuesTime_result)that); + if (that instanceof findKeyOperatorstrValuesOrderPage_result) + return this.equals((findKeyOperatorstrValuesOrderPage_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesTime_result that) { + public boolean equals(findKeyOperatorstrValuesOrderPage_result that) { if (that == null) return false; if (this == that) @@ -646830,7 +645783,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTime_result other) { + public int compareTo(findKeyOperatorstrValuesOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -646907,7 +645860,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesOrderPage_result("); boolean first = true; sb.append("success:"); @@ -646974,17 +645927,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTime_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesTime_resultStandardScheme(); + public findKeyOperatorstrValuesOrderPage_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesOrderPage_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -646997,13 +645950,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6830 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6830.size); - long _elem6831; - for (int _i6832 = 0; _i6832 < _set6830.size; ++_i6832) + org.apache.thrift.protocol.TSet _set6814 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6814.size); + long _elem6815; + for (int _i6816 = 0; _i6816 < _set6814.size; ++_i6816) { - _elem6831 = iprot.readI64(); - struct.success.add(_elem6831); + _elem6815 = iprot.readI64(); + struct.success.add(_elem6815); } iprot.readSetEnd(); } @@ -647060,7 +646013,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -647068,9 +646021,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6833 : struct.success) + for (long _iter6817 : struct.success) { - oprot.writeI64(_iter6833); + oprot.writeI64(_iter6817); } oprot.writeSetEnd(); } @@ -647102,17 +646055,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTime_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesTime_resultTupleScheme(); + public findKeyOperatorstrValuesOrderPage_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesOrderPage_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -647134,9 +646087,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6834 : struct.success) + for (long _iter6818 : struct.success) { - oprot.writeI64(_iter6834); + oprot.writeI64(_iter6818); } } } @@ -647155,18 +646108,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6835 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6835.size); - long _elem6836; - for (int _i6837 = 0; _i6837 < _set6835.size; ++_i6837) + org.apache.thrift.protocol.TSet _set6819 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6819.size); + long _elem6820; + for (int _i6821 = 0; _i6821 < _set6819.size; ++_i6821) { - _elem6836 = iprot.readI64(); - struct.success.add(_elem6836); + _elem6820 = iprot.readI64(); + struct.success.add(_elem6820); } } struct.setSuccessIsSet(true); @@ -647199,26 +646152,24 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimePage_args"); + public static class findKeyOperatorstrValuesTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimePage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimePage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -647229,10 +646180,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -647256,13 +646206,11 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -647321,8 +646269,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -647330,18 +646276,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimePage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTime_args.class, metaDataMap); } - public findKeyOperatorstrValuesTimePage_args() { + public findKeyOperatorstrValuesTime_args() { } - public findKeyOperatorstrValuesTimePage_args( + public findKeyOperatorstrValuesTime_args( java.lang.String key, java.lang.String operator, java.util.List values, long timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -647352,7 +646297,6 @@ public findKeyOperatorstrValuesTimePage_args( this.values = values; this.timestamp = timestamp; setTimestampIsSet(true); - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -647361,7 +646305,7 @@ public findKeyOperatorstrValuesTimePage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimePage_args(findKeyOperatorstrValuesTimePage_args other) { + public findKeyOperatorstrValuesTime_args(findKeyOperatorstrValuesTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -647377,9 +646321,6 @@ public findKeyOperatorstrValuesTimePage_args(findKeyOperatorstrValuesTimePage_ar this.values = __this__values; } this.timestamp = other.timestamp; - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -647392,8 +646333,8 @@ public findKeyOperatorstrValuesTimePage_args(findKeyOperatorstrValuesTimePage_ar } @Override - public findKeyOperatorstrValuesTimePage_args deepCopy() { - return new findKeyOperatorstrValuesTimePage_args(this); + public findKeyOperatorstrValuesTime_args deepCopy() { + return new findKeyOperatorstrValuesTime_args(this); } @Override @@ -647403,7 +646344,6 @@ public void clear() { this.values = null; setTimestampIsSet(false); this.timestamp = 0; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -647414,7 +646354,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -647439,7 +646379,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesTimePage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesTime_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -647480,7 +646420,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesTimePage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesTime_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -647504,7 +646444,7 @@ public long getTimestamp() { return this.timestamp; } - public findKeyOperatorstrValuesTimePage_args setTimestamp(long timestamp) { + public findKeyOperatorstrValuesTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -647523,37 +646463,12 @@ public void setTimestampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorstrValuesTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -647578,7 +646493,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -647603,7 +646518,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -647658,14 +646573,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -647709,9 +646616,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -647741,8 +646645,6 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -647755,12 +646657,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimePage_args) - return this.equals((findKeyOperatorstrValuesTimePage_args)that); + if (that instanceof findKeyOperatorstrValuesTime_args) + return this.equals((findKeyOperatorstrValuesTime_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimePage_args that) { + public boolean equals(findKeyOperatorstrValuesTime_args that) { if (that == null) return false; if (this == that) @@ -647802,15 +646704,6 @@ public boolean equals(findKeyOperatorstrValuesTimePage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -647859,10 +646752,6 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -647879,7 +646768,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimePage_args other) { + public int compareTo(findKeyOperatorstrValuesTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -647926,16 +646815,6 @@ public int compareTo(findKeyOperatorstrValuesTimePage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -647987,7 +646866,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimePage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTime_args("); boolean first = true; sb.append("key:"); @@ -648018,14 +646897,6 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -648056,9 +646927,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -648085,17 +646953,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimePage_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimePage_argsStandardScheme(); + public findKeyOperatorstrValuesTime_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesTime_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -648124,14 +646992,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6838 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6838.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6839; - for (int _i6840 = 0; _i6840 < _list6838.size; ++_i6840) + org.apache.thrift.protocol.TList _list6822 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6822.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6823; + for (int _i6824 = 0; _i6824 < _list6822.size; ++_i6824) { - _elem6839 = new com.cinchapi.concourse.thrift.TObject(); - _elem6839.read(iprot); - struct.values.add(_elem6839); + _elem6823 = new com.cinchapi.concourse.thrift.TObject(); + _elem6823.read(iprot); + struct.values.add(_elem6823); } iprot.readListEnd(); } @@ -648148,16 +647016,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -648166,7 +647025,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -648175,7 +647034,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -648195,7 +647054,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -648213,9 +647072,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6841 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6825 : struct.values) { - _iter6841.write(oprot); + _iter6825.write(oprot); } oprot.writeListEnd(); } @@ -648224,11 +647083,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -648250,17 +647104,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimePage_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimePage_argsTupleScheme(); + public findKeyOperatorstrValuesTime_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesTime_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimePage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -648275,19 +647129,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -648297,18 +647148,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6842 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6826 : struct.values) { - _iter6842.write(oprot); + _iter6826.write(oprot); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -648321,9 +647169,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimePage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -648334,14 +647182,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6843 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6843.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6844; - for (int _i6845 = 0; _i6845 < _list6843.size; ++_i6845) + org.apache.thrift.protocol.TList _list6827 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6827.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6828; + for (int _i6829 = 0; _i6829 < _list6827.size; ++_i6829) { - _elem6844 = new com.cinchapi.concourse.thrift.TObject(); - _elem6844.read(iprot); - struct.values.add(_elem6844); + _elem6828 = new com.cinchapi.concourse.thrift.TObject(); + _elem6828.read(iprot); + struct.values.add(_elem6828); } } struct.setValuesIsSet(true); @@ -648351,21 +647199,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa struct.setTimestampIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -648377,8 +647220,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimePage_result"); + public static class findKeyOperatorstrValuesTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -648386,8 +647229,8 @@ public static class findKeyOperatorstrValuesTimePage_result implements org.apach private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimePage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimePage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -648485,13 +647328,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimePage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTime_result.class, metaDataMap); } - public findKeyOperatorstrValuesTimePage_result() { + public findKeyOperatorstrValuesTime_result() { } - public findKeyOperatorstrValuesTimePage_result( + public findKeyOperatorstrValuesTime_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -648509,7 +647352,7 @@ public findKeyOperatorstrValuesTimePage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimePage_result(findKeyOperatorstrValuesTimePage_result other) { + public findKeyOperatorstrValuesTime_result(findKeyOperatorstrValuesTime_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -648529,8 +647372,8 @@ public findKeyOperatorstrValuesTimePage_result(findKeyOperatorstrValuesTimePage_ } @Override - public findKeyOperatorstrValuesTimePage_result deepCopy() { - return new findKeyOperatorstrValuesTimePage_result(this); + public findKeyOperatorstrValuesTime_result deepCopy() { + return new findKeyOperatorstrValuesTime_result(this); } @Override @@ -648563,7 +647406,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -648588,7 +647431,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -648613,7 +647456,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -648638,7 +647481,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -648663,7 +647506,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesTime_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -648776,12 +647619,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimePage_result) - return this.equals((findKeyOperatorstrValuesTimePage_result)that); + if (that instanceof findKeyOperatorstrValuesTime_result) + return this.equals((findKeyOperatorstrValuesTime_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimePage_result that) { + public boolean equals(findKeyOperatorstrValuesTime_result that) { if (that == null) return false; if (this == that) @@ -648863,7 +647706,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimePage_result other) { + public int compareTo(findKeyOperatorstrValuesTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -648940,7 +647783,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimePage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTime_result("); boolean first = true; sb.append("success:"); @@ -649007,17 +647850,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimePage_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimePage_resultStandardScheme(); + public findKeyOperatorstrValuesTime_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesTime_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -649030,13 +647873,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6846 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6846.size); - long _elem6847; - for (int _i6848 = 0; _i6848 < _set6846.size; ++_i6848) + org.apache.thrift.protocol.TSet _set6830 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6830.size); + long _elem6831; + for (int _i6832 = 0; _i6832 < _set6830.size; ++_i6832) { - _elem6847 = iprot.readI64(); - struct.success.add(_elem6847); + _elem6831 = iprot.readI64(); + struct.success.add(_elem6831); } iprot.readSetEnd(); } @@ -649093,7 +647936,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -649101,9 +647944,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6849 : struct.success) + for (long _iter6833 : struct.success) { - oprot.writeI64(_iter6849); + oprot.writeI64(_iter6833); } oprot.writeSetEnd(); } @@ -649135,17 +647978,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimePage_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimePage_resultTupleScheme(); + public findKeyOperatorstrValuesTime_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesTime_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimePage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -649167,9 +648010,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6850 : struct.success) + for (long _iter6834 : struct.success) { - oprot.writeI64(_iter6850); + oprot.writeI64(_iter6834); } } } @@ -649188,18 +648031,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimePage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6851 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6851.size); - long _elem6852; - for (int _i6853 = 0; _i6853 < _set6851.size; ++_i6853) + org.apache.thrift.protocol.TSet _set6835 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6835.size); + long _elem6836; + for (int _i6837 = 0; _i6837 < _set6835.size; ++_i6837) { - _elem6852 = iprot.readI64(); - struct.success.add(_elem6852); + _elem6836 = iprot.readI64(); + struct.success.add(_elem6836); } } struct.setSuccessIsSet(true); @@ -649232,26 +648075,26 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimeOrder_args"); + public static class findKeyOperatorstrValuesTimePage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimePage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimePage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimePage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public long timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -649262,7 +648105,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - ORDER((short)5, "order"), + PAGE((short)5, "page"), CREDS((short)6, "creds"), TRANSACTION((short)7, "transaction"), ENVIRONMENT((short)8, "environment"); @@ -649289,8 +648132,8 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // ORDER - return ORDER; + case 5: // PAGE + return PAGE; case 6: // CREDS return CREDS; case 7: // TRANSACTION @@ -649354,8 +648197,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -649363,18 +648206,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimeOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimePage_args.class, metaDataMap); } - public findKeyOperatorstrValuesTimeOrder_args() { + public findKeyOperatorstrValuesTimePage_args() { } - public findKeyOperatorstrValuesTimeOrder_args( + public findKeyOperatorstrValuesTimePage_args( java.lang.String key, java.lang.String operator, java.util.List values, long timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -649385,7 +648228,7 @@ public findKeyOperatorstrValuesTimeOrder_args( this.values = values; this.timestamp = timestamp; setTimestampIsSet(true); - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -649394,7 +648237,7 @@ public findKeyOperatorstrValuesTimeOrder_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimeOrder_args(findKeyOperatorstrValuesTimeOrder_args other) { + public findKeyOperatorstrValuesTimePage_args(findKeyOperatorstrValuesTimePage_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -649410,8 +648253,8 @@ public findKeyOperatorstrValuesTimeOrder_args(findKeyOperatorstrValuesTimeOrder_ this.values = __this__values; } this.timestamp = other.timestamp; - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -649425,8 +648268,8 @@ public findKeyOperatorstrValuesTimeOrder_args(findKeyOperatorstrValuesTimeOrder_ } @Override - public findKeyOperatorstrValuesTimeOrder_args deepCopy() { - return new findKeyOperatorstrValuesTimeOrder_args(this); + public findKeyOperatorstrValuesTimePage_args deepCopy() { + return new findKeyOperatorstrValuesTimePage_args(this); } @Override @@ -649436,7 +648279,7 @@ public void clear() { this.values = null; setTimestampIsSet(false); this.timestamp = 0; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -649447,7 +648290,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesTimePage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -649472,7 +648315,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesTimeOrder_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesTimePage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -649513,7 +648356,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesTimeOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesTimePage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -649537,7 +648380,7 @@ public long getTimestamp() { return this.timestamp; } - public findKeyOperatorstrValuesTimeOrder_args setTimestamp(long timestamp) { + public findKeyOperatorstrValuesTimePage_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -649557,27 +648400,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findKeyOperatorstrValuesTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public findKeyOperatorstrValuesTimePage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -649586,7 +648429,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesTimePage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -649611,7 +648454,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesTimePage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -649636,7 +648479,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesTimePage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -649691,11 +648534,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -649742,8 +648585,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -649774,8 +648617,8 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -649788,12 +648631,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimeOrder_args) - return this.equals((findKeyOperatorstrValuesTimeOrder_args)that); + if (that instanceof findKeyOperatorstrValuesTimePage_args) + return this.equals((findKeyOperatorstrValuesTimePage_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimeOrder_args that) { + public boolean equals(findKeyOperatorstrValuesTimePage_args that) { if (that == null) return false; if (this == that) @@ -649835,12 +648678,12 @@ public boolean equals(findKeyOperatorstrValuesTimeOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -649892,9 +648735,9 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -649912,7 +648755,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimeOrder_args other) { + public int compareTo(findKeyOperatorstrValuesTimePage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -649959,12 +648802,12 @@ public int compareTo(findKeyOperatorstrValuesTimeOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -650020,7 +648863,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimeOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimePage_args("); boolean first = true; sb.append("key:"); @@ -650051,11 +648894,11 @@ public java.lang.String toString() { sb.append(this.timestamp); first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -650089,8 +648932,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -650118,17 +648961,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimePage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimeOrder_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimeOrder_argsStandardScheme(); + public findKeyOperatorstrValuesTimePage_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimePage_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimePage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -650157,14 +649000,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6854 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6854.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6855; - for (int _i6856 = 0; _i6856 < _list6854.size; ++_i6856) + org.apache.thrift.protocol.TList _list6838 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6838.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6839; + for (int _i6840 = 0; _i6840 < _list6838.size; ++_i6840) { - _elem6855 = new com.cinchapi.concourse.thrift.TObject(); - _elem6855.read(iprot); - struct.values.add(_elem6855); + _elem6839 = new com.cinchapi.concourse.thrift.TObject(); + _elem6839.read(iprot); + struct.values.add(_elem6839); } iprot.readListEnd(); } @@ -650181,11 +649024,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ORDER + case 5: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -650228,7 +649071,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimePage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -650246,9 +649089,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6857 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6841 : struct.values) { - _iter6857.write(oprot); + _iter6841.write(oprot); } oprot.writeListEnd(); } @@ -650257,9 +649100,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -650283,17 +649126,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimePage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimeOrder_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimeOrder_argsTupleScheme(); + public findKeyOperatorstrValuesTimePage_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimePage_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimePage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -650308,7 +649151,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(4); } if (struct.isSetCreds()) { @@ -650330,17 +649173,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6858 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6842 : struct.values) { - _iter6858.write(oprot); + _iter6842.write(oprot); } } } if (struct.isSetTimestamp()) { oprot.writeI64(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -650354,7 +649197,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimePage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { @@ -650367,14 +649210,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6859 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6859.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6860; - for (int _i6861 = 0; _i6861 < _list6859.size; ++_i6861) + org.apache.thrift.protocol.TList _list6843 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6843.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6844; + for (int _i6845 = 0; _i6845 < _list6843.size; ++_i6845) { - _elem6860 = new com.cinchapi.concourse.thrift.TObject(); - _elem6860.read(iprot); - struct.values.add(_elem6860); + _elem6844 = new com.cinchapi.concourse.thrift.TObject(); + _elem6844.read(iprot); + struct.values.add(_elem6844); } } struct.setValuesIsSet(true); @@ -650384,9 +649227,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa struct.setTimestampIsSet(true); } if (incoming.get(4)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -650410,8 +649253,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimeOrder_result"); + public static class findKeyOperatorstrValuesTimePage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimePage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -650419,8 +649262,8 @@ public static class findKeyOperatorstrValuesTimeOrder_result implements org.apac private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimePage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimePage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -650518,13 +649361,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimeOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimePage_result.class, metaDataMap); } - public findKeyOperatorstrValuesTimeOrder_result() { + public findKeyOperatorstrValuesTimePage_result() { } - public findKeyOperatorstrValuesTimeOrder_result( + public findKeyOperatorstrValuesTimePage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -650542,7 +649385,7 @@ public findKeyOperatorstrValuesTimeOrder_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimeOrder_result(findKeyOperatorstrValuesTimeOrder_result other) { + public findKeyOperatorstrValuesTimePage_result(findKeyOperatorstrValuesTimePage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -650562,8 +649405,8 @@ public findKeyOperatorstrValuesTimeOrder_result(findKeyOperatorstrValuesTimeOrde } @Override - public findKeyOperatorstrValuesTimeOrder_result deepCopy() { - return new findKeyOperatorstrValuesTimeOrder_result(this); + public findKeyOperatorstrValuesTimePage_result deepCopy() { + return new findKeyOperatorstrValuesTimePage_result(this); } @Override @@ -650596,7 +649439,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesTimePage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -650621,7 +649464,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesTimePage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -650646,7 +649489,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesTimePage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -650671,7 +649514,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesTimePage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -650696,7 +649539,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesTimePage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -650809,12 +649652,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimeOrder_result) - return this.equals((findKeyOperatorstrValuesTimeOrder_result)that); + if (that instanceof findKeyOperatorstrValuesTimePage_result) + return this.equals((findKeyOperatorstrValuesTimePage_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimeOrder_result that) { + public boolean equals(findKeyOperatorstrValuesTimePage_result that) { if (that == null) return false; if (this == that) @@ -650896,7 +649739,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimeOrder_result other) { + public int compareTo(findKeyOperatorstrValuesTimePage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -650973,7 +649816,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimeOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimePage_result("); boolean first = true; sb.append("success:"); @@ -651040,17 +649883,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimePage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimeOrder_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimeOrder_resultStandardScheme(); + public findKeyOperatorstrValuesTimePage_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimePage_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimePage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -651063,13 +649906,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6862 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6862.size); - long _elem6863; - for (int _i6864 = 0; _i6864 < _set6862.size; ++_i6864) + org.apache.thrift.protocol.TSet _set6846 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6846.size); + long _elem6847; + for (int _i6848 = 0; _i6848 < _set6846.size; ++_i6848) { - _elem6863 = iprot.readI64(); - struct.success.add(_elem6863); + _elem6847 = iprot.readI64(); + struct.success.add(_elem6847); } iprot.readSetEnd(); } @@ -651126,7 +649969,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimePage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -651134,9 +649977,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6865 : struct.success) + for (long _iter6849 : struct.success) { - oprot.writeI64(_iter6865); + oprot.writeI64(_iter6849); } oprot.writeSetEnd(); } @@ -651168,17 +650011,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimePage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimeOrder_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimeOrder_resultTupleScheme(); + public findKeyOperatorstrValuesTimePage_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimePage_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimePage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -651200,9 +650043,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6866 : struct.success) + for (long _iter6850 : struct.success) { - oprot.writeI64(_iter6866); + oprot.writeI64(_iter6850); } } } @@ -651221,18 +650064,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimePage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6867 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6867.size); - long _elem6868; - for (int _i6869 = 0; _i6869 < _set6867.size; ++_i6869) + org.apache.thrift.protocol.TSet _set6851 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6851.size); + long _elem6852; + for (int _i6853 = 0; _i6853 < _set6851.size; ++_i6853) { - _elem6868 = iprot.readI64(); - struct.success.add(_elem6868); + _elem6852 = iprot.readI64(); + struct.success.add(_elem6852); } } struct.setSuccessIsSet(true); @@ -651265,28 +650108,26 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimeOrderPage_args"); + public static class findKeyOperatorstrValuesTimeOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimeOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)8); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)9); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -651298,10 +650139,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), ORDER((short)5, "order"), - PAGE((short)6, "page"), - CREDS((short)7, "creds"), - TRANSACTION((short)8, "transaction"), - ENVIRONMENT((short)9, "environment"); + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -651327,13 +650167,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 5: // ORDER return ORDER; - case 6: // PAGE - return PAGE; - case 7: // CREDS + case 6: // CREDS return CREDS; - case 8: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 9: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -651394,8 +650232,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -651403,19 +650239,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimeOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimeOrder_args.class, metaDataMap); } - public findKeyOperatorstrValuesTimeOrderPage_args() { + public findKeyOperatorstrValuesTimeOrder_args() { } - public findKeyOperatorstrValuesTimeOrderPage_args( + public findKeyOperatorstrValuesTimeOrder_args( java.lang.String key, java.lang.String operator, java.util.List values, long timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -651427,7 +650262,6 @@ public findKeyOperatorstrValuesTimeOrderPage_args( this.timestamp = timestamp; setTimestampIsSet(true); this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -651436,7 +650270,7 @@ public findKeyOperatorstrValuesTimeOrderPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimeOrderPage_args(findKeyOperatorstrValuesTimeOrderPage_args other) { + public findKeyOperatorstrValuesTimeOrder_args(findKeyOperatorstrValuesTimeOrder_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; @@ -651455,9 +650289,6 @@ public findKeyOperatorstrValuesTimeOrderPage_args(findKeyOperatorstrValuesTimeOr if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -651470,8 +650301,8 @@ public findKeyOperatorstrValuesTimeOrderPage_args(findKeyOperatorstrValuesTimeOr } @Override - public findKeyOperatorstrValuesTimeOrderPage_args deepCopy() { - return new findKeyOperatorstrValuesTimeOrderPage_args(this); + public findKeyOperatorstrValuesTimeOrder_args deepCopy() { + return new findKeyOperatorstrValuesTimeOrder_args(this); } @Override @@ -651482,7 +650313,6 @@ public void clear() { setTimestampIsSet(false); this.timestamp = 0; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -651493,7 +650323,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesTimeOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -651518,7 +650348,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesTimeOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesTimeOrder_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -651559,7 +650389,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesTimeOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesTimeOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -651583,7 +650413,7 @@ public long getTimestamp() { return this.timestamp; } - public findKeyOperatorstrValuesTimeOrderPage_args setTimestamp(long timestamp) { + public findKeyOperatorstrValuesTimeOrder_args setTimestamp(long timestamp) { this.timestamp = timestamp; setTimestampIsSet(true); return this; @@ -651607,7 +650437,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public findKeyOperatorstrValuesTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public findKeyOperatorstrValuesTimeOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -651627,37 +650457,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorstrValuesTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesTimeOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -651682,7 +650487,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesTimeOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -651707,7 +650512,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesTimeOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -651770,14 +650575,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -651824,9 +650621,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -651858,8 +650652,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -651872,12 +650664,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimeOrderPage_args) - return this.equals((findKeyOperatorstrValuesTimeOrderPage_args)that); + if (that instanceof findKeyOperatorstrValuesTimeOrder_args) + return this.equals((findKeyOperatorstrValuesTimeOrder_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimeOrderPage_args that) { + public boolean equals(findKeyOperatorstrValuesTimeOrder_args that) { if (that == null) return false; if (this == that) @@ -651928,15 +650720,6 @@ public boolean equals(findKeyOperatorstrValuesTimeOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -651989,10 +650772,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -652009,7 +650788,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimeOrderPage_args other) { + public int compareTo(findKeyOperatorstrValuesTimeOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -652066,16 +650845,6 @@ public int compareTo(findKeyOperatorstrValuesTimeOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -652127,7 +650896,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimeOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimeOrder_args("); boolean first = true; sb.append("key:"); @@ -652166,14 +650935,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -652207,9 +650968,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -652236,17 +650994,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimeOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimeOrderPage_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimeOrderPage_argsStandardScheme(); + public findKeyOperatorstrValuesTimeOrder_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimeOrder_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimeOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -652275,14 +651033,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6870 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6870.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6871; - for (int _i6872 = 0; _i6872 < _list6870.size; ++_i6872) + org.apache.thrift.protocol.TList _list6854 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6854.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6855; + for (int _i6856 = 0; _i6856 < _list6854.size; ++_i6856) { - _elem6871 = new com.cinchapi.concourse.thrift.TObject(); - _elem6871.read(iprot); - struct.values.add(_elem6871); + _elem6855 = new com.cinchapi.concourse.thrift.TObject(); + _elem6855.read(iprot); + struct.values.add(_elem6855); } iprot.readListEnd(); } @@ -652308,16 +651066,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 7: // CREDS + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -652326,7 +651075,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -652335,7 +651084,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 9: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -652355,7 +651104,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimeOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -652373,9 +651122,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6873 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6857 : struct.values) { - _iter6873.write(oprot); + _iter6857.write(oprot); } oprot.writeListEnd(); } @@ -652389,11 +651138,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -652415,17 +651159,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimeOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimeOrderPage_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimeOrderPage_argsTupleScheme(); + public findKeyOperatorstrValuesTimeOrder_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimeOrder_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimeOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -652443,19 +651187,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetOrder()) { optionals.set(4); } - if (struct.isSetPage()) { - optionals.set(5); - } if (struct.isSetCreds()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetTransaction()) { - optionals.set(7); + optionals.set(6); } if (struct.isSetEnvironment()) { - optionals.set(8); + optionals.set(7); } - oprot.writeBitSet(optionals, 9); + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -652465,9 +651206,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6874 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6858 : struct.values) { - _iter6874.write(oprot); + _iter6858.write(oprot); } } } @@ -652477,9 +651218,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -652492,9 +651230,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(9); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -652505,14 +651243,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6875 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6875.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6876; - for (int _i6877 = 0; _i6877 < _list6875.size; ++_i6877) + org.apache.thrift.protocol.TList _list6859 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6859.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6860; + for (int _i6861 = 0; _i6861 < _list6859.size; ++_i6861) { - _elem6876 = new com.cinchapi.concourse.thrift.TObject(); - _elem6876.read(iprot); - struct.values.add(_elem6876); + _elem6860 = new com.cinchapi.concourse.thrift.TObject(); + _elem6860.read(iprot); + struct.values.add(_elem6860); } } struct.setValuesIsSet(true); @@ -652527,21 +651265,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa struct.setOrderIsSet(true); } if (incoming.get(5)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(6)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(8)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -652553,8 +651286,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimeOrderPage_result"); + public static class findKeyOperatorstrValuesTimeOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimeOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -652562,8 +651295,8 @@ public static class findKeyOperatorstrValuesTimeOrderPage_result implements org. private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -652661,13 +651394,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimeOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimeOrder_result.class, metaDataMap); } - public findKeyOperatorstrValuesTimeOrderPage_result() { + public findKeyOperatorstrValuesTimeOrder_result() { } - public findKeyOperatorstrValuesTimeOrderPage_result( + public findKeyOperatorstrValuesTimeOrder_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -652685,7 +651418,7 @@ public findKeyOperatorstrValuesTimeOrderPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimeOrderPage_result(findKeyOperatorstrValuesTimeOrderPage_result other) { + public findKeyOperatorstrValuesTimeOrder_result(findKeyOperatorstrValuesTimeOrder_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -652705,8 +651438,8 @@ public findKeyOperatorstrValuesTimeOrderPage_result(findKeyOperatorstrValuesTime } @Override - public findKeyOperatorstrValuesTimeOrderPage_result deepCopy() { - return new findKeyOperatorstrValuesTimeOrderPage_result(this); + public findKeyOperatorstrValuesTimeOrder_result deepCopy() { + return new findKeyOperatorstrValuesTimeOrder_result(this); } @Override @@ -652739,7 +651472,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesTimeOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -652764,7 +651497,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesTimeOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -652789,7 +651522,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesTimeOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -652814,7 +651547,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesTimeOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -652839,7 +651572,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesTimeOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -652952,12 +651685,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimeOrderPage_result) - return this.equals((findKeyOperatorstrValuesTimeOrderPage_result)that); + if (that instanceof findKeyOperatorstrValuesTimeOrder_result) + return this.equals((findKeyOperatorstrValuesTimeOrder_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimeOrderPage_result that) { + public boolean equals(findKeyOperatorstrValuesTimeOrder_result that) { if (that == null) return false; if (this == that) @@ -653039,7 +651772,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimeOrderPage_result other) { + public int compareTo(findKeyOperatorstrValuesTimeOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -653116,7 +651849,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimeOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimeOrder_result("); boolean first = true; sb.append("success:"); @@ -653183,17 +651916,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimeOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimeOrderPage_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimeOrderPage_resultStandardScheme(); + public findKeyOperatorstrValuesTimeOrder_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimeOrder_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimeOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -653206,13 +651939,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6878 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6878.size); - long _elem6879; - for (int _i6880 = 0; _i6880 < _set6878.size; ++_i6880) + org.apache.thrift.protocol.TSet _set6862 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6862.size); + long _elem6863; + for (int _i6864 = 0; _i6864 < _set6862.size; ++_i6864) { - _elem6879 = iprot.readI64(); - struct.success.add(_elem6879); + _elem6863 = iprot.readI64(); + struct.success.add(_elem6863); } iprot.readSetEnd(); } @@ -653269,7 +652002,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimeOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -653277,9 +652010,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6881 : struct.success) + for (long _iter6865 : struct.success) { - oprot.writeI64(_iter6881); + oprot.writeI64(_iter6865); } oprot.writeSetEnd(); } @@ -653311,17 +652044,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimeOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimeOrderPage_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimeOrderPage_resultTupleScheme(); + public findKeyOperatorstrValuesTimeOrder_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimeOrder_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimeOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -653343,9 +652076,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6882 : struct.success) + for (long _iter6866 : struct.success) { - oprot.writeI64(_iter6882); + oprot.writeI64(_iter6866); } } } @@ -653364,18 +652097,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6883 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6883.size); - long _elem6884; - for (int _i6885 = 0; _i6885 < _set6883.size; ++_i6885) + org.apache.thrift.protocol.TSet _set6867 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6867.size); + long _elem6868; + for (int _i6869 = 0; _i6869 < _set6867.size; ++_i6869) { - _elem6884 = iprot.readI64(); - struct.success.add(_elem6884); + _elem6868 = iprot.readI64(); + struct.success.add(_elem6868); } } struct.setSuccessIsSet(true); @@ -653408,24 +652141,28 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestr_args"); + public static class findKeyOperatorstrValuesTimeOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimeOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)4); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)8); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)9); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -653436,9 +652173,11 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + ORDER((short)5, "order"), + PAGE((short)6, "page"), + CREDS((short)7, "creds"), + TRANSACTION((short)8, "transaction"), + ENVIRONMENT((short)9, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -653462,11 +652201,15 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // CREDS + case 5: // ORDER + return ORDER; + case 6: // PAGE + return PAGE; + case 7: // CREDS return CREDS; - case 6: // TRANSACTION + case 8: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 9: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -653511,6 +652254,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -653522,7 +652267,11 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -653530,17 +652279,19 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimeOrderPage_args.class, metaDataMap); } - public findKeyOperatorstrValuesTimestr_args() { + public findKeyOperatorstrValuesTimeOrderPage_args() { } - public findKeyOperatorstrValuesTimestr_args( + public findKeyOperatorstrValuesTimeOrderPage_args( java.lang.String key, java.lang.String operator, java.util.List values, - java.lang.String timestamp, + long timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -653550,6 +652301,9 @@ public findKeyOperatorstrValuesTimestr_args( this.operator = operator; this.values = values; this.timestamp = timestamp; + setTimestampIsSet(true); + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -653558,7 +652312,8 @@ public findKeyOperatorstrValuesTimestr_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimestr_args(findKeyOperatorstrValuesTimestr_args other) { + public findKeyOperatorstrValuesTimeOrderPage_args(findKeyOperatorstrValuesTimeOrderPage_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } @@ -653572,8 +652327,12 @@ public findKeyOperatorstrValuesTimestr_args(findKeyOperatorstrValuesTimestr_args } this.values = __this__values; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + this.timestamp = other.timestamp; + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -653587,8 +652346,8 @@ public findKeyOperatorstrValuesTimestr_args(findKeyOperatorstrValuesTimestr_args } @Override - public findKeyOperatorstrValuesTimestr_args deepCopy() { - return new findKeyOperatorstrValuesTimestr_args(this); + public findKeyOperatorstrValuesTimeOrderPage_args deepCopy() { + return new findKeyOperatorstrValuesTimeOrderPage_args(this); } @Override @@ -653596,7 +652355,10 @@ public void clear() { this.key = null; this.operator = null; this.values = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -653607,7 +652369,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesTimeOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -653632,7 +652394,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesTimestr_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesTimeOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -653673,7 +652435,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesTimestr_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesTimeOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -653693,28 +652455,76 @@ public void setValuesIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public findKeyOperatorstrValuesTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public findKeyOperatorstrValuesTimeOrderPage_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public findKeyOperatorstrValuesTimeOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public findKeyOperatorstrValuesTimeOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -653723,7 +652533,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesTimeOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -653748,7 +652558,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesTimeOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -653773,7 +652583,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesTimeOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -653824,7 +652634,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -653871,6 +652697,12 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + case CREDS: return getCreds(); @@ -653900,6 +652732,10 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -653912,12 +652748,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimestr_args) - return this.equals((findKeyOperatorstrValuesTimestr_args)that); + if (that instanceof findKeyOperatorstrValuesTimeOrderPage_args) + return this.equals((findKeyOperatorstrValuesTimeOrderPage_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimestr_args that) { + public boolean equals(findKeyOperatorstrValuesTimeOrderPage_args that) { if (that == null) return false; if (this == that) @@ -653950,12 +652786,30 @@ public boolean equals(findKeyOperatorstrValuesTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -654005,9 +652859,15 @@ public int hashCode() { if (isSetValues()) hashCode = hashCode * 8191 + values.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -654025,7 +652885,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimestr_args other) { + public int compareTo(findKeyOperatorstrValuesTimeOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -654072,6 +652932,26 @@ public int compareTo(findKeyOperatorstrValuesTimestr_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -654123,7 +653003,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimeOrderPage_args("); boolean first = true; sb.append("key:"); @@ -654151,10 +653031,22 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -654188,6 +653080,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -654206,23 +653104,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 findKeyOperatorstrValuesTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimeOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestr_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimestr_argsStandardScheme(); + public findKeyOperatorstrValuesTimeOrderPage_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimeOrderPage_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimeOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -654251,14 +653151,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6886 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6886.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6887; - for (int _i6888 = 0; _i6888 < _list6886.size; ++_i6888) + org.apache.thrift.protocol.TList _list6870 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6870.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6871; + for (int _i6872 = 0; _i6872 < _list6870.size; ++_i6872) { - _elem6887 = new com.cinchapi.concourse.thrift.TObject(); - _elem6887.read(iprot); - struct.values.add(_elem6887); + _elem6871 = new com.cinchapi.concourse.thrift.TObject(); + _elem6871.read(iprot); + struct.values.add(_elem6871); } iprot.readListEnd(); } @@ -654268,14 +653168,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } break; case 4: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // CREDS + case 5: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 7: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -654284,7 +653202,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 8: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -654293,7 +653211,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 9: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -654313,7 +653231,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -654331,17 +653249,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6889 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6873 : struct.values) { - _iter6889.write(oprot); + _iter6873.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -654365,17 +653291,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimeOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestr_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimestr_argsTupleScheme(); + public findKeyOperatorstrValuesTimeOrderPage_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimeOrderPage_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimeOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -654390,16 +653316,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetCreds()) { + if (struct.isSetOrder()) { optionals.set(4); } - if (struct.isSetTransaction()) { + if (struct.isSetPage()) { optionals.set(5); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(6); } - oprot.writeBitSet(optionals, 7); + if (struct.isSetTransaction()) { + optionals.set(7); + } + if (struct.isSetEnvironment()) { + optionals.set(8); + } + oprot.writeBitSet(optionals, 9); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -654409,14 +653341,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6890 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6874 : struct.values) { - _iter6890.write(oprot); + _iter6874.write(oprot); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -654430,9 +653368,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(9); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -654443,33 +653381,43 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6891 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6891.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6892; - for (int _i6893 = 0; _i6893 < _list6891.size; ++_i6893) + org.apache.thrift.protocol.TList _list6875 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6875.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6876; + for (int _i6877 = 0; _i6877 < _list6875.size; ++_i6877) { - _elem6892 = new com.cinchapi.concourse.thrift.TObject(); - _elem6892.read(iprot); - struct.values.add(_elem6892); + _elem6876 = new com.cinchapi.concourse.thrift.TObject(); + _elem6876.read(iprot); + struct.values.add(_elem6876); } } struct.setValuesIsSet(true); } if (incoming.get(3)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(4)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(5)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(6)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(7)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(8)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -654481,8 +653429,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestr_result"); + public static class findKeyOperatorstrValuesTimeOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimeOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -654490,8 +653438,8 @@ public static class findKeyOperatorstrValuesTimestr_result implements org.apache private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimeOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -654589,13 +653537,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimeOrderPage_result.class, metaDataMap); } - public findKeyOperatorstrValuesTimestr_result() { + public findKeyOperatorstrValuesTimeOrderPage_result() { } - public findKeyOperatorstrValuesTimestr_result( + public findKeyOperatorstrValuesTimeOrderPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -654613,7 +653561,7 @@ public findKeyOperatorstrValuesTimestr_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimestr_result(findKeyOperatorstrValuesTimestr_result other) { + public findKeyOperatorstrValuesTimeOrderPage_result(findKeyOperatorstrValuesTimeOrderPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -654633,8 +653581,8 @@ public findKeyOperatorstrValuesTimestr_result(findKeyOperatorstrValuesTimestr_re } @Override - public findKeyOperatorstrValuesTimestr_result deepCopy() { - return new findKeyOperatorstrValuesTimestr_result(this); + public findKeyOperatorstrValuesTimeOrderPage_result deepCopy() { + return new findKeyOperatorstrValuesTimeOrderPage_result(this); } @Override @@ -654667,7 +653615,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesTimeOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -654692,7 +653640,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesTimeOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -654717,7 +653665,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesTimeOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -654742,7 +653690,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesTimeOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -654767,7 +653715,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesTimeOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -654880,12 +653828,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimestr_result) - return this.equals((findKeyOperatorstrValuesTimestr_result)that); + if (that instanceof findKeyOperatorstrValuesTimeOrderPage_result) + return this.equals((findKeyOperatorstrValuesTimeOrderPage_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimestr_result that) { + public boolean equals(findKeyOperatorstrValuesTimeOrderPage_result that) { if (that == null) return false; if (this == that) @@ -654967,7 +653915,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimestr_result other) { + public int compareTo(findKeyOperatorstrValuesTimeOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -655044,7 +653992,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimeOrderPage_result("); boolean first = true; sb.append("success:"); @@ -655111,17 +654059,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimeOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestr_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimestr_resultStandardScheme(); + public findKeyOperatorstrValuesTimeOrderPage_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimeOrderPage_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimeOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -655134,13 +654082,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6894 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6894.size); - long _elem6895; - for (int _i6896 = 0; _i6896 < _set6894.size; ++_i6896) + org.apache.thrift.protocol.TSet _set6878 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6878.size); + long _elem6879; + for (int _i6880 = 0; _i6880 < _set6878.size; ++_i6880) { - _elem6895 = iprot.readI64(); - struct.success.add(_elem6895); + _elem6879 = iprot.readI64(); + struct.success.add(_elem6879); } iprot.readSetEnd(); } @@ -655197,7 +654145,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -655205,9 +654153,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6897 : struct.success) + for (long _iter6881 : struct.success) { - oprot.writeI64(_iter6897); + oprot.writeI64(_iter6881); } oprot.writeSetEnd(); } @@ -655239,17 +654187,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimeOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestr_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimestr_resultTupleScheme(); + public findKeyOperatorstrValuesTimeOrderPage_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimeOrderPage_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimeOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -655271,9 +654219,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6898 : struct.success) + for (long _iter6882 : struct.success) { - oprot.writeI64(_iter6898); + oprot.writeI64(_iter6882); } } } @@ -655292,18 +654240,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimeOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6899 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6899.size); - long _elem6900; - for (int _i6901 = 0; _i6901 < _set6899.size; ++_i6901) + org.apache.thrift.protocol.TSet _set6883 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6883.size); + long _elem6884; + for (int _i6885 = 0; _i6885 < _set6883.size; ++_i6885) { - _elem6900 = iprot.readI64(); - struct.success.add(_elem6900); + _elem6884 = iprot.readI64(); + struct.success.add(_elem6884); } } struct.setSuccessIsSet(true); @@ -655336,26 +654284,24 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrPage_args"); + public static class findKeyOperatorstrValuesTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -655366,10 +654312,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - PAGE((short)5, "page"), - CREDS((short)6, "creds"), - TRANSACTION((short)7, "transaction"), - ENVIRONMENT((short)8, "environment"); + CREDS((short)5, "creds"), + TRANSACTION((short)6, "transaction"), + ENVIRONMENT((short)7, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -655393,13 +654338,11 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // PAGE - return PAGE; - case 6: // CREDS + case 5: // CREDS return CREDS; - case 7: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -655456,8 +654399,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -655465,18 +654406,17 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestr_args.class, metaDataMap); } - public findKeyOperatorstrValuesTimestrPage_args() { + public findKeyOperatorstrValuesTimestr_args() { } - public findKeyOperatorstrValuesTimestrPage_args( + public findKeyOperatorstrValuesTimestr_args( java.lang.String key, java.lang.String operator, java.util.List values, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -655486,7 +654426,6 @@ public findKeyOperatorstrValuesTimestrPage_args( this.operator = operator; this.values = values; this.timestamp = timestamp; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -655495,7 +654434,7 @@ public findKeyOperatorstrValuesTimestrPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimestrPage_args(findKeyOperatorstrValuesTimestrPage_args other) { + public findKeyOperatorstrValuesTimestr_args(findKeyOperatorstrValuesTimestr_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -655512,9 +654451,6 @@ public findKeyOperatorstrValuesTimestrPage_args(findKeyOperatorstrValuesTimestrP if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -655527,8 +654463,8 @@ public findKeyOperatorstrValuesTimestrPage_args(findKeyOperatorstrValuesTimestrP } @Override - public findKeyOperatorstrValuesTimestrPage_args deepCopy() { - return new findKeyOperatorstrValuesTimestrPage_args(this); + public findKeyOperatorstrValuesTimestr_args deepCopy() { + return new findKeyOperatorstrValuesTimestr_args(this); } @Override @@ -655537,7 +654473,6 @@ public void clear() { this.operator = null; this.values = null; this.timestamp = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -655548,7 +654483,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -655573,7 +654508,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesTimestrPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesTimestr_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -655614,7 +654549,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesTimestrPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesTimestr_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -655639,7 +654574,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public findKeyOperatorstrValuesTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public findKeyOperatorstrValuesTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -655659,37 +654594,12 @@ public void setTimestampIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorstrValuesTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -655714,7 +654624,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -655739,7 +654649,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -655794,14 +654704,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -655845,9 +654747,6 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -655877,8 +654776,6 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -655891,12 +654788,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimestrPage_args) - return this.equals((findKeyOperatorstrValuesTimestrPage_args)that); + if (that instanceof findKeyOperatorstrValuesTimestr_args) + return this.equals((findKeyOperatorstrValuesTimestr_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimestrPage_args that) { + public boolean equals(findKeyOperatorstrValuesTimestr_args that) { if (that == null) return false; if (this == that) @@ -655938,15 +654835,6 @@ public boolean equals(findKeyOperatorstrValuesTimestrPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -655997,10 +654885,6 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -656017,7 +654901,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimestrPage_args other) { + public int compareTo(findKeyOperatorstrValuesTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -656064,16 +654948,6 @@ public int compareTo(findKeyOperatorstrValuesTimestrPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -656125,7 +654999,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestr_args("); boolean first = true; sb.append("key:"); @@ -656160,14 +655034,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -656198,9 +655064,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -656225,17 +655088,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrPage_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimestrPage_argsStandardScheme(); + public findKeyOperatorstrValuesTimestr_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimestr_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -656264,14 +655127,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6902 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6902.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6903; - for (int _i6904 = 0; _i6904 < _list6902.size; ++_i6904) + org.apache.thrift.protocol.TList _list6886 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6886.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6887; + for (int _i6888 = 0; _i6888 < _list6886.size; ++_i6888) { - _elem6903 = new com.cinchapi.concourse.thrift.TObject(); - _elem6903.read(iprot); - struct.values.add(_elem6903); + _elem6887 = new com.cinchapi.concourse.thrift.TObject(); + _elem6887.read(iprot); + struct.values.add(_elem6887); } iprot.readListEnd(); } @@ -656288,16 +655151,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 6: // CREDS + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -656306,7 +655160,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -656315,7 +655169,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -656335,7 +655189,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -656353,9 +655207,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6905 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6889 : struct.values) { - _iter6905.write(oprot); + _iter6889.write(oprot); } oprot.writeListEnd(); } @@ -656366,11 +655220,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -656392,17 +655241,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrPage_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimestrPage_argsTupleScheme(); + public findKeyOperatorstrValuesTimestr_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimestr_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -656417,19 +655266,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetPage()) { - optionals.set(4); - } if (struct.isSetCreds()) { - optionals.set(5); + optionals.set(4); } if (struct.isSetTransaction()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetEnvironment()) { - optionals.set(7); + optionals.set(6); } - oprot.writeBitSet(optionals, 8); + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -656439,18 +655285,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6906 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6890 : struct.values) { - _iter6906.write(oprot); + _iter6890.write(oprot); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -656463,9 +655306,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(8); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -656476,14 +655319,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6907 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6907.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6908; - for (int _i6909 = 0; _i6909 < _list6907.size; ++_i6909) + org.apache.thrift.protocol.TList _list6891 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6891.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6892; + for (int _i6893 = 0; _i6893 < _list6891.size; ++_i6893) { - _elem6908 = new com.cinchapi.concourse.thrift.TObject(); - _elem6908.read(iprot); - struct.values.add(_elem6908); + _elem6892 = new com.cinchapi.concourse.thrift.TObject(); + _elem6892.read(iprot); + struct.values.add(_elem6892); } } struct.setValuesIsSet(true); @@ -656493,21 +655336,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa struct.setTimestampIsSet(true); } if (incoming.get(4)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -656519,8 +655357,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrPage_result"); + public static class findKeyOperatorstrValuesTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -656528,8 +655366,8 @@ public static class findKeyOperatorstrValuesTimestrPage_result implements org.ap private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -656627,13 +655465,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestr_result.class, metaDataMap); } - public findKeyOperatorstrValuesTimestrPage_result() { + public findKeyOperatorstrValuesTimestr_result() { } - public findKeyOperatorstrValuesTimestrPage_result( + public findKeyOperatorstrValuesTimestr_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -656651,7 +655489,7 @@ public findKeyOperatorstrValuesTimestrPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimestrPage_result(findKeyOperatorstrValuesTimestrPage_result other) { + public findKeyOperatorstrValuesTimestr_result(findKeyOperatorstrValuesTimestr_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -656671,8 +655509,8 @@ public findKeyOperatorstrValuesTimestrPage_result(findKeyOperatorstrValuesTimest } @Override - public findKeyOperatorstrValuesTimestrPage_result deepCopy() { - return new findKeyOperatorstrValuesTimestrPage_result(this); + public findKeyOperatorstrValuesTimestr_result deepCopy() { + return new findKeyOperatorstrValuesTimestr_result(this); } @Override @@ -656705,7 +655543,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -656730,7 +655568,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -656755,7 +655593,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -656780,7 +655618,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -656805,7 +655643,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -656918,12 +655756,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimestrPage_result) - return this.equals((findKeyOperatorstrValuesTimestrPage_result)that); + if (that instanceof findKeyOperatorstrValuesTimestr_result) + return this.equals((findKeyOperatorstrValuesTimestr_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimestrPage_result that) { + public boolean equals(findKeyOperatorstrValuesTimestr_result that) { if (that == null) return false; if (this == that) @@ -657005,7 +655843,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimestrPage_result other) { + public int compareTo(findKeyOperatorstrValuesTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -657082,7 +655920,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestr_result("); boolean first = true; sb.append("success:"); @@ -657149,17 +655987,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrPage_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimestrPage_resultStandardScheme(); + public findKeyOperatorstrValuesTimestr_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimestr_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -657172,13 +656010,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6910 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6910.size); - long _elem6911; - for (int _i6912 = 0; _i6912 < _set6910.size; ++_i6912) + org.apache.thrift.protocol.TSet _set6894 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6894.size); + long _elem6895; + for (int _i6896 = 0; _i6896 < _set6894.size; ++_i6896) { - _elem6911 = iprot.readI64(); - struct.success.add(_elem6911); + _elem6895 = iprot.readI64(); + struct.success.add(_elem6895); } iprot.readSetEnd(); } @@ -657235,7 +656073,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -657243,9 +656081,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6913 : struct.success) + for (long _iter6897 : struct.success) { - oprot.writeI64(_iter6913); + oprot.writeI64(_iter6897); } oprot.writeSetEnd(); } @@ -657277,17 +656115,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrPage_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimestrPage_resultTupleScheme(); + public findKeyOperatorstrValuesTimestr_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimestr_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -657309,9 +656147,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6914 : struct.success) + for (long _iter6898 : struct.success) { - oprot.writeI64(_iter6914); + oprot.writeI64(_iter6898); } } } @@ -657330,18 +656168,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6915 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6915.size); - long _elem6916; - for (int _i6917 = 0; _i6917 < _set6915.size; ++_i6917) + org.apache.thrift.protocol.TSet _set6899 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6899.size); + long _elem6900; + for (int _i6901 = 0; _i6901 < _set6899.size; ++_i6901) { - _elem6916 = iprot.readI64(); - struct.success.add(_elem6916); + _elem6900 = iprot.readI64(); + struct.success.add(_elem6900); } } struct.setSuccessIsSet(true); @@ -657374,26 +656212,26 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrOrder_args"); + public static class findKeyOperatorstrValuesTimestrPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrder_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrder_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -657404,7 +656242,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { OPERATOR((short)2, "operator"), VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), - ORDER((short)5, "order"), + PAGE((short)5, "page"), CREDS((short)6, "creds"), TRANSACTION((short)7, "transaction"), ENVIRONMENT((short)8, "environment"); @@ -657431,8 +656269,8 @@ public static _Fields findByThriftId(int fieldId) { return VALUES; case 4: // TIMESTAMP return TIMESTAMP; - case 5: // ORDER - return ORDER; + case 5: // PAGE + return PAGE; case 6: // CREDS return CREDS; case 7: // TRANSACTION @@ -657494,8 +656332,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -657503,18 +656341,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrOrder_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrPage_args.class, metaDataMap); } - public findKeyOperatorstrValuesTimestrOrder_args() { + public findKeyOperatorstrValuesTimestrPage_args() { } - public findKeyOperatorstrValuesTimestrOrder_args( + public findKeyOperatorstrValuesTimestrPage_args( java.lang.String key, java.lang.String operator, java.util.List values, java.lang.String timestamp, - com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -657524,7 +656362,7 @@ public findKeyOperatorstrValuesTimestrOrder_args( this.operator = operator; this.values = values; this.timestamp = timestamp; - this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -657533,7 +656371,7 @@ public findKeyOperatorstrValuesTimestrOrder_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimestrOrder_args(findKeyOperatorstrValuesTimestrOrder_args other) { + public findKeyOperatorstrValuesTimestrPage_args(findKeyOperatorstrValuesTimestrPage_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -657550,8 +656388,8 @@ public findKeyOperatorstrValuesTimestrOrder_args(findKeyOperatorstrValuesTimestr if (other.isSetTimestamp()) { this.timestamp = other.timestamp; } - if (other.isSetOrder()) { - this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -657565,8 +656403,8 @@ public findKeyOperatorstrValuesTimestrOrder_args(findKeyOperatorstrValuesTimestr } @Override - public findKeyOperatorstrValuesTimestrOrder_args deepCopy() { - return new findKeyOperatorstrValuesTimestrOrder_args(this); + public findKeyOperatorstrValuesTimestrPage_args deepCopy() { + return new findKeyOperatorstrValuesTimestrPage_args(this); } @Override @@ -657575,7 +656413,7 @@ public void clear() { this.operator = null; this.values = null; this.timestamp = null; - this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -657586,7 +656424,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesTimestrPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -657611,7 +656449,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesTimestrOrder_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesTimestrPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -657652,7 +656490,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesTimestrOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesTimestrPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -657677,7 +656515,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public findKeyOperatorstrValuesTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public findKeyOperatorstrValuesTimestrPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -657698,27 +656536,27 @@ public void setTimestampIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TOrder getOrder() { - return this.order; + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; } - public findKeyOperatorstrValuesTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { - this.order = order; + public findKeyOperatorstrValuesTimestrPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; return this; } - public void unsetOrder() { - this.order = null; + public void unsetPage() { + this.page = null; } - /** Returns true if field order is set (has been assigned a value) and false otherwise */ - public boolean isSetOrder() { - return this.order != null; + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; } - public void setOrderIsSet(boolean value) { + public void setPageIsSet(boolean value) { if (!value) { - this.order = null; + this.page = null; } } @@ -657727,7 +656565,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesTimestrPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -657752,7 +656590,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesTimestrPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -657777,7 +656615,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesTimestrPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -657832,11 +656670,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case ORDER: + case PAGE: if (value == null) { - unsetOrder(); + unsetPage(); } else { - setOrder((com.cinchapi.concourse.thrift.TOrder)value); + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -657883,8 +656721,8 @@ public java.lang.Object getFieldValue(_Fields field) { case TIMESTAMP: return getTimestamp(); - case ORDER: - return getOrder(); + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -657915,8 +656753,8 @@ public boolean isSet(_Fields field) { return isSetValues(); case TIMESTAMP: return isSetTimestamp(); - case ORDER: - return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -657929,12 +656767,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimestrOrder_args) - return this.equals((findKeyOperatorstrValuesTimestrOrder_args)that); + if (that instanceof findKeyOperatorstrValuesTimestrPage_args) + return this.equals((findKeyOperatorstrValuesTimestrPage_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimestrOrder_args that) { + public boolean equals(findKeyOperatorstrValuesTimestrPage_args that) { if (that == null) return false; if (this == that) @@ -657976,12 +656814,12 @@ public boolean equals(findKeyOperatorstrValuesTimestrOrder_args that) { return false; } - boolean this_present_order = true && this.isSetOrder(); - boolean that_present_order = true && that.isSetOrder(); - if (this_present_order || that_present_order) { - if (!(this_present_order && that_present_order)) + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) return false; - if (!this.order.equals(that.order)) + if (!this.page.equals(that.page)) return false; } @@ -658035,9 +656873,9 @@ public int hashCode() { if (isSetTimestamp()) hashCode = hashCode * 8191 + timestamp.hashCode(); - hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); - if (isSetOrder()) - hashCode = hashCode * 8191 + order.hashCode(); + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -658055,7 +656893,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimestrOrder_args other) { + public int compareTo(findKeyOperatorstrValuesTimestrPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -658102,12 +656940,12 @@ public int compareTo(findKeyOperatorstrValuesTimestrOrder_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); if (lastComparison != 0) { return lastComparison; } - if (isSetOrder()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -658163,7 +657001,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrOrder_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrPage_args("); boolean first = true; sb.append("key:"); @@ -658198,11 +657036,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("order:"); - if (this.order == null) { + sb.append("page:"); + if (this.page == null) { sb.append("null"); } else { - sb.append(this.order); + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -658236,8 +657074,8 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (order != null) { - order.validate(); + if (page != null) { + page.validate(); } if (creds != null) { creds.validate(); @@ -658263,17 +657101,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrOrder_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimestrOrder_argsStandardScheme(); + public findKeyOperatorstrValuesTimestrPage_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimestrPage_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimestrPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -658302,14 +657140,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6918 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6918.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6919; - for (int _i6920 = 0; _i6920 < _list6918.size; ++_i6920) + org.apache.thrift.protocol.TList _list6902 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6902.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6903; + for (int _i6904 = 0; _i6904 < _list6902.size; ++_i6904) { - _elem6919 = new com.cinchapi.concourse.thrift.TObject(); - _elem6919.read(iprot); - struct.values.add(_elem6919); + _elem6903 = new com.cinchapi.concourse.thrift.TObject(); + _elem6903.read(iprot); + struct.values.add(_elem6903); } iprot.readListEnd(); } @@ -658326,11 +657164,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ORDER + case 5: // PAGE if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -658373,7 +657211,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -658391,9 +657229,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6921 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6905 : struct.values) { - _iter6921.write(oprot); + _iter6905.write(oprot); } oprot.writeListEnd(); } @@ -658404,9 +657242,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } - if (struct.order != null) { - oprot.writeFieldBegin(ORDER_FIELD_DESC); - struct.order.write(oprot); + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -658430,17 +657268,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrOrder_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimestrOrder_argsTupleScheme(); + public findKeyOperatorstrValuesTimestrPage_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimestrPage_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimestrPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrder_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -658455,7 +657293,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetOrder()) { + if (struct.isSetPage()) { optionals.set(4); } if (struct.isSetCreds()) { @@ -658477,17 +657315,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6922 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6906 : struct.values) { - _iter6922.write(oprot); + _iter6906.write(oprot); } } } if (struct.isSetTimestamp()) { oprot.writeString(struct.timestamp); } - if (struct.isSetOrder()) { - struct.order.write(oprot); + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -658501,7 +657339,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrder_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { @@ -658514,14 +657352,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6923 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6923.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6924; - for (int _i6925 = 0; _i6925 < _list6923.size; ++_i6925) + org.apache.thrift.protocol.TList _list6907 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6907.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6908; + for (int _i6909 = 0; _i6909 < _list6907.size; ++_i6909) { - _elem6924 = new com.cinchapi.concourse.thrift.TObject(); - _elem6924.read(iprot); - struct.values.add(_elem6924); + _elem6908 = new com.cinchapi.concourse.thrift.TObject(); + _elem6908.read(iprot); + struct.values.add(_elem6908); } } struct.setValuesIsSet(true); @@ -658531,9 +657369,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa struct.setTimestampIsSet(true); } if (incoming.get(4)) { - struct.order = new com.cinchapi.concourse.thrift.TOrder(); - struct.order.read(iprot); - struct.setOrderIsSet(true); + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); } if (incoming.get(5)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -658557,8 +657395,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrOrder_result"); + public static class findKeyOperatorstrValuesTimestrPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -658566,8 +657404,8 @@ public static class findKeyOperatorstrValuesTimestrOrder_result implements org.a private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrder_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrder_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -658665,13 +657503,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrOrder_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrPage_result.class, metaDataMap); } - public findKeyOperatorstrValuesTimestrOrder_result() { + public findKeyOperatorstrValuesTimestrPage_result() { } - public findKeyOperatorstrValuesTimestrOrder_result( + public findKeyOperatorstrValuesTimestrPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -658689,7 +657527,7 @@ public findKeyOperatorstrValuesTimestrOrder_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimestrOrder_result(findKeyOperatorstrValuesTimestrOrder_result other) { + public findKeyOperatorstrValuesTimestrPage_result(findKeyOperatorstrValuesTimestrPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -658709,8 +657547,8 @@ public findKeyOperatorstrValuesTimestrOrder_result(findKeyOperatorstrValuesTimes } @Override - public findKeyOperatorstrValuesTimestrOrder_result deepCopy() { - return new findKeyOperatorstrValuesTimestrOrder_result(this); + public findKeyOperatorstrValuesTimestrPage_result deepCopy() { + return new findKeyOperatorstrValuesTimestrPage_result(this); } @Override @@ -658743,7 +657581,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesTimestrPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -658768,7 +657606,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesTimestrPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -658793,7 +657631,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesTimestrPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -658818,7 +657656,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesTimestrPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -658843,7 +657681,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesTimestrPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -658956,12 +657794,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimestrOrder_result) - return this.equals((findKeyOperatorstrValuesTimestrOrder_result)that); + if (that instanceof findKeyOperatorstrValuesTimestrPage_result) + return this.equals((findKeyOperatorstrValuesTimestrPage_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimestrOrder_result that) { + public boolean equals(findKeyOperatorstrValuesTimestrPage_result that) { if (that == null) return false; if (this == that) @@ -659043,7 +657881,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimestrOrder_result other) { + public int compareTo(findKeyOperatorstrValuesTimestrPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -659120,7 +657958,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrOrder_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrPage_result("); boolean first = true; sb.append("success:"); @@ -659187,17 +658025,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrOrder_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimestrOrder_resultStandardScheme(); + public findKeyOperatorstrValuesTimestrPage_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimestrPage_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimestrPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -659210,13 +658048,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6926 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6926.size); - long _elem6927; - for (int _i6928 = 0; _i6928 < _set6926.size; ++_i6928) + org.apache.thrift.protocol.TSet _set6910 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6910.size); + long _elem6911; + for (int _i6912 = 0; _i6912 < _set6910.size; ++_i6912) { - _elem6927 = iprot.readI64(); - struct.success.add(_elem6927); + _elem6911 = iprot.readI64(); + struct.success.add(_elem6911); } iprot.readSetEnd(); } @@ -659273,7 +658111,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -659281,9 +658119,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6929 : struct.success) + for (long _iter6913 : struct.success) { - oprot.writeI64(_iter6929); + oprot.writeI64(_iter6913); } oprot.writeSetEnd(); } @@ -659315,17 +658153,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrOrder_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimestrOrder_resultTupleScheme(); + public findKeyOperatorstrValuesTimestrPage_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimestrPage_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimestrPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrder_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -659347,9 +658185,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6930 : struct.success) + for (long _iter6914 : struct.success) { - oprot.writeI64(_iter6930); + oprot.writeI64(_iter6914); } } } @@ -659368,18 +658206,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrder_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6931 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6931.size); - long _elem6932; - for (int _i6933 = 0; _i6933 < _set6931.size; ++_i6933) + org.apache.thrift.protocol.TSet _set6915 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6915.size); + long _elem6916; + for (int _i6917 = 0; _i6917 < _set6915.size; ++_i6917) { - _elem6932 = iprot.readI64(); - struct.success.add(_elem6932); + _elem6916 = iprot.readI64(); + struct.success.add(_elem6916); } } struct.setSuccessIsSet(true); @@ -659412,28 +658250,26 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrOrderPage_args"); + public static class findKeyOperatorstrValuesTimestrOrder_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrOrder_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)7); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)8); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)9); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)8); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrderPage_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrderPage_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrder_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrder_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required public @org.apache.thrift.annotation.Nullable java.util.List values; // required public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -659445,10 +658281,9 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { VALUES((short)3, "values"), TIMESTAMP((short)4, "timestamp"), ORDER((short)5, "order"), - PAGE((short)6, "page"), - CREDS((short)7, "creds"), - TRANSACTION((short)8, "transaction"), - ENVIRONMENT((short)9, "environment"); + CREDS((short)6, "creds"), + TRANSACTION((short)7, "transaction"), + ENVIRONMENT((short)8, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -659474,13 +658309,11 @@ public static _Fields findByThriftId(int fieldId) { return TIMESTAMP; case 5: // ORDER return ORDER; - case 6: // PAGE - return PAGE; - case 7: // CREDS + case 6: // CREDS return CREDS; - case 8: // TRANSACTION + case 7: // TRANSACTION return TRANSACTION; - case 9: // ENVIRONMENT + case 8: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -659539,8 +658372,6 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); - tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -659548,19 +658379,18 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrOrderPage_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrOrder_args.class, metaDataMap); } - public findKeyOperatorstrValuesTimestrOrderPage_args() { + public findKeyOperatorstrValuesTimestrOrder_args() { } - public findKeyOperatorstrValuesTimestrOrderPage_args( + public findKeyOperatorstrValuesTimestrOrder_args( java.lang.String key, java.lang.String operator, java.util.List values, java.lang.String timestamp, com.cinchapi.concourse.thrift.TOrder order, - com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -659571,7 +658401,6 @@ public findKeyOperatorstrValuesTimestrOrderPage_args( this.values = values; this.timestamp = timestamp; this.order = order; - this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -659580,7 +658409,7 @@ public findKeyOperatorstrValuesTimestrOrderPage_args( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimestrOrderPage_args(findKeyOperatorstrValuesTimestrOrderPage_args other) { + public findKeyOperatorstrValuesTimestrOrder_args(findKeyOperatorstrValuesTimestrOrder_args other) { if (other.isSetKey()) { this.key = other.key; } @@ -659600,9 +658429,6 @@ public findKeyOperatorstrValuesTimestrOrderPage_args(findKeyOperatorstrValuesTim if (other.isSetOrder()) { this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); } - if (other.isSetPage()) { - this.page = new com.cinchapi.concourse.thrift.TPage(other.page); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -659615,8 +658441,8 @@ public findKeyOperatorstrValuesTimestrOrderPage_args(findKeyOperatorstrValuesTim } @Override - public findKeyOperatorstrValuesTimestrOrderPage_args deepCopy() { - return new findKeyOperatorstrValuesTimestrOrderPage_args(this); + public findKeyOperatorstrValuesTimestrOrder_args deepCopy() { + return new findKeyOperatorstrValuesTimestrOrder_args(this); } @Override @@ -659626,7 +658452,6 @@ public void clear() { this.values = null; this.timestamp = null; this.order = null; - this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -659637,7 +658462,7 @@ public java.lang.String getKey() { return this.key; } - public findKeyOperatorstrValuesTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesTimestrOrder_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -659662,7 +658487,7 @@ public java.lang.String getOperator() { return this.operator; } - public findKeyOperatorstrValuesTimestrOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + public findKeyOperatorstrValuesTimestrOrder_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { this.operator = operator; return this; } @@ -659703,7 +658528,7 @@ public java.util.List getValues() { return this.values; } - public findKeyOperatorstrValuesTimestrOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + public findKeyOperatorstrValuesTimestrOrder_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { this.values = values; return this; } @@ -659728,7 +658553,7 @@ public java.lang.String getTimestamp() { return this.timestamp; } - public findKeyOperatorstrValuesTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public findKeyOperatorstrValuesTimestrOrder_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; return this; } @@ -659753,7 +658578,7 @@ public com.cinchapi.concourse.thrift.TOrder getOrder() { return this.order; } - public findKeyOperatorstrValuesTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + public findKeyOperatorstrValuesTimestrOrder_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { this.order = order; return this; } @@ -659773,37 +658598,12 @@ public void setOrderIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TPage getPage() { - return this.page; - } - - public findKeyOperatorstrValuesTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { - this.page = page; - return this; - } - - public void unsetPage() { - this.page = null; - } - - /** Returns true if field page is set (has been assigned a value) and false otherwise */ - public boolean isSetPage() { - return this.page != null; - } - - public void setPageIsSet(boolean value) { - if (!value) { - this.page = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findKeyOperatorstrValuesTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesTimestrOrder_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -659828,7 +658628,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findKeyOperatorstrValuesTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesTimestrOrder_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -659853,7 +658653,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findKeyOperatorstrValuesTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesTimestrOrder_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -659916,14 +658716,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case PAGE: - if (value == null) { - unsetPage(); - } else { - setPage((com.cinchapi.concourse.thrift.TPage)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -659970,9 +658762,6 @@ public java.lang.Object getFieldValue(_Fields field) { case ORDER: return getOrder(); - case PAGE: - return getPage(); - case CREDS: return getCreds(); @@ -660004,8 +658793,6 @@ public boolean isSet(_Fields field) { return isSetTimestamp(); case ORDER: return isSetOrder(); - case PAGE: - return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -660018,12 +658805,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimestrOrderPage_args) - return this.equals((findKeyOperatorstrValuesTimestrOrderPage_args)that); + if (that instanceof findKeyOperatorstrValuesTimestrOrder_args) + return this.equals((findKeyOperatorstrValuesTimestrOrder_args)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimestrOrderPage_args that) { + public boolean equals(findKeyOperatorstrValuesTimestrOrder_args that) { if (that == null) return false; if (this == that) @@ -660074,15 +658861,6 @@ public boolean equals(findKeyOperatorstrValuesTimestrOrderPage_args that) { return false; } - boolean this_present_page = true && this.isSetPage(); - boolean that_present_page = true && that.isSetPage(); - if (this_present_page || that_present_page) { - if (!(this_present_page && that_present_page)) - return false; - if (!this.page.equals(that.page)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -660137,10 +658915,6 @@ public int hashCode() { if (isSetOrder()) hashCode = hashCode * 8191 + order.hashCode(); - hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); - if (isSetPage()) - hashCode = hashCode * 8191 + page.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -660157,7 +658931,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimestrOrderPage_args other) { + public int compareTo(findKeyOperatorstrValuesTimestrOrder_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -660214,16 +658988,6 @@ public int compareTo(findKeyOperatorstrValuesTimestrOrderPage_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPage()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -660275,7 +659039,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrOrderPage_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrOrder_args("); boolean first = true; sb.append("key:"); @@ -660318,14 +659082,6 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("page:"); - if (this.page == null) { - sb.append("null"); - } else { - sb.append(this.page); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -660359,9 +659115,6 @@ public void validate() throws org.apache.thrift.TException { if (order != null) { order.validate(); } - if (page != null) { - page.validate(); - } if (creds != null) { creds.validate(); } @@ -660386,17 +659139,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrOrder_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrOrderPage_argsStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimestrOrderPage_argsStandardScheme(); + public findKeyOperatorstrValuesTimestrOrder_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimestrOrder_argsStandardScheme(); } } - private static class findKeyOperatorstrValuesTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimestrOrder_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -660425,14 +659178,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 3: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6934 = iprot.readListBegin(); - struct.values = new java.util.ArrayList(_list6934.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6935; - for (int _i6936 = 0; _i6936 < _list6934.size; ++_i6936) + org.apache.thrift.protocol.TList _list6918 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6918.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6919; + for (int _i6920 = 0; _i6920 < _list6918.size; ++_i6920) { - _elem6935 = new com.cinchapi.concourse.thrift.TObject(); - _elem6935.read(iprot); - struct.values.add(_elem6935); + _elem6919 = new com.cinchapi.concourse.thrift.TObject(); + _elem6919.read(iprot); + struct.values.add(_elem6919); } iprot.readListEnd(); } @@ -660458,16 +659211,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // PAGE - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 7: // CREDS + case 6: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -660476,7 +659220,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 8: // TRANSACTION + case 7: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -660485,7 +659229,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 9: // ENVIRONMENT + case 8: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -660505,7 +659249,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrOrder_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -660523,9 +659267,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); - for (com.cinchapi.concourse.thrift.TObject _iter6937 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6921 : struct.values) { - _iter6937.write(oprot); + _iter6921.write(oprot); } oprot.writeListEnd(); } @@ -660541,11 +659285,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr struct.order.write(oprot); oprot.writeFieldEnd(); } - if (struct.page != null) { - oprot.writeFieldBegin(PAGE_FIELD_DESC); - struct.page.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -660567,17 +659306,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrOrder_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrOrderPage_argsTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimestrOrderPage_argsTupleScheme(); + public findKeyOperatorstrValuesTimestrOrder_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimestrOrder_argsTupleScheme(); } } - private static class findKeyOperatorstrValuesTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimestrOrder_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -660595,19 +659334,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetOrder()) { optionals.set(4); } - if (struct.isSetPage()) { - optionals.set(5); - } if (struct.isSetCreds()) { - optionals.set(6); + optionals.set(5); } if (struct.isSetTransaction()) { - optionals.set(7); + optionals.set(6); } if (struct.isSetEnvironment()) { - optionals.set(8); + optionals.set(7); } - oprot.writeBitSet(optionals, 9); + oprot.writeBitSet(optionals, 8); if (struct.isSetKey()) { oprot.writeString(struct.key); } @@ -660617,9 +659353,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetValues()) { { oprot.writeI32(struct.values.size()); - for (com.cinchapi.concourse.thrift.TObject _iter6938 : struct.values) + for (com.cinchapi.concourse.thrift.TObject _iter6922 : struct.values) { - _iter6938.write(oprot); + _iter6922.write(oprot); } } } @@ -660629,9 +659365,6 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetOrder()) { struct.order.write(oprot); } - if (struct.isSetPage()) { - struct.page.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -660644,9 +659377,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrder_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(9); + java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -660657,14 +659390,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list6939 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.values = new java.util.ArrayList(_list6939.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6940; - for (int _i6941 = 0; _i6941 < _list6939.size; ++_i6941) + org.apache.thrift.protocol.TList _list6923 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6923.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6924; + for (int _i6925 = 0; _i6925 < _list6923.size; ++_i6925) { - _elem6940 = new com.cinchapi.concourse.thrift.TObject(); - _elem6940.read(iprot); - struct.values.add(_elem6940); + _elem6924 = new com.cinchapi.concourse.thrift.TObject(); + _elem6924.read(iprot); + struct.values.add(_elem6924); } } struct.setValuesIsSet(true); @@ -660679,21 +659412,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrVa struct.setOrderIsSet(true); } if (incoming.get(5)) { - struct.page = new com.cinchapi.concourse.thrift.TPage(); - struct.page.read(iprot); - struct.setPageIsSet(true); - } - if (incoming.get(6)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(7)) { + if (incoming.get(6)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(8)) { + if (incoming.get(7)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -660705,8 +659433,8 @@ private static S scheme(org.apache. } } - public static class findKeyOperatorstrValuesTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrOrderPage_result"); + public static class findKeyOperatorstrValuesTimestrOrder_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrOrder_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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); @@ -660714,8 +659442,8 @@ public static class findKeyOperatorstrValuesTimestrOrderPage_result implements o private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrderPage_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrderPage_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrder_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrder_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -660813,13 +659541,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrOrderPage_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrOrder_result.class, metaDataMap); } - public findKeyOperatorstrValuesTimestrOrderPage_result() { + public findKeyOperatorstrValuesTimestrOrder_result() { } - public findKeyOperatorstrValuesTimestrOrderPage_result( + public findKeyOperatorstrValuesTimestrOrder_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -660837,7 +659565,7 @@ public findKeyOperatorstrValuesTimestrOrderPage_result( /** * Performs a deep copy on other. */ - public findKeyOperatorstrValuesTimestrOrderPage_result(findKeyOperatorstrValuesTimestrOrderPage_result other) { + public findKeyOperatorstrValuesTimestrOrder_result(findKeyOperatorstrValuesTimestrOrder_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -660857,8 +659585,8 @@ public findKeyOperatorstrValuesTimestrOrderPage_result(findKeyOperatorstrValuesT } @Override - public findKeyOperatorstrValuesTimestrOrderPage_result deepCopy() { - return new findKeyOperatorstrValuesTimestrOrderPage_result(this); + public findKeyOperatorstrValuesTimestrOrder_result deepCopy() { + return new findKeyOperatorstrValuesTimestrOrder_result(this); } @Override @@ -660891,7 +659619,7 @@ public java.util.Set getSuccess() { return this.success; } - public findKeyOperatorstrValuesTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesTimestrOrder_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -660916,7 +659644,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findKeyOperatorstrValuesTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesTimestrOrder_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -660941,7 +659669,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findKeyOperatorstrValuesTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesTimestrOrder_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -660966,7 +659694,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findKeyOperatorstrValuesTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public findKeyOperatorstrValuesTimestrOrder_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -660991,7 +659719,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findKeyOperatorstrValuesTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + public findKeyOperatorstrValuesTimestrOrder_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -661104,12 +659832,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findKeyOperatorstrValuesTimestrOrderPage_result) - return this.equals((findKeyOperatorstrValuesTimestrOrderPage_result)that); + if (that instanceof findKeyOperatorstrValuesTimestrOrder_result) + return this.equals((findKeyOperatorstrValuesTimestrOrder_result)that); return false; } - public boolean equals(findKeyOperatorstrValuesTimestrOrderPage_result that) { + public boolean equals(findKeyOperatorstrValuesTimestrOrder_result that) { if (that == null) return false; if (this == that) @@ -661191,7 +659919,7 @@ public int hashCode() { } @Override - public int compareTo(findKeyOperatorstrValuesTimestrOrderPage_result other) { + public int compareTo(findKeyOperatorstrValuesTimestrOrder_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -661268,7 +659996,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrOrderPage_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrOrder_result("); boolean first = true; sb.append("success:"); @@ -661335,17 +660063,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findKeyOperatorstrValuesTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrOrder_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrOrderPage_resultStandardScheme getScheme() { - return new findKeyOperatorstrValuesTimestrOrderPage_resultStandardScheme(); + public findKeyOperatorstrValuesTimestrOrder_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimestrOrder_resultStandardScheme(); } } - private static class findKeyOperatorstrValuesTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimestrOrder_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -661358,13 +660086,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6942 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6942.size); - long _elem6943; - for (int _i6944 = 0; _i6944 < _set6942.size; ++_i6944) + org.apache.thrift.protocol.TSet _set6926 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6926.size); + long _elem6927; + for (int _i6928 = 0; _i6928 < _set6926.size; ++_i6928) { - _elem6943 = iprot.readI64(); - struct.success.add(_elem6943); + _elem6927 = iprot.readI64(); + struct.success.add(_elem6927); } iprot.readSetEnd(); } @@ -661421,7 +660149,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrV } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrOrder_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -661429,9 +660157,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6945 : struct.success) + for (long _iter6929 : struct.success) { - oprot.writeI64(_iter6945); + oprot.writeI64(_iter6929); } oprot.writeSetEnd(); } @@ -661463,17 +660191,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstr } - private static class findKeyOperatorstrValuesTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrOrder_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findKeyOperatorstrValuesTimestrOrderPage_resultTupleScheme getScheme() { - return new findKeyOperatorstrValuesTimestrOrderPage_resultTupleScheme(); + public findKeyOperatorstrValuesTimestrOrder_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimestrOrder_resultTupleScheme(); } } - private static class findKeyOperatorstrValuesTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimestrOrder_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -661495,9 +660223,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6946 : struct.success) + for (long _iter6930 : struct.success) { - oprot.writeI64(_iter6946); + oprot.writeI64(_iter6930); } } } @@ -661516,18 +660244,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrV } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrder_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6947 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6947.size); - long _elem6948; - for (int _i6949 = 0; _i6949 < _set6947.size; ++_i6949) + org.apache.thrift.protocol.TSet _set6931 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6931.size); + long _elem6932; + for (int _i6933 = 0; _i6933 < _set6931.size; ++_i6933) { - _elem6948 = iprot.readI64(); - struct.success.add(_elem6948); + _elem6932 = iprot.readI64(); + struct.success.add(_elem6932); } } struct.setSuccessIsSet(true); @@ -661560,20 +660288,28 @@ private static S scheme(org.apache. } } - public static class search_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("search_args"); + public static class findKeyOperatorstrValuesTimestrOrderPage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrOrderPage_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField QUERY_FIELD_DESC = new org.apache.thrift.protocol.TField("query", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField OPERATOR_FIELD_DESC = new org.apache.thrift.protocol.TField("operator", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField("values", org.apache.thrift.protocol.TType.LIST, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField("order", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("page", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)7); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)8); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)9); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new search_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new search_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrderPage_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrderPage_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable java.lang.String query; // required + public @org.apache.thrift.annotation.Nullable java.lang.String operator; // required + public @org.apache.thrift.annotation.Nullable java.util.List values; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -661581,10 +660317,14 @@ public static class search_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -661602,13 +660342,21 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEY return KEY; - case 2: // QUERY - return QUERY; - case 3: // CREDS + case 2: // OPERATOR + return OPERATOR; + case 3: // VALUES + return VALUES; + case 4: // TIMESTAMP + return TIMESTAMP; + case 5: // ORDER + return ORDER; + case 6: // PAGE + return PAGE; + case 7: // CREDS return CREDS; - case 4: // TRANSACTION + case 8: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 9: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -661658,8 +660406,17 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.QUERY, new org.apache.thrift.meta_data.FieldMetaData("query", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.OPERATOR, new org.apache.thrift.meta_data.FieldMetaData("operator", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.VALUES, new org.apache.thrift.meta_data.FieldMetaData("values", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.ORDER, new org.apache.thrift.meta_data.FieldMetaData("order", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TOrder.class))); + tmpMap.put(_Fields.PAGE, new org.apache.thrift.meta_data.FieldMetaData("page", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TPage.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -661667,22 +660424,30 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(search_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrOrderPage_args.class, metaDataMap); } - public search_args() { + public findKeyOperatorstrValuesTimestrOrderPage_args() { } - public search_args( + public findKeyOperatorstrValuesTimestrOrderPage_args( java.lang.String key, - java.lang.String query, + java.lang.String operator, + java.util.List values, + java.lang.String timestamp, + com.cinchapi.concourse.thrift.TOrder order, + com.cinchapi.concourse.thrift.TPage page, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.key = key; - this.query = query; + this.operator = operator; + this.values = values; + this.timestamp = timestamp; + this.order = order; + this.page = page; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -661691,12 +660456,28 @@ public search_args( /** * Performs a deep copy on other. */ - public search_args(search_args other) { + public findKeyOperatorstrValuesTimestrOrderPage_args(findKeyOperatorstrValuesTimestrOrderPage_args other) { if (other.isSetKey()) { this.key = other.key; } - if (other.isSetQuery()) { - this.query = other.query; + if (other.isSetOperator()) { + this.operator = other.operator; + } + if (other.isSetValues()) { + java.util.List __this__values = new java.util.ArrayList(other.values.size()); + for (com.cinchapi.concourse.thrift.TObject other_element : other.values) { + __this__values.add(new com.cinchapi.concourse.thrift.TObject(other_element)); + } + this.values = __this__values; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } + if (other.isSetOrder()) { + this.order = new com.cinchapi.concourse.thrift.TOrder(other.order); + } + if (other.isSetPage()) { + this.page = new com.cinchapi.concourse.thrift.TPage(other.page); } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -661710,14 +660491,18 @@ public search_args(search_args other) { } @Override - public search_args deepCopy() { - return new search_args(this); + public findKeyOperatorstrValuesTimestrOrderPage_args deepCopy() { + return new findKeyOperatorstrValuesTimestrOrderPage_args(this); } @Override public void clear() { this.key = null; - this.query = null; + this.operator = null; + this.values = null; + this.timestamp = null; + this.order = null; + this.page = null; this.creds = null; this.transaction = null; this.environment = null; @@ -661728,7 +660513,7 @@ public java.lang.String getKey() { return this.key; } - public search_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public findKeyOperatorstrValuesTimestrOrderPage_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -661749,27 +660534,143 @@ public void setKeyIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public java.lang.String getQuery() { - return this.query; + public java.lang.String getOperator() { + return this.operator; } - public search_args setQuery(@org.apache.thrift.annotation.Nullable java.lang.String query) { - this.query = query; + public findKeyOperatorstrValuesTimestrOrderPage_args setOperator(@org.apache.thrift.annotation.Nullable java.lang.String operator) { + this.operator = operator; return this; } - public void unsetQuery() { - this.query = null; + public void unsetOperator() { + this.operator = null; } - /** Returns true if field query is set (has been assigned a value) and false otherwise */ - public boolean isSetQuery() { - return this.query != null; + /** Returns true if field operator is set (has been assigned a value) and false otherwise */ + public boolean isSetOperator() { + return this.operator != null; } - public void setQueryIsSet(boolean value) { + public void setOperatorIsSet(boolean value) { if (!value) { - this.query = null; + this.operator = null; + } + } + + public int getValuesSize() { + return (this.values == null) ? 0 : this.values.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getValuesIterator() { + return (this.values == null) ? null : this.values.iterator(); + } + + public void addToValues(com.cinchapi.concourse.thrift.TObject elem) { + if (this.values == null) { + this.values = new java.util.ArrayList(); + } + this.values.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getValues() { + return this.values; + } + + public findKeyOperatorstrValuesTimestrOrderPage_args setValues(@org.apache.thrift.annotation.Nullable java.util.List values) { + this.values = values; + return this; + } + + public void unsetValues() { + this.values = null; + } + + /** Returns true if field values is set (has been assigned a value) and false otherwise */ + public boolean isSetValues() { + return this.values != null; + } + + public void setValuesIsSet(boolean value) { + if (!value) { + this.values = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public findKeyOperatorstrValuesTimestrOrderPage_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TOrder getOrder() { + return this.order; + } + + public findKeyOperatorstrValuesTimestrOrderPage_args setOrder(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** Returns true if field order is set (has been assigned a value) and false otherwise */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if (!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TPage getPage() { + return this.page; + } + + public findKeyOperatorstrValuesTimestrOrderPage_args setPage(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** Returns true if field page is set (has been assigned a value) and false otherwise */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if (!value) { + this.page = null; } } @@ -661778,7 +660679,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public search_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public findKeyOperatorstrValuesTimestrOrderPage_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -661803,7 +660704,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public search_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public findKeyOperatorstrValuesTimestrOrderPage_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -661828,7 +660729,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public search_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public findKeyOperatorstrValuesTimestrOrderPage_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -661859,11 +660760,43 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case QUERY: + case OPERATOR: if (value == null) { - unsetQuery(); + unsetOperator(); } else { - setQuery((java.lang.String)value); + setOperator((java.lang.String)value); + } + break; + + case VALUES: + if (value == null) { + unsetValues(); + } else { + setValues((java.util.List)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + + case ORDER: + if (value == null) { + unsetOrder(); + } else { + setOrder((com.cinchapi.concourse.thrift.TOrder)value); + } + break; + + case PAGE: + if (value == null) { + unsetPage(); + } else { + setPage((com.cinchapi.concourse.thrift.TPage)value); } break; @@ -661901,8 +660834,20 @@ public java.lang.Object getFieldValue(_Fields field) { case KEY: return getKey(); - case QUERY: - return getQuery(); + case OPERATOR: + return getOperator(); + + case VALUES: + return getValues(); + + case TIMESTAMP: + return getTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); case CREDS: return getCreds(); @@ -661927,8 +660872,16 @@ public boolean isSet(_Fields field) { switch (field) { case KEY: return isSetKey(); - case QUERY: - return isSetQuery(); + case OPERATOR: + return isSetOperator(); + case VALUES: + return isSetValues(); + case TIMESTAMP: + return isSetTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -661941,12 +660894,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof search_args) - return this.equals((search_args)that); + if (that instanceof findKeyOperatorstrValuesTimestrOrderPage_args) + return this.equals((findKeyOperatorstrValuesTimestrOrderPage_args)that); return false; } - public boolean equals(search_args that) { + public boolean equals(findKeyOperatorstrValuesTimestrOrderPage_args that) { if (that == null) return false; if (this == that) @@ -661961,12 +660914,48 @@ public boolean equals(search_args that) { return false; } - boolean this_present_query = true && this.isSetQuery(); - boolean that_present_query = true && that.isSetQuery(); - if (this_present_query || that_present_query) { - if (!(this_present_query && that_present_query)) + boolean this_present_operator = true && this.isSetOperator(); + boolean that_present_operator = true && that.isSetOperator(); + if (this_present_operator || that_present_operator) { + if (!(this_present_operator && that_present_operator)) return false; - if (!this.query.equals(that.query)) + if (!this.operator.equals(that.operator)) + return false; + } + + boolean this_present_values = true && this.isSetValues(); + boolean that_present_values = true && that.isSetValues(); + if (this_present_values || that_present_values) { + if (!(this_present_values && that_present_values)) + return false; + if (!this.values.equals(that.values)) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if (this_present_order || that_present_order) { + if (!(this_present_order && that_present_order)) + return false; + if (!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if (this_present_page || that_present_page) { + if (!(this_present_page && that_present_page)) + return false; + if (!this.page.equals(that.page)) return false; } @@ -662008,9 +660997,25 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetQuery()) ? 131071 : 524287); - if (isSetQuery()) - hashCode = hashCode * 8191 + query.hashCode(); + hashCode = hashCode * 8191 + ((isSetOperator()) ? 131071 : 524287); + if (isSetOperator()) + hashCode = hashCode * 8191 + operator.hashCode(); + + hashCode = hashCode * 8191 + ((isSetValues()) ? 131071 : 524287); + if (isSetValues()) + hashCode = hashCode * 8191 + values.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if (isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if (isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -662028,7 +661033,7 @@ public int hashCode() { } @Override - public int compareTo(search_args other) { + public int compareTo(findKeyOperatorstrValuesTimestrOrderPage_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -662045,12 +661050,52 @@ public int compareTo(search_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetQuery(), other.isSetQuery()); + lastComparison = java.lang.Boolean.compare(isSetOperator(), other.isSetOperator()); if (lastComparison != 0) { return lastComparison; } - if (isSetQuery()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.query, other.query); + if (isSetOperator()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.operator, other.operator); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetValues()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.values, other.values); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, other.order); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), other.isSetPage()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, other.page); if (lastComparison != 0) { return lastComparison; } @@ -662106,7 +661151,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("search_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrOrderPage_args("); boolean first = true; sb.append("key:"); @@ -662117,11 +661162,43 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("query:"); - if (this.query == null) { + sb.append("operator:"); + if (this.operator == null) { sb.append("null"); } else { - sb.append(this.query); + sb.append(this.operator); + } + first = false; + if (!first) sb.append(", "); + sb.append("values:"); + if (this.values == null) { + sb.append("null"); + } else { + sb.append(this.values); + } + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); + sb.append("order:"); + if (this.order == null) { + sb.append("null"); + } else { + sb.append(this.order); + } + first = false; + if (!first) sb.append(", "); + sb.append("page:"); + if (this.page == null) { + sb.append("null"); + } else { + sb.append(this.page); } first = false; if (!first) sb.append(", "); @@ -662155,6 +661232,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (order != null) { + order.validate(); + } + if (page != null) { + page.validate(); + } if (creds != null) { creds.validate(); } @@ -662179,17 +661262,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class search_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrOrderPage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public search_argsStandardScheme getScheme() { - return new search_argsStandardScheme(); + public findKeyOperatorstrValuesTimestrOrderPage_argsStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimestrOrderPage_argsStandardScheme(); } } - private static class search_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimestrOrderPage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, search_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -662207,15 +661290,60 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, search_args struct) org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // QUERY + case 2: // OPERATOR if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.query = iprot.readString(); - struct.setQueryIsSet(true); + struct.operator = iprot.readString(); + struct.setOperatorIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // VALUES + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list6934 = iprot.readListBegin(); + struct.values = new java.util.ArrayList(_list6934.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6935; + for (int _i6936 = 0; _i6936 < _list6934.size; ++_i6936) + { + _elem6935 = new com.cinchapi.concourse.thrift.TObject(); + _elem6935.read(iprot); + struct.values.add(_elem6935); + } + iprot.readListEnd(); + } + struct.setValuesIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // ORDER + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // PAGE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 7: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -662224,7 +661352,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, search_args struct) org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 8: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -662233,7 +661361,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, search_args struct) org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 9: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -662253,7 +661381,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, search_args struct) } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, search_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -662262,9 +661390,36 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, search_args struct oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.query != null) { - oprot.writeFieldBegin(QUERY_FIELD_DESC); - oprot.writeString(struct.query); + if (struct.operator != null) { + oprot.writeFieldBegin(OPERATOR_FIELD_DESC); + oprot.writeString(struct.operator); + oprot.writeFieldEnd(); + } + if (struct.values != null) { + oprot.writeFieldBegin(VALUES_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.values.size())); + for (com.cinchapi.concourse.thrift.TObject _iter6937 : struct.values) + { + _iter6937.write(oprot); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } + if (struct.order != null) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.page != null) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -662288,40 +661443,70 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, search_args struct } - private static class search_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrOrderPage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public search_argsTupleScheme getScheme() { - return new search_argsTupleScheme(); + public findKeyOperatorstrValuesTimestrOrderPage_argsTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimestrOrderPage_argsTupleScheme(); } } - private static class search_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimestrOrderPage_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, search_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetQuery()) { + if (struct.isSetOperator()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetValues()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetTimestamp()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetOrder()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetPage()) { + optionals.set(5); + } + if (struct.isSetCreds()) { + optionals.set(6); + } + if (struct.isSetTransaction()) { + optionals.set(7); + } + if (struct.isSetEnvironment()) { + optionals.set(8); + } + oprot.writeBitSet(optionals, 9); if (struct.isSetKey()) { oprot.writeString(struct.key); } - if (struct.isSetQuery()) { - oprot.writeString(struct.query); + if (struct.isSetOperator()) { + oprot.writeString(struct.operator); + } + if (struct.isSetValues()) { + { + oprot.writeI32(struct.values.size()); + for (com.cinchapi.concourse.thrift.TObject _iter6938 : struct.values) + { + _iter6938.write(oprot); + } + } + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } + if (struct.isSetOrder()) { + struct.order.write(oprot); + } + if (struct.isSetPage()) { + struct.page.write(oprot); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -662335,28 +661520,56 @@ public void write(org.apache.thrift.protocol.TProtocol prot, search_args struct) } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, search_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrderPage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(9); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.query = iprot.readString(); - struct.setQueryIsSet(true); + struct.operator = iprot.readString(); + struct.setOperatorIsSet(true); } if (incoming.get(2)) { + { + org.apache.thrift.protocol.TList _list6939 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList(_list6939.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject _elem6940; + for (int _i6941 = 0; _i6941 < _list6939.size; ++_i6941) + { + _elem6940 = new com.cinchapi.concourse.thrift.TObject(); + _elem6940.read(iprot); + struct.values.add(_elem6940); + } + } + struct.setValuesIsSet(true); + } + if (incoming.get(3)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(4)) { + struct.order = new com.cinchapi.concourse.thrift.TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if (incoming.get(5)) { + struct.page = new com.cinchapi.concourse.thrift.TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if (incoming.get(6)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(7)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(8)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -662368,28 +661581,31 @@ private static S scheme(org.apache. } } - public static class search_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("search_result"); + public static class findKeyOperatorstrValuesTimestrOrderPage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findKeyOperatorstrValuesTimestrOrderPage_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new search_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new search_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrderPage_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findKeyOperatorstrValuesTimestrOrderPage_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -662413,6 +661629,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -662467,31 +661685,35 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(search_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findKeyOperatorstrValuesTimestrOrderPage_result.class, metaDataMap); } - public search_result() { + public findKeyOperatorstrValuesTimestrOrderPage_result() { } - public search_result( + public findKeyOperatorstrValuesTimestrOrderPage_result( java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public search_result(search_result other) { + public findKeyOperatorstrValuesTimestrOrderPage_result(findKeyOperatorstrValuesTimestrOrderPage_result other) { if (other.isSetSuccess()) { java.util.Set __this__success = new java.util.LinkedHashSet(other.success); this.success = __this__success; @@ -662503,13 +661725,16 @@ public search_result(search_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public search_result deepCopy() { - return new search_result(this); + public findKeyOperatorstrValuesTimestrOrderPage_result deepCopy() { + return new findKeyOperatorstrValuesTimestrOrderPage_result(this); } @Override @@ -662518,6 +661743,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } public int getSuccessSize() { @@ -662541,7 +661767,7 @@ public java.util.Set getSuccess() { return this.success; } - public search_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { + public findKeyOperatorstrValuesTimestrOrderPage_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set success) { this.success = success; return this; } @@ -662566,7 +661792,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public search_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public findKeyOperatorstrValuesTimestrOrderPage_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -662591,7 +661817,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public search_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public findKeyOperatorstrValuesTimestrOrderPage_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -662612,11 +661838,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public search_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public findKeyOperatorstrValuesTimestrOrderPage_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -662636,6 +661862,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public findKeyOperatorstrValuesTimestrOrderPage_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -662667,7 +661918,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -662690,6 +661949,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -662710,18 +661972,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof search_result) - return this.equals((search_result)that); + if (that instanceof findKeyOperatorstrValuesTimestrOrderPage_result) + return this.equals((findKeyOperatorstrValuesTimestrOrderPage_result)that); return false; } - public boolean equals(search_result that) { + public boolean equals(findKeyOperatorstrValuesTimestrOrderPage_result that) { if (that == null) return false; if (this == that) @@ -662763,6 +662027,15 @@ public boolean equals(search_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -662786,11 +662059,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(search_result other) { + public int compareTo(findKeyOperatorstrValuesTimestrOrderPage_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -662837,6 +662114,16 @@ public int compareTo(search_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -662857,7 +662144,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("search_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("findKeyOperatorstrValuesTimestrOrderPage_result("); boolean first = true; sb.append("success:"); @@ -662891,6 +662178,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -662916,17 +662211,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class search_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrOrderPage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public search_resultStandardScheme getScheme() { - return new search_resultStandardScheme(); + public findKeyOperatorstrValuesTimestrOrderPage_resultStandardScheme getScheme() { + return new findKeyOperatorstrValuesTimestrOrderPage_resultStandardScheme(); } } - private static class search_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class findKeyOperatorstrValuesTimestrOrderPage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, search_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, findKeyOperatorstrValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -662939,13 +662234,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, search_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set6950 = iprot.readSetBegin(); - struct.success = new java.util.LinkedHashSet(2*_set6950.size); - long _elem6951; - for (int _i6952 = 0; _i6952 < _set6950.size; ++_i6952) + org.apache.thrift.protocol.TSet _set6942 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6942.size); + long _elem6943; + for (int _i6944 = 0; _i6944 < _set6942.size; ++_i6944) { - _elem6951 = iprot.readI64(); - struct.success.add(_elem6951); + _elem6943 = iprot.readI64(); + struct.success.add(_elem6943); } iprot.readSetEnd(); } @@ -662974,13 +662269,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, search_result struc break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -662993,7 +662297,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, search_result struc } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, search_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, findKeyOperatorstrValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -663001,9 +662305,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, search_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); - for (long _iter6953 : struct.success) + for (long _iter6945 : struct.success) { - oprot.writeI64(_iter6953); + oprot.writeI64(_iter6945); } oprot.writeSetEnd(); } @@ -663024,23 +662328,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, search_result stru struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class search_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class findKeyOperatorstrValuesTimestrOrderPage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public search_resultTupleScheme getScheme() { - return new search_resultTupleScheme(); + public findKeyOperatorstrValuesTimestrOrderPage_resultTupleScheme getScheme() { + return new findKeyOperatorstrValuesTimestrOrderPage_resultTupleScheme(); } } - private static class search_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class findKeyOperatorstrValuesTimestrOrderPage_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, search_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -663055,13 +662364,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, search_result struc if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (long _iter6954 : struct.success) + for (long _iter6946 : struct.success) { - oprot.writeI64(_iter6954); + oprot.writeI64(_iter6946); } } } @@ -663074,21 +662386,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, search_result struc if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, search_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, findKeyOperatorstrValuesTimestrOrderPage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set6955 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - struct.success = new java.util.LinkedHashSet(2*_set6955.size); - long _elem6956; - for (int _i6957 = 0; _i6957 < _set6955.size; ++_i6957) + org.apache.thrift.protocol.TSet _set6947 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6947.size); + long _elem6948; + for (int _i6949 = 0; _i6949 < _set6947.size; ++_i6949) { - _elem6956 = iprot.readI64(); - struct.success.add(_elem6956); + _elem6948 = iprot.readI64(); + struct.success.add(_elem6948); } } struct.setSuccessIsSet(true); @@ -663104,10 +662419,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, search_result struct struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -663116,34 +662436,31 @@ private static S scheme(org.apache. } } - public static class revertKeysRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordsTime_args"); + public static class search_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("search_args"); - private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField QUERY_FIELD_DESC = new org.apache.thrift.protocol.TField("query", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new search_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new search_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable java.lang.String query; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEYS((short)1, "keys"), - RECORDS((short)2, "records"), - TIMESTAMP((short)3, "timestamp"), - CREDS((short)4, "creds"), - TRANSACTION((short)5, "transaction"), - ENVIRONMENT((short)6, "environment"); + KEY((short)1, "key"), + QUERY((short)2, "query"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -663159,17 +662476,15 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEYS - return KEYS; - case 2: // RECORDS - return RECORDS; - case 3: // TIMESTAMP - return TIMESTAMP; - case 4: // CREDS + case 1: // KEY + return KEY; + case 2: // QUERY + return QUERY; + case 3: // CREDS return CREDS; - case 5: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -663214,19 +662529,13 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.QUERY, new org.apache.thrift.meta_data.FieldMetaData("query", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -663234,25 +662543,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(search_args.class, metaDataMap); } - public revertKeysRecordsTime_args() { + public search_args() { } - public revertKeysRecordsTime_args( - java.util.List keys, - java.util.List records, - long timestamp, + public search_args( + java.lang.String key, + java.lang.String query, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.keys = keys; - this.records = records; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.key = key; + this.query = query; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -663261,17 +662567,13 @@ public revertKeysRecordsTime_args( /** * Performs a deep copy on other. */ - public revertKeysRecordsTime_args(revertKeysRecordsTime_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetKeys()) { - java.util.List __this__keys = new java.util.ArrayList(other.keys); - this.keys = __this__keys; + public search_args(search_args other) { + if (other.isSetKey()) { + this.key = other.key; } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + if (other.isSetQuery()) { + this.query = other.query; } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -663284,132 +662586,75 @@ public revertKeysRecordsTime_args(revertKeysRecordsTime_args other) { } @Override - public revertKeysRecordsTime_args deepCopy() { - return new revertKeysRecordsTime_args(this); + public search_args deepCopy() { + return new search_args(this); } @Override public void clear() { - this.keys = null; - this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.key = null; + this.query = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getKeysSize() { - return (this.keys == null) ? 0 : this.keys.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getKeysIterator() { - return (this.keys == null) ? null : this.keys.iterator(); - } - - public void addToKeys(java.lang.String elem) { - if (this.keys == null) { - this.keys = new java.util.ArrayList(); - } - this.keys.add(elem); - } - @org.apache.thrift.annotation.Nullable - public java.util.List getKeys() { - return this.keys; + public java.lang.String getKey() { + return this.key; } - public revertKeysRecordsTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { - this.keys = keys; + public search_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; return this; } - public void unsetKeys() { - this.keys = null; + public void unsetKey() { + this.key = null; } - /** Returns true if field keys is set (has been assigned a value) and false otherwise */ - public boolean isSetKeys() { - return this.keys != null; + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; } - public void setKeysIsSet(boolean value) { + public void setKeyIsSet(boolean value) { if (!value) { - this.keys = null; - } - } - - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); + this.key = null; } - this.records.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public java.lang.String getQuery() { + return this.query; } - public revertKeysRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public search_args setQuery(@org.apache.thrift.annotation.Nullable java.lang.String query) { + this.query = query; return this; } - public void unsetRecords() { - this.records = null; + public void unsetQuery() { + this.query = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field query is set (has been assigned a value) and false otherwise */ + public boolean isSetQuery() { + return this.query != null; } - public void setRecordsIsSet(boolean value) { + public void setQueryIsSet(boolean value) { if (!value) { - this.records = null; + this.query = null; } } - public long getTimestamp() { - return this.timestamp; - } - - public revertKeysRecordsTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public revertKeysRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public search_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -663434,7 +662679,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public revertKeysRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public search_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -663459,7 +662704,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public revertKeysRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public search_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -663482,27 +662727,19 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEYS: - if (value == null) { - unsetKeys(); - } else { - setKeys((java.util.List)value); - } - break; - - case RECORDS: + case KEY: if (value == null) { - unsetRecords(); + unsetKey(); } else { - setRecords((java.util.List)value); + setKey((java.lang.String)value); } break; - case TIMESTAMP: + case QUERY: if (value == null) { - unsetTimestamp(); + unsetQuery(); } else { - setTimestamp((java.lang.Long)value); + setQuery((java.lang.String)value); } break; @@ -663537,14 +662774,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEYS: - return getKeys(); - - case RECORDS: - return getRecords(); + case KEY: + return getKey(); - case TIMESTAMP: - return getTimestamp(); + case QUERY: + return getQuery(); case CREDS: return getCreds(); @@ -663567,12 +662801,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEYS: - return isSetKeys(); - case RECORDS: - return isSetRecords(); - case TIMESTAMP: - return isSetTimestamp(); + case KEY: + return isSetKey(); + case QUERY: + return isSetQuery(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -663585,41 +662817,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeysRecordsTime_args) - return this.equals((revertKeysRecordsTime_args)that); + if (that instanceof search_args) + return this.equals((search_args)that); return false; } - public boolean equals(revertKeysRecordsTime_args that) { + public boolean equals(search_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_keys = true && this.isSetKeys(); - boolean that_present_keys = true && that.isSetKeys(); - if (this_present_keys || that_present_keys) { - if (!(this_present_keys && that_present_keys)) - return false; - if (!this.keys.equals(that.keys)) - return false; - } - - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.records.equals(that.records)) + if (!this.key.equals(that.key)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_query = true && this.isSetQuery(); + boolean that_present_query = true && that.isSetQuery(); + if (this_present_query || that_present_query) { + if (!(this_present_query && that_present_query)) return false; - if (this.timestamp != that.timestamp) + if (!this.query.equals(that.query)) return false; } @@ -663657,15 +662880,13 @@ public boolean equals(revertKeysRecordsTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); - if (isSetKeys()) - hashCode = hashCode * 8191 + keys.hashCode(); - - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetQuery()) ? 131071 : 524287); + if (isSetQuery()) + hashCode = hashCode * 8191 + query.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -663683,39 +662904,29 @@ public int hashCode() { } @Override - public int compareTo(revertKeysRecordsTime_args other) { + public int compareTo(search_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetKeys()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetQuery(), other.isSetQuery()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetQuery()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.query, other.query); if (lastComparison != 0) { return lastComparison; } @@ -663771,29 +662982,25 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("search_args("); boolean first = true; - sb.append("keys:"); - if (this.keys == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.keys); + sb.append(this.key); } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { + sb.append("query:"); + if (this.query == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.query); } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -663842,25 +663049,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 revertKeysRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class search_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordsTime_argsStandardScheme getScheme() { - return new revertKeysRecordsTime_argsStandardScheme(); + public search_argsStandardScheme getScheme() { + return new search_argsStandardScheme(); } } - private static class revertKeysRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class search_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, search_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -663870,51 +663075,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi break; } switch (schemeField.id) { - case 1: // KEYS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list6958 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6958.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6959; - for (int _i6960 = 0; _i6960 < _list6958.size; ++_i6960) - { - _elem6959 = iprot.readString(); - struct.keys.add(_elem6959); - } - iprot.readListEnd(); - } - struct.setKeysIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list6961 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list6961.size); - long _elem6962; - for (int _i6963 = 0; _i6963 < _list6961.size; ++_i6963) - { - _elem6962 = iprot.readI64(); - struct.records.add(_elem6962); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + case 2: // QUERY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.query = iprot.readString(); + struct.setQueryIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -663923,7 +663100,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -663932,7 +663109,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -663952,37 +663129,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, search_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.keys != null) { - oprot.writeFieldBegin(KEYS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6964 : struct.keys) - { - oprot.writeString(_iter6964); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter6965 : struct.records) - { - oprot.writeI64(_iter6965); - } - oprot.writeListEnd(); - } + if (struct.query != null) { + oprot.writeFieldBegin(QUERY_FIELD_DESC); + oprot.writeString(struct.query); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -664004,58 +663164,40 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsT } - private static class revertKeysRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class search_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordsTime_argsTupleScheme getScheme() { - return new revertKeysRecordsTime_argsTupleScheme(); + public search_argsTupleScheme getScheme() { + return new search_argsTupleScheme(); } } - private static class revertKeysRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class search_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, search_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKeys()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetRecords()) { + if (struct.isSetQuery()) { optionals.set(1); } - if (struct.isSetTimestamp()) { - optionals.set(2); - } if (struct.isSetCreds()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetTransaction()) { - optionals.set(4); + optionals.set(3); } if (struct.isSetEnvironment()) { - optionals.set(5); - } - oprot.writeBitSet(optionals, 6); - if (struct.isSetKeys()) { - { - oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6966 : struct.keys) - { - oprot.writeString(_iter6966); - } - } + optionals.set(4); } - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter6967 : struct.records) - { - oprot.writeI64(_iter6967); - } - } + oprot.writeBitSet(optionals, 5); + if (struct.isSetKey()) { + oprot.writeString(struct.key); } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + if (struct.isSetQuery()) { + oprot.writeString(struct.query); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -664069,50 +663211,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, search_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list6968 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6968.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6969; - for (int _i6970 = 0; _i6970 < _list6968.size; ++_i6970) - { - _elem6969 = iprot.readString(); - struct.keys.add(_elem6969); - } - } - struct.setKeysIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { - { - org.apache.thrift.protocol.TList _list6971 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list6971.size); - long _elem6972; - for (int _i6973 = 0; _i6973 < _list6971.size; ++_i6973) - { - _elem6972 = iprot.readI64(); - struct.records.add(_elem6972); - } - } - struct.setRecordsIsSet(true); + struct.query = iprot.readString(); + struct.setQueryIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -664124,22 +663244,25 @@ private static S scheme(org.apache. } } - public static class revertKeysRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordsTime_result"); + public static class search_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("search_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.SET, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new search_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new search_resultTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.util.Set success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), EX3((short)3, "ex3"); @@ -664158,6 +663281,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // EX return EX; case 2: // EX2 @@ -664210,6 +663335,9 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -664217,18 +663345,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(search_result.class, metaDataMap); } - public revertKeysRecordsTime_result() { + public search_result() { } - public revertKeysRecordsTime_result( + public search_result( + java.util.Set success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) { this(); + this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -664237,7 +663367,11 @@ public revertKeysRecordsTime_result( /** * Performs a deep copy on other. */ - public revertKeysRecordsTime_result(revertKeysRecordsTime_result other) { + public search_result(search_result other) { + if (other.isSetSuccess()) { + java.util.Set __this__success = new java.util.LinkedHashSet(other.success); + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -664250,23 +663384,65 @@ public revertKeysRecordsTime_result(revertKeysRecordsTime_result other) { } @Override - public revertKeysRecordsTime_result deepCopy() { - return new revertKeysRecordsTime_result(this); + public search_result deepCopy() { + return new search_result(this); } @Override public void clear() { + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; } + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(long elem) { + if (this.success == null) { + this.success = new java.util.LinkedHashSet(); + } + this.success.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Set getSuccess() { + return this.success; + } + + public search_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Set 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; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public revertKeysRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public search_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -664291,7 +663467,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public revertKeysRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public search_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -664316,7 +663492,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public revertKeysRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public search_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -664339,6 +663515,14 @@ public void setEx3IsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.util.Set)value); + } + break; + case EX: if (value == null) { unsetEx(); @@ -664370,6 +663554,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return getSuccess(); + case EX: return getEx(); @@ -664391,6 +663578,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case EX: return isSetEx(); case EX2: @@ -664403,17 +663592,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeysRecordsTime_result) - return this.equals((revertKeysRecordsTime_result)that); + if (that instanceof search_result) + return this.equals((search_result)that); return false; } - public boolean equals(revertKeysRecordsTime_result that) { + public boolean equals(search_result that) { if (that == null) return false; if (this == that) return true; + 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_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -664448,6 +663646,10 @@ public boolean equals(revertKeysRecordsTime_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -664464,13 +663666,23 @@ public int hashCode() { } @Override - public int compareTo(revertKeysRecordsTime_result other) { + public int compareTo(search_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -664521,9 +663733,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("search_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("ex:"); if (this.ex == null) { sb.append("null"); @@ -664572,17 +663792,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeysRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class search_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordsTime_resultStandardScheme getScheme() { - return new revertKeysRecordsTime_resultStandardScheme(); + public search_resultStandardScheme getScheme() { + return new search_resultStandardScheme(); } } - private static class revertKeysRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class search_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, search_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -664592,6 +663812,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.SET) { + { + org.apache.thrift.protocol.TSet _set6950 = iprot.readSetBegin(); + struct.success = new java.util.LinkedHashSet(2*_set6950.size); + long _elem6951; + for (int _i6952 = 0; _i6952 < _set6950.size; ++_i6952) + { + _elem6951 = iprot.readI64(); + struct.success.add(_elem6951); + } + iprot.readSetEnd(); + } + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -664631,10 +663869,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, search_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.success != null) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.success.size())); + for (long _iter6953 : struct.success) + { + oprot.writeI64(_iter6953); + } + oprot.writeSetEnd(); + } + oprot.writeFieldEnd(); + } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -664656,29 +663906,41 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsT } - private static class revertKeysRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class search_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordsTime_resultTupleScheme getScheme() { - return new revertKeysRecordsTime_resultTupleScheme(); + public search_resultTupleScheme getScheme() { + return new search_resultTupleScheme(); } } - private static class revertKeysRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class search_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, search_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetEx()) { + if (struct.isSetSuccess()) { optionals.set(0); } - if (struct.isSetEx2()) { + if (struct.isSetEx()) { optionals.set(1); } - if (struct.isSetEx3()) { + if (struct.isSetEx2()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetEx3()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); + if (struct.isSetSuccess()) { + { + oprot.writeI32(struct.success.size()); + for (long _iter6954 : struct.success) + { + oprot.writeI64(_iter6954); + } + } + } if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -664691,20 +663953,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, search_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { + { + org.apache.thrift.protocol.TSet _set6955 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + struct.success = new java.util.LinkedHashSet(2*_set6955.size); + long _elem6956; + for (int _i6957 = 0; _i6957 < _set6955.size; ++_i6957) + { + _elem6956 = iprot.readI64(); + struct.success.add(_elem6956); + } + } + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(2)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(2)) { + if (incoming.get(3)) { struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); @@ -664717,22 +663992,22 @@ private static S scheme(org.apache. } } - public static class revertKeysRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordsTimestr_args"); + public static class revertKeysRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordsTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -664815,6 +664090,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -664825,7 +664102,7 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -664833,16 +664110,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordsTime_args.class, metaDataMap); } - public revertKeysRecordsTimestr_args() { + public revertKeysRecordsTime_args() { } - public revertKeysRecordsTimestr_args( + public revertKeysRecordsTime_args( java.util.List keys, java.util.List records, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -664851,6 +664128,7 @@ public revertKeysRecordsTimestr_args( this.keys = keys; this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -664859,7 +664137,8 @@ public revertKeysRecordsTimestr_args( /** * Performs a deep copy on other. */ - public revertKeysRecordsTimestr_args(revertKeysRecordsTimestr_args other) { + public revertKeysRecordsTime_args(revertKeysRecordsTime_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; @@ -664868,9 +664147,7 @@ public revertKeysRecordsTimestr_args(revertKeysRecordsTimestr_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -664883,15 +664160,16 @@ public revertKeysRecordsTimestr_args(revertKeysRecordsTimestr_args other) { } @Override - public revertKeysRecordsTimestr_args deepCopy() { - return new revertKeysRecordsTimestr_args(this); + public revertKeysRecordsTime_args deepCopy() { + return new revertKeysRecordsTime_args(this); } @Override public void clear() { this.keys = null; this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -664918,7 +664196,7 @@ public java.util.List getKeys() { return this.keys; } - public revertKeysRecordsTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public revertKeysRecordsTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -664959,7 +664237,7 @@ public java.util.List getRecords() { return this.records; } - public revertKeysRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public revertKeysRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -664979,29 +664257,27 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public revertKeysRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public revertKeysRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -665009,7 +664285,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public revertKeysRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public revertKeysRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -665034,7 +664310,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public revertKeysRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public revertKeysRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -665059,7 +664335,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public revertKeysRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public revertKeysRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -665102,7 +664378,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -665185,12 +664461,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeysRecordsTimestr_args) - return this.equals((revertKeysRecordsTimestr_args)that); + if (that instanceof revertKeysRecordsTime_args) + return this.equals((revertKeysRecordsTime_args)that); return false; } - public boolean equals(revertKeysRecordsTimestr_args that) { + public boolean equals(revertKeysRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -665214,12 +664490,12 @@ public boolean equals(revertKeysRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -665265,9 +664541,7 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -665285,7 +664559,7 @@ public int hashCode() { } @Override - public int compareTo(revertKeysRecordsTimestr_args other) { + public int compareTo(revertKeysRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -665373,7 +664647,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordsTime_args("); boolean first = true; sb.append("keys:"); @@ -665393,11 +664667,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -665448,23 +664718,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 revertKeysRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordsTimestr_argsStandardScheme getScheme() { - return new revertKeysRecordsTimestr_argsStandardScheme(); + public revertKeysRecordsTime_argsStandardScheme getScheme() { + return new revertKeysRecordsTime_argsStandardScheme(); } } - private static class revertKeysRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeysRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -665477,13 +664749,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6974 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6974.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6975; - for (int _i6976 = 0; _i6976 < _list6974.size; ++_i6976) + org.apache.thrift.protocol.TList _list6958 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6958.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6959; + for (int _i6960 = 0; _i6960 < _list6958.size; ++_i6960) { - _elem6975 = iprot.readString(); - struct.keys.add(_elem6975); + _elem6959 = iprot.readString(); + struct.keys.add(_elem6959); } iprot.readListEnd(); } @@ -665495,13 +664767,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6977 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list6977.size); - long _elem6978; - for (int _i6979 = 0; _i6979 < _list6977.size; ++_i6979) + org.apache.thrift.protocol.TList _list6961 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list6961.size); + long _elem6962; + for (int _i6963 = 0; _i6963 < _list6961.size; ++_i6963) { - _elem6978 = iprot.readI64(); - struct.records.add(_elem6978); + _elem6962 = iprot.readI64(); + struct.records.add(_elem6962); } iprot.readListEnd(); } @@ -665511,8 +664783,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -665556,7 +664828,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -665564,9 +664836,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsT oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6980 : struct.keys) + for (java.lang.String _iter6964 : struct.keys) { - oprot.writeString(_iter6980); + oprot.writeString(_iter6964); } oprot.writeListEnd(); } @@ -665576,19 +664848,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsT oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter6981 : struct.records) + for (long _iter6965 : struct.records) { - oprot.writeI64(_iter6981); + oprot.writeI64(_iter6965); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -665610,17 +664880,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsT } - private static class revertKeysRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordsTimestr_argsTupleScheme getScheme() { - return new revertKeysRecordsTimestr_argsTupleScheme(); + public revertKeysRecordsTime_argsTupleScheme getScheme() { + return new revertKeysRecordsTime_argsTupleScheme(); } } - private static class revertKeysRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeysRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -665645,23 +664915,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTi if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6982 : struct.keys) + for (java.lang.String _iter6966 : struct.keys) { - oprot.writeString(_iter6982); + oprot.writeString(_iter6966); } } } if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter6983 : struct.records) + for (long _iter6967 : struct.records) { - oprot.writeI64(_iter6983); + oprot.writeI64(_iter6967); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -665675,37 +664945,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTi } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6984 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6984.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6985; - for (int _i6986 = 0; _i6986 < _list6984.size; ++_i6986) + org.apache.thrift.protocol.TList _list6968 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6968.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6969; + for (int _i6970 = 0; _i6970 < _list6968.size; ++_i6970) { - _elem6985 = iprot.readString(); - struct.keys.add(_elem6985); + _elem6969 = iprot.readString(); + struct.keys.add(_elem6969); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list6987 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list6987.size); - long _elem6988; - for (int _i6989 = 0; _i6989 < _list6987.size; ++_i6989) + org.apache.thrift.protocol.TList _list6971 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list6971.size); + long _elem6972; + for (int _i6973 = 0; _i6973 < _list6971.size; ++_i6973) { - _elem6988 = iprot.readI64(); - struct.records.add(_elem6988); + _elem6972 = iprot.readI64(); + struct.records.add(_elem6972); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -665730,28 +665000,25 @@ private static S scheme(org.apache. } } - public static class revertKeysRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordsTimestr_result"); + public static class revertKeysRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordsTime_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -665773,8 +665040,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -665826,33 +665091,29 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordsTime_result.class, metaDataMap); } - public revertKeysRecordsTimestr_result() { + public revertKeysRecordsTime_result() { } - public revertKeysRecordsTimestr_result( + public revertKeysRecordsTime_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public revertKeysRecordsTimestr_result(revertKeysRecordsTimestr_result other) { + public revertKeysRecordsTime_result(revertKeysRecordsTime_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -665860,16 +665121,13 @@ public revertKeysRecordsTimestr_result(revertKeysRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public revertKeysRecordsTimestr_result deepCopy() { - return new revertKeysRecordsTimestr_result(this); + public revertKeysRecordsTime_result deepCopy() { + return new revertKeysRecordsTime_result(this); } @Override @@ -665877,7 +665135,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -665885,7 +665142,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public revertKeysRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public revertKeysRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -665910,7 +665167,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public revertKeysRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public revertKeysRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -665931,11 +665188,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public revertKeysRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public revertKeysRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -665955,31 +665212,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public revertKeysRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -666003,15 +665235,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -666031,9 +665255,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -666052,20 +665273,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeysRecordsTimestr_result) - return this.equals((revertKeysRecordsTimestr_result)that); + if (that instanceof revertKeysRecordsTime_result) + return this.equals((revertKeysRecordsTime_result)that); return false; } - public boolean equals(revertKeysRecordsTimestr_result that) { + public boolean equals(revertKeysRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -666098,15 +665317,6 @@ public boolean equals(revertKeysRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -666126,15 +665336,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(revertKeysRecordsTimestr_result other) { + public int compareTo(revertKeysRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -666171,16 +665377,6 @@ public int compareTo(revertKeysRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -666201,7 +665397,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordsTime_result("); boolean first = true; sb.append("ex:"); @@ -666227,14 +665423,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -666260,17 +665448,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeysRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordsTimestr_resultStandardScheme getScheme() { - return new revertKeysRecordsTimestr_resultStandardScheme(); + public revertKeysRecordsTime_resultStandardScheme getScheme() { + return new revertKeysRecordsTime_resultStandardScheme(); } } - private static class revertKeysRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeysRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -666300,22 +665488,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -666328,7 +665507,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTi } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -666347,28 +665526,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsT struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class revertKeysRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordsTimestr_resultTupleScheme getScheme() { - return new revertKeysRecordsTimestr_resultTupleScheme(); + public revertKeysRecordsTime_resultTupleScheme getScheme() { + return new revertKeysRecordsTime_resultTupleScheme(); } } - private static class revertKeysRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeysRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -666380,10 +665554,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTi if (struct.isSetEx3()) { optionals.set(2); } - if (struct.isSetEx4()) { - optionals.set(3); - } - oprot.writeBitSet(optionals, 4); + oprot.writeBitSet(optionals, 3); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -666393,15 +665564,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTi if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); @@ -666413,15 +665581,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTim struct.setEx2IsSet(true); } if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(3)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -666430,22 +665593,22 @@ private static S scheme(org.apache. } } - public static class revertKeysRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordTime_args"); + public static class revertKeysRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordsTimestr_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordsTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required - public long record; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -666453,7 +665616,7 @@ public static class revertKeysRecordTime_args implements org.apache.thrift.TBase /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEYS((short)1, "keys"), - RECORD((short)2, "record"), + RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), @@ -666475,8 +665638,8 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEYS return KEYS; - case 2: // RECORD - return RECORD; + case 2: // RECORDS + return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; case 4: // CREDS @@ -666528,19 +665691,17 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -666548,26 +665709,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordsTimestr_args.class, metaDataMap); } - public revertKeysRecordTime_args() { + public revertKeysRecordsTimestr_args() { } - public revertKeysRecordTime_args( + public revertKeysRecordsTimestr_args( java.util.List keys, - long record, - long timestamp, + java.util.List records, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.keys = keys; - this.record = record; - setRecordIsSet(true); + this.records = records; this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -666576,14 +665735,18 @@ public revertKeysRecordTime_args( /** * Performs a deep copy on other. */ - public revertKeysRecordTime_args(revertKeysRecordTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public revertKeysRecordsTimestr_args(revertKeysRecordsTimestr_args other) { if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } - this.record = other.record; - this.timestamp = other.timestamp; + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -666596,17 +665759,15 @@ public revertKeysRecordTime_args(revertKeysRecordTime_args other) { } @Override - public revertKeysRecordTime_args deepCopy() { - return new revertKeysRecordTime_args(this); + public revertKeysRecordsTimestr_args deepCopy() { + return new revertKeysRecordsTimestr_args(this); } @Override public void clear() { this.keys = null; - setRecordIsSet(false); - this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; + this.records = null; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; @@ -666633,7 +665794,7 @@ public java.util.List getKeys() { return this.keys; } - public revertKeysRecordTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public revertKeysRecordsTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -666653,50 +665814,70 @@ public void setKeysIsSet(boolean value) { } } - public long getRecord() { - return this.record; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - public revertKeysRecordTime_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public revertKeysRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public revertKeysRecordTime_args setTimestamp(long timestamp) { + public revertKeysRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -666704,7 +665885,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public revertKeysRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public revertKeysRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -666729,7 +665910,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public revertKeysRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public revertKeysRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -666754,7 +665935,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public revertKeysRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public revertKeysRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -666785,11 +665966,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; @@ -666797,7 +665978,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -666835,8 +666016,8 @@ public java.lang.Object getFieldValue(_Fields field) { case KEYS: return getKeys(); - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); case TIMESTAMP: return getTimestamp(); @@ -666864,8 +666045,8 @@ public boolean isSet(_Fields field) { switch (field) { case KEYS: return isSetKeys(); - case RECORD: - return isSetRecord(); + case RECORDS: + return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); case CREDS: @@ -666880,12 +666061,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeysRecordTime_args) - return this.equals((revertKeysRecordTime_args)that); + if (that instanceof revertKeysRecordsTimestr_args) + return this.equals((revertKeysRecordsTimestr_args)that); return false; } - public boolean equals(revertKeysRecordTime_args that) { + public boolean equals(revertKeysRecordsTimestr_args that) { if (that == null) return false; if (this == that) @@ -666900,21 +666081,21 @@ public boolean equals(revertKeysRecordTime_args that) { return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -666956,9 +666137,13 @@ public int hashCode() { if (isSetKeys()) hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -666976,7 +666161,7 @@ public int hashCode() { } @Override - public int compareTo(revertKeysRecordTime_args other) { + public int compareTo(revertKeysRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -666993,12 +666178,12 @@ public int compareTo(revertKeysRecordTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -667064,7 +666249,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordsTimestr_args("); boolean first = true; sb.append("keys:"); @@ -667075,12 +666260,20 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -667131,25 +666324,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 revertKeysRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordTime_argsStandardScheme getScheme() { - return new revertKeysRecordTime_argsStandardScheme(); + public revertKeysRecordsTimestr_argsStandardScheme getScheme() { + return new revertKeysRecordsTimestr_argsStandardScheme(); } } - private static class revertKeysRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeysRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -667162,13 +666353,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6990 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6990.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6991; - for (int _i6992 = 0; _i6992 < _list6990.size; ++_i6992) + org.apache.thrift.protocol.TList _list6974 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6974.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6975; + for (int _i6976 = 0; _i6976 < _list6974.size; ++_i6976) { - _elem6991 = iprot.readString(); - struct.keys.add(_elem6991); + _elem6975 = iprot.readString(); + struct.keys.add(_elem6975); } iprot.readListEnd(); } @@ -667177,17 +666368,27 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 2: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list6977 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list6977.size); + long _elem6978; + for (int _i6979 = 0; _i6979 < _list6977.size; ++_i6979) + { + _elem6978 = iprot.readI64(); + struct.records.add(_elem6978); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -667231,7 +666432,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -667239,20 +666440,31 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTi oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter6993 : struct.keys) + for (java.lang.String _iter6980 : struct.keys) { - oprot.writeString(_iter6993); + oprot.writeString(_iter6980); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter6981 : struct.records) + { + oprot.writeI64(_iter6981); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -667274,23 +666486,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTi } - private static class revertKeysRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordTime_argsTupleScheme getScheme() { - return new revertKeysRecordTime_argsTupleScheme(); + public revertKeysRecordsTimestr_argsTupleScheme getScheme() { + return new revertKeysRecordsTimestr_argsTupleScheme(); } } - private static class revertKeysRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeysRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(1); } if (struct.isSetTimestamp()) { @@ -667309,17 +666521,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter6994 : struct.keys) + for (java.lang.String _iter6982 : struct.keys) { - oprot.writeString(_iter6994); + oprot.writeString(_iter6982); } } } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter6983 : struct.records) + { + oprot.writeI64(_iter6983); + } + } } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -667333,28 +666551,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list6995 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list6995.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6996; - for (int _i6997 = 0; _i6997 < _list6995.size; ++_i6997) + org.apache.thrift.protocol.TList _list6984 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6984.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6985; + for (int _i6986 = 0; _i6986 < _list6984.size; ++_i6986) { - _elem6996 = iprot.readString(); - struct.keys.add(_elem6996); + _elem6985 = iprot.readString(); + struct.keys.add(_elem6985); } } struct.setKeysIsSet(true); } if (incoming.get(1)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list6987 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list6987.size); + long _elem6988; + for (int _i6989 = 0; _i6989 < _list6987.size; ++_i6989) + { + _elem6988 = iprot.readI64(); + struct.records.add(_elem6988); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -667379,25 +666606,28 @@ private static S scheme(org.apache. } } - public static class revertKeysRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordTime_result"); + public static class revertKeysRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordsTimestr_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordsTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -667419,6 +666649,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -667470,29 +666702,33 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordsTimestr_result.class, metaDataMap); } - public revertKeysRecordTime_result() { + public revertKeysRecordsTimestr_result() { } - public revertKeysRecordTime_result( + public revertKeysRecordsTimestr_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public revertKeysRecordTime_result(revertKeysRecordTime_result other) { + public revertKeysRecordsTimestr_result(revertKeysRecordsTimestr_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -667500,13 +666736,16 @@ public revertKeysRecordTime_result(revertKeysRecordTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public revertKeysRecordTime_result deepCopy() { - return new revertKeysRecordTime_result(this); + public revertKeysRecordsTimestr_result deepCopy() { + return new revertKeysRecordsTimestr_result(this); } @Override @@ -667514,6 +666753,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -667521,7 +666761,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public revertKeysRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public revertKeysRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -667546,7 +666786,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public revertKeysRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public revertKeysRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -667567,11 +666807,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public revertKeysRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public revertKeysRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -667591,6 +666831,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public revertKeysRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -667614,7 +666879,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -667634,6 +666907,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -667652,18 +666928,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeysRecordTime_result) - return this.equals((revertKeysRecordTime_result)that); + if (that instanceof revertKeysRecordsTimestr_result) + return this.equals((revertKeysRecordsTimestr_result)that); return false; } - public boolean equals(revertKeysRecordTime_result that) { + public boolean equals(revertKeysRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -667696,6 +666974,15 @@ public boolean equals(revertKeysRecordTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -667715,11 +667002,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(revertKeysRecordTime_result other) { + public int compareTo(revertKeysRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -667756,6 +667047,16 @@ public int compareTo(revertKeysRecordTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -667776,7 +667077,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordsTimestr_result("); boolean first = true; sb.append("ex:"); @@ -667802,6 +667103,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -667827,17 +667136,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeysRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordTime_resultStandardScheme getScheme() { - return new revertKeysRecordTime_resultStandardScheme(); + public revertKeysRecordsTimestr_resultStandardScheme getScheme() { + return new revertKeysRecordsTimestr_resultStandardScheme(); } } - private static class revertKeysRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeysRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -667867,13 +667176,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -667886,7 +667204,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -667905,23 +667223,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTi struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class revertKeysRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordTime_resultTupleScheme getScheme() { - return new revertKeysRecordTime_resultTupleScheme(); + public revertKeysRecordsTimestr_resultTupleScheme getScheme() { + return new revertKeysRecordsTimestr_resultTupleScheme(); } } - private static class revertKeysRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeysRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -667933,7 +667256,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim if (struct.isSetEx3()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetEx4()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -667943,12 +667269,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); @@ -667960,10 +667289,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime struct.setEx2IsSet(true); } if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(3)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -667972,22 +667306,22 @@ private static S scheme(org.apache. } } - public static class revertKeysRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordTimestr_args"); + public static class revertKeysRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordTime_args"); private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.util.List keys; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -668071,6 +667405,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -668081,7 +667416,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -668089,16 +667424,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordTime_args.class, metaDataMap); } - public revertKeysRecordTimestr_args() { + public revertKeysRecordTime_args() { } - public revertKeysRecordTimestr_args( + public revertKeysRecordTime_args( java.util.List keys, long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -668108,6 +667443,7 @@ public revertKeysRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -668116,16 +667452,14 @@ public revertKeysRecordTimestr_args( /** * Performs a deep copy on other. */ - public revertKeysRecordTimestr_args(revertKeysRecordTimestr_args other) { + public revertKeysRecordTime_args(revertKeysRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKeys()) { java.util.List __this__keys = new java.util.ArrayList(other.keys); this.keys = __this__keys; } this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -668138,8 +667472,8 @@ public revertKeysRecordTimestr_args(revertKeysRecordTimestr_args other) { } @Override - public revertKeysRecordTimestr_args deepCopy() { - return new revertKeysRecordTimestr_args(this); + public revertKeysRecordTime_args deepCopy() { + return new revertKeysRecordTime_args(this); } @Override @@ -668147,7 +667481,8 @@ public void clear() { this.keys = null; setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -668174,7 +667509,7 @@ public java.util.List getKeys() { return this.keys; } - public revertKeysRecordTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + public revertKeysRecordTime_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { this.keys = keys; return this; } @@ -668198,7 +667533,7 @@ public long getRecord() { return this.record; } - public revertKeysRecordTimestr_args setRecord(long record) { + public revertKeysRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -668217,29 +667552,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public revertKeysRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public revertKeysRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -668247,7 +667580,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public revertKeysRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public revertKeysRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -668272,7 +667605,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public revertKeysRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public revertKeysRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -668297,7 +667630,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public revertKeysRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public revertKeysRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -668340,7 +667673,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -668423,12 +667756,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeysRecordTimestr_args) - return this.equals((revertKeysRecordTimestr_args)that); + if (that instanceof revertKeysRecordTime_args) + return this.equals((revertKeysRecordTime_args)that); return false; } - public boolean equals(revertKeysRecordTimestr_args that) { + public boolean equals(revertKeysRecordTime_args that) { if (that == null) return false; if (this == that) @@ -668452,12 +667785,12 @@ public boolean equals(revertKeysRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -668501,9 +667834,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -668521,7 +667852,7 @@ public int hashCode() { } @Override - public int compareTo(revertKeysRecordTimestr_args other) { + public int compareTo(revertKeysRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -668609,7 +667940,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordTime_args("); boolean first = true; sb.append("keys:"); @@ -668625,11 +667956,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -668688,17 +668015,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeysRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordTimestr_argsStandardScheme getScheme() { - return new revertKeysRecordTimestr_argsStandardScheme(); + public revertKeysRecordTime_argsStandardScheme getScheme() { + return new revertKeysRecordTime_argsStandardScheme(); } } - private static class revertKeysRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeysRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -668711,13 +668038,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list6998 = iprot.readListBegin(); - struct.keys = new java.util.ArrayList(_list6998.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem6999; - for (int _i7000 = 0; _i7000 < _list6998.size; ++_i7000) + org.apache.thrift.protocol.TList _list6990 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6990.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6991; + for (int _i6992 = 0; _i6992 < _list6990.size; ++_i6992) { - _elem6999 = iprot.readString(); - struct.keys.add(_elem6999); + _elem6991 = iprot.readString(); + struct.keys.add(_elem6991); } iprot.readListEnd(); } @@ -668735,8 +668062,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -668780,7 +668107,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -668788,9 +668115,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTi oprot.writeFieldBegin(KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); - for (java.lang.String _iter7001 : struct.keys) + for (java.lang.String _iter6993 : struct.keys) { - oprot.writeString(_iter7001); + oprot.writeString(_iter6993); } oprot.writeListEnd(); } @@ -668799,11 +668126,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTi oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -668825,17 +668150,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTi } - private static class revertKeysRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordTimestr_argsTupleScheme getScheme() { - return new revertKeysRecordTimestr_argsTupleScheme(); + public revertKeysRecordTime_argsTupleScheme getScheme() { + return new revertKeysRecordTime_argsTupleScheme(); } } - private static class revertKeysRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeysRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKeys()) { @@ -668860,9 +668185,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim if (struct.isSetKeys()) { { oprot.writeI32(struct.keys.size()); - for (java.lang.String _iter7002 : struct.keys) + for (java.lang.String _iter6994 : struct.keys) { - oprot.writeString(_iter7002); + oprot.writeString(_iter6994); } } } @@ -668870,7 +668195,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -668884,18 +668209,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list7003 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.keys = new java.util.ArrayList(_list7003.size); - @org.apache.thrift.annotation.Nullable java.lang.String _elem7004; - for (int _i7005 = 0; _i7005 < _list7003.size; ++_i7005) + org.apache.thrift.protocol.TList _list6995 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list6995.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6996; + for (int _i6997 = 0; _i6997 < _list6995.size; ++_i6997) { - _elem7004 = iprot.readString(); - struct.keys.add(_elem7004); + _elem6996 = iprot.readString(); + struct.keys.add(_elem6996); } } struct.setKeysIsSet(true); @@ -668905,7 +668230,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -668930,28 +668255,25 @@ private static S scheme(org.apache. } } - public static class revertKeysRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordTimestr_result"); + public static class revertKeysRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordTime_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -668973,8 +668295,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -669026,33 +668346,29 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordTime_result.class, metaDataMap); } - public revertKeysRecordTimestr_result() { + public revertKeysRecordTime_result() { } - public revertKeysRecordTimestr_result( + public revertKeysRecordTime_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public revertKeysRecordTimestr_result(revertKeysRecordTimestr_result other) { + public revertKeysRecordTime_result(revertKeysRecordTime_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -669060,16 +668376,13 @@ public revertKeysRecordTimestr_result(revertKeysRecordTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public revertKeysRecordTimestr_result deepCopy() { - return new revertKeysRecordTimestr_result(this); + public revertKeysRecordTime_result deepCopy() { + return new revertKeysRecordTime_result(this); } @Override @@ -669077,7 +668390,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -669085,7 +668397,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public revertKeysRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public revertKeysRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -669110,7 +668422,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public revertKeysRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public revertKeysRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -669131,11 +668443,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public revertKeysRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public revertKeysRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -669155,31 +668467,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public revertKeysRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -669203,15 +668490,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -669231,9 +668510,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -669252,20 +668528,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeysRecordTimestr_result) - return this.equals((revertKeysRecordTimestr_result)that); + if (that instanceof revertKeysRecordTime_result) + return this.equals((revertKeysRecordTime_result)that); return false; } - public boolean equals(revertKeysRecordTimestr_result that) { + public boolean equals(revertKeysRecordTime_result that) { if (that == null) return false; if (this == that) @@ -669298,15 +668572,6 @@ public boolean equals(revertKeysRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -669326,15 +668591,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(revertKeysRecordTimestr_result other) { + public int compareTo(revertKeysRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -669371,16 +668632,6 @@ public int compareTo(revertKeysRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -669401,7 +668652,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordTime_result("); boolean first = true; sb.append("ex:"); @@ -669427,14 +668678,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -669460,17 +668703,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeysRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordTimestr_resultStandardScheme getScheme() { - return new revertKeysRecordTimestr_resultStandardScheme(); + public revertKeysRecordTime_resultStandardScheme getScheme() { + return new revertKeysRecordTime_resultStandardScheme(); } } - private static class revertKeysRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeysRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -669500,22 +668743,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -669528,7 +668762,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -669547,28 +668781,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTi struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class revertKeysRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeysRecordTimestr_resultTupleScheme getScheme() { - return new revertKeysRecordTimestr_resultTupleScheme(); + public revertKeysRecordTime_resultTupleScheme getScheme() { + return new revertKeysRecordTime_resultTupleScheme(); } } - private static class revertKeysRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeysRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -669580,10 +668809,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim if (struct.isSetEx3()) { optionals.set(2); } - if (struct.isSetEx4()) { - optionals.set(3); - } - oprot.writeBitSet(optionals, 4); + oprot.writeBitSet(optionals, 3); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -669593,15 +668819,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTim if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); @@ -669613,15 +668836,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTime struct.setEx2IsSet(true); } if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(3)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -669630,30 +668848,30 @@ private static S scheme(org.apache. } } - public static class revertKeyRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordsTime_args"); + public static class revertKeysRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordTimestr_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField("keys", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - RECORDS((short)2, "records"), + KEYS((short)1, "keys"), + RECORD((short)2, "record"), TIMESTAMP((short)3, "timestamp"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), @@ -669673,10 +668891,10 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // RECORDS - return RECORDS; + case 1: // KEYS + return KEYS; + case 2: // RECORD + return RECORD; case 3: // TIMESTAMP return TIMESTAMP; case 4: // CREDS @@ -669728,18 +668946,18 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; + private static final int __RECORD_ISSET_ID = 0; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData("keys", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -669747,25 +668965,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordTimestr_args.class, metaDataMap); } - public revertKeyRecordsTime_args() { + public revertKeysRecordTimestr_args() { } - public revertKeyRecordsTime_args( - java.lang.String key, - java.util.List records, - long timestamp, + public revertKeysRecordTimestr_args( + java.util.List keys, + long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.records = records; + this.keys = keys; + this.record = record; + setRecordIsSet(true); this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -669774,16 +668992,16 @@ public revertKeyRecordsTime_args( /** * Performs a deep copy on other. */ - public revertKeyRecordsTime_args(revertKeyRecordsTime_args other) { + public revertKeysRecordTimestr_args(revertKeysRecordTimestr_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; + if (other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList(other.keys); + this.keys = __this__keys; } - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -669796,108 +669014,108 @@ public revertKeyRecordsTime_args(revertKeyRecordsTime_args other) { } @Override - public revertKeyRecordsTime_args deepCopy() { - return new revertKeyRecordsTime_args(this); + public revertKeysRecordTimestr_args deepCopy() { + return new revertKeysRecordTimestr_args(this); } @Override public void clear() { - this.key = null; - this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.keys = null; + setRecordIsSet(false); + this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); } - public revertKeyRecordsTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; - return this; + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); } - public void unsetKey() { - this.key = null; + public void addToKeys(java.lang.String elem) { + if (this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); } - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; } - public void setKeyIsSet(boolean value) { - if (!value) { - this.key = null; - } + public revertKeysRecordTimestr_args setKeys(@org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; + return this; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + public void unsetKeys() { + this.keys = null; } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + /** Returns true if field keys is set (has been assigned a value) and false otherwise */ + public boolean isSetKeys() { + return this.keys != null; } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); + public void setKeysIsSet(boolean value) { + if (!value) { + this.keys = null; } - this.records.add(elem); } - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public long getRecord() { + return this.record; } - public revertKeyRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public revertKeysRecordTimestr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); return this; } - public void unsetRecords() { - this.records = null; + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); } - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public revertKeyRecordsTime_args setTimestamp(long timestamp) { + public revertKeysRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -669905,7 +669123,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public revertKeyRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public revertKeysRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -669930,7 +669148,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public revertKeyRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public revertKeysRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -669955,7 +669173,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public revertKeyRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public revertKeysRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -669978,19 +669196,19 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: + case KEYS: if (value == null) { - unsetKey(); + unsetKeys(); } else { - setKey((java.lang.String)value); + setKeys((java.util.List)value); } break; - case RECORDS: + case RECORD: if (value == null) { - unsetRecords(); + unsetRecord(); } else { - setRecords((java.util.List)value); + setRecord((java.lang.Long)value); } break; @@ -669998,7 +669216,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -670033,11 +669251,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); + case KEYS: + return getKeys(); - case RECORDS: - return getRecords(); + case RECORD: + return getRecord(); case TIMESTAMP: return getTimestamp(); @@ -670063,10 +669281,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case RECORDS: - return isSetRecords(); + case KEYS: + return isSetKeys(); + case RECORD: + return isSetRecord(); case TIMESTAMP: return isSetTimestamp(); case CREDS: @@ -670081,41 +669299,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeyRecordsTime_args) - return this.equals((revertKeyRecordsTime_args)that); + if (that instanceof revertKeysRecordTimestr_args) + return this.equals((revertKeysRecordTimestr_args)that); return false; } - public boolean equals(revertKeyRecordsTime_args that) { + public boolean equals(revertKeysRecordTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if (this_present_keys || that_present_keys) { + if (!(this_present_keys && that_present_keys)) return false; - if (!this.key.equals(that.key)) + if (!this.keys.equals(that.keys)) return false; } - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) return false; - if (!this.records.equals(that.records)) + if (this.record != that.record) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -670153,15 +669371,15 @@ public boolean equals(revertKeyRecordsTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if (isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -670179,29 +669397,29 @@ public int hashCode() { } @Override - public int compareTo(revertKeyRecordsTime_args other) { + public int compareTo(revertKeysRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKeys(), other.isSetKeys()); if (lastComparison != 0) { return lastComparison; } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, other.keys); if (lastComparison != 0) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); if (lastComparison != 0) { return lastComparison; } @@ -670267,27 +669485,27 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordTimestr_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { + sb.append("keys:"); + if (this.keys == null) { sb.append("null"); } else { - sb.append(this.key); + sb.append(this.keys); } first = false; if (!first) sb.append(", "); - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } + sb.append("record:"); + sb.append(this.record); first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -670346,17 +669564,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeyRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordsTime_argsStandardScheme getScheme() { - return new revertKeyRecordsTime_argsStandardScheme(); + public revertKeysRecordTimestr_argsStandardScheme getScheme() { + return new revertKeysRecordTimestr_argsStandardScheme(); } } - private static class revertKeyRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeysRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -670366,35 +669584,35 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // RECORDS + case 1: // KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list7006 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list7006.size); - long _elem7007; - for (int _i7008 = 0; _i7008 < _list7006.size; ++_i7008) + org.apache.thrift.protocol.TList _list6998 = iprot.readListBegin(); + struct.keys = new java.util.ArrayList(_list6998.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem6999; + for (int _i7000 = 0; _i7000 < _list6998.size; ++_i7000) { - _elem7007 = iprot.readI64(); - struct.records.add(_elem7007); + _elem6999 = iprot.readString(); + struct.keys.add(_elem6999); } iprot.readListEnd(); } - struct.setRecordsIsSet(true); + struct.setKeysIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TIMESTAMP + case 2: // RECORD if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -670438,30 +669656,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); - oprot.writeFieldEnd(); - } - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); + if (struct.keys != null) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter7009 : struct.records) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.keys.size())); + for (java.lang.String _iter7001 : struct.keys) { - oprot.writeI64(_iter7009); + oprot.writeString(_iter7001); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -670483,23 +669701,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTi } - private static class revertKeyRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordsTime_argsTupleScheme getScheme() { - return new revertKeyRecordsTime_argsTupleScheme(); + public revertKeysRecordTimestr_argsTupleScheme getScheme() { + return new revertKeysRecordTimestr_argsTupleScheme(); } } - private static class revertKeyRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeysRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { + if (struct.isSetKeys()) { optionals.set(0); } - if (struct.isSetRecords()) { + if (struct.isSetRecord()) { optionals.set(1); } if (struct.isSetTimestamp()) { @@ -670515,20 +669733,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTim optionals.set(5); } oprot.writeBitSet(optionals, 6); - if (struct.isSetKey()) { - oprot.writeString(struct.key); - } - if (struct.isSetRecords()) { + if (struct.isSetKeys()) { { - oprot.writeI32(struct.records.size()); - for (long _iter7010 : struct.records) + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter7002 : struct.keys) { - oprot.writeI64(_iter7010); + oprot.writeString(_iter7002); } } } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -670542,28 +669760,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } - if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list7011 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list7011.size); - long _elem7012; - for (int _i7013 = 0; _i7013 < _list7011.size; ++_i7013) + org.apache.thrift.protocol.TList _list7003 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList(_list7003.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem7004; + for (int _i7005 = 0; _i7005 < _list7003.size; ++_i7005) { - _elem7012 = iprot.readI64(); - struct.records.add(_elem7012); + _elem7004 = iprot.readString(); + struct.keys.add(_elem7004); } } - struct.setRecordsIsSet(true); + struct.setKeysIsSet(true); + } + if (incoming.get(1)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -670588,25 +669806,28 @@ private static S scheme(org.apache. } } - public static class revertKeyRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordsTime_result"); + public static class revertKeysRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeysRecordTimestr_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeysRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeysRecordTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -670628,6 +669849,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -670679,29 +669902,33 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeysRecordTimestr_result.class, metaDataMap); } - public revertKeyRecordsTime_result() { + public revertKeysRecordTimestr_result() { } - public revertKeyRecordsTime_result( + public revertKeysRecordTimestr_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public revertKeyRecordsTime_result(revertKeyRecordsTime_result other) { + public revertKeysRecordTimestr_result(revertKeysRecordTimestr_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -670709,13 +669936,16 @@ public revertKeyRecordsTime_result(revertKeyRecordsTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public revertKeyRecordsTime_result deepCopy() { - return new revertKeyRecordsTime_result(this); + public revertKeysRecordTimestr_result deepCopy() { + return new revertKeysRecordTimestr_result(this); } @Override @@ -670723,6 +669953,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -670730,7 +669961,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public revertKeyRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public revertKeysRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -670755,7 +669986,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public revertKeyRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public revertKeysRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -670776,11 +670007,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public revertKeyRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public revertKeysRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -670800,6 +670031,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public revertKeysRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -670823,7 +670079,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -670843,6 +670107,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -670861,18 +670128,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeyRecordsTime_result) - return this.equals((revertKeyRecordsTime_result)that); + if (that instanceof revertKeysRecordTimestr_result) + return this.equals((revertKeysRecordTimestr_result)that); return false; } - public boolean equals(revertKeyRecordsTime_result that) { + public boolean equals(revertKeysRecordTimestr_result that) { if (that == null) return false; if (this == that) @@ -670905,6 +670174,15 @@ public boolean equals(revertKeyRecordsTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -670924,11 +670202,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(revertKeyRecordsTime_result other) { + public int compareTo(revertKeysRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -670965,6 +670247,16 @@ public int compareTo(revertKeyRecordsTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -670985,7 +670277,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeysRecordTimestr_result("); boolean first = true; sb.append("ex:"); @@ -671011,6 +670303,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -671036,17 +670336,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeyRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordsTime_resultStandardScheme getScheme() { - return new revertKeyRecordsTime_resultStandardScheme(); + public revertKeysRecordTimestr_resultStandardScheme getScheme() { + return new revertKeysRecordTimestr_resultStandardScheme(); } } - private static class revertKeyRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeysRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -671076,13 +670376,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -671095,7 +670404,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeysRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -671114,23 +670423,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTi struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class revertKeyRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeysRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordsTime_resultTupleScheme getScheme() { - return new revertKeyRecordsTime_resultTupleScheme(); + public revertKeysRecordTimestr_resultTupleScheme getScheme() { + return new revertKeysRecordTimestr_resultTupleScheme(); } } - private static class revertKeyRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeysRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -671142,7 +670456,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTim if (struct.isSetEx3()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetEx4()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -671152,12 +670469,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTim if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeysRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); @@ -671169,10 +670489,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime struct.setEx2IsSet(true); } if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(3)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -671181,22 +670506,22 @@ private static S scheme(org.apache. } } - public static class revertKeyRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordsTimestr_args"); + public static class revertKeyRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordsTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordsTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -671279,6 +670604,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -671288,7 +670615,7 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -671296,16 +670623,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordsTime_args.class, metaDataMap); } - public revertKeyRecordsTimestr_args() { + public revertKeyRecordsTime_args() { } - public revertKeyRecordsTimestr_args( + public revertKeyRecordsTime_args( java.lang.String key, java.util.List records, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -671314,6 +670641,7 @@ public revertKeyRecordsTimestr_args( this.key = key; this.records = records; this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -671322,7 +670650,8 @@ public revertKeyRecordsTimestr_args( /** * Performs a deep copy on other. */ - public revertKeyRecordsTimestr_args(revertKeyRecordsTimestr_args other) { + public revertKeyRecordsTime_args(revertKeyRecordsTime_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } @@ -671330,9 +670659,7 @@ public revertKeyRecordsTimestr_args(revertKeyRecordsTimestr_args other) { java.util.List __this__records = new java.util.ArrayList(other.records); this.records = __this__records; } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -671345,15 +670672,16 @@ public revertKeyRecordsTimestr_args(revertKeyRecordsTimestr_args other) { } @Override - public revertKeyRecordsTimestr_args deepCopy() { - return new revertKeyRecordsTimestr_args(this); + public revertKeyRecordsTime_args deepCopy() { + return new revertKeyRecordsTime_args(this); } @Override public void clear() { this.key = null; this.records = null; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -671364,7 +670692,7 @@ public java.lang.String getKey() { return this.key; } - public revertKeyRecordsTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public revertKeyRecordsTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -671405,7 +670733,7 @@ public java.util.List getRecords() { return this.records; } - public revertKeyRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + public revertKeyRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { this.records = records; return this; } @@ -671425,29 +670753,27 @@ public void setRecordsIsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public revertKeyRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public revertKeyRecordsTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -671455,7 +670781,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public revertKeyRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public revertKeyRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -671480,7 +670806,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public revertKeyRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public revertKeyRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -671505,7 +670831,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public revertKeyRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public revertKeyRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -671548,7 +670874,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -671631,12 +670957,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeyRecordsTimestr_args) - return this.equals((revertKeyRecordsTimestr_args)that); + if (that instanceof revertKeyRecordsTime_args) + return this.equals((revertKeyRecordsTime_args)that); return false; } - public boolean equals(revertKeyRecordsTimestr_args that) { + public boolean equals(revertKeyRecordsTime_args that) { if (that == null) return false; if (this == that) @@ -671660,12 +670986,12 @@ public boolean equals(revertKeyRecordsTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -671711,9 +671037,7 @@ public int hashCode() { if (isSetRecords()) hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -671731,7 +671055,7 @@ public int hashCode() { } @Override - public int compareTo(revertKeyRecordsTimestr_args other) { + public int compareTo(revertKeyRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -671819,7 +671143,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordsTime_args("); boolean first = true; sb.append("key:"); @@ -671839,11 +671163,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -671894,23 +671214,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 revertKeyRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordsTimestr_argsStandardScheme getScheme() { - return new revertKeyRecordsTimestr_argsStandardScheme(); + public revertKeyRecordsTime_argsStandardScheme getScheme() { + return new revertKeyRecordsTime_argsStandardScheme(); } } - private static class revertKeyRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeyRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -671931,13 +671253,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim case 2: // RECORDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list7014 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list7014.size); - long _elem7015; - for (int _i7016 = 0; _i7016 < _list7014.size; ++_i7016) + org.apache.thrift.protocol.TList _list7006 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list7006.size); + long _elem7007; + for (int _i7008 = 0; _i7008 < _list7006.size; ++_i7008) { - _elem7015 = iprot.readI64(); - struct.records.add(_elem7015); + _elem7007 = iprot.readI64(); + struct.records.add(_elem7007); } iprot.readListEnd(); } @@ -671947,8 +671269,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -671992,7 +671314,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -672005,19 +671327,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTi oprot.writeFieldBegin(RECORDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter7017 : struct.records) + for (long _iter7009 : struct.records) { - oprot.writeI64(_iter7017); + oprot.writeI64(_iter7009); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -672039,17 +671359,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTi } - private static class revertKeyRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordsTimestr_argsTupleScheme getScheme() { - return new revertKeyRecordsTimestr_argsTupleScheme(); + public revertKeyRecordsTime_argsTupleScheme getScheme() { + return new revertKeyRecordsTime_argsTupleScheme(); } } - private static class revertKeyRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeyRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -672077,14 +671397,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTim if (struct.isSetRecords()) { { oprot.writeI32(struct.records.size()); - for (long _iter7018 : struct.records) + for (long _iter7010 : struct.records) { - oprot.writeI64(_iter7018); + oprot.writeI64(_iter7010); } } } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -672098,7 +671418,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTim } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -672107,19 +671427,19 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list7019 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list7019.size); - long _elem7020; - for (int _i7021 = 0; _i7021 < _list7019.size; ++_i7021) + org.apache.thrift.protocol.TList _list7011 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list7011.size); + long _elem7012; + for (int _i7013 = 0; _i7013 < _list7011.size; ++_i7013) { - _elem7020 = iprot.readI64(); - struct.records.add(_elem7020); + _elem7012 = iprot.readI64(); + struct.records.add(_elem7012); } } struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -672144,28 +671464,25 @@ private static S scheme(org.apache. } } - public static class revertKeyRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordsTimestr_result"); + public static class revertKeyRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordsTime_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordsTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -672187,8 +671504,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -672240,33 +671555,29 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordsTime_result.class, metaDataMap); } - public revertKeyRecordsTimestr_result() { + public revertKeyRecordsTime_result() { } - public revertKeyRecordsTimestr_result( + public revertKeyRecordsTime_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public revertKeyRecordsTimestr_result(revertKeyRecordsTimestr_result other) { + public revertKeyRecordsTime_result(revertKeyRecordsTime_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -672274,16 +671585,13 @@ public revertKeyRecordsTimestr_result(revertKeyRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public revertKeyRecordsTimestr_result deepCopy() { - return new revertKeyRecordsTimestr_result(this); + public revertKeyRecordsTime_result deepCopy() { + return new revertKeyRecordsTime_result(this); } @Override @@ -672291,7 +671599,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -672299,7 +671606,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public revertKeyRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public revertKeyRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -672324,7 +671631,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public revertKeyRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public revertKeyRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -672345,11 +671652,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public revertKeyRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public revertKeyRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -672369,31 +671676,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public revertKeyRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -672417,15 +671699,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -672445,9 +671719,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -672466,20 +671737,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeyRecordsTimestr_result) - return this.equals((revertKeyRecordsTimestr_result)that); + if (that instanceof revertKeyRecordsTime_result) + return this.equals((revertKeyRecordsTime_result)that); return false; } - public boolean equals(revertKeyRecordsTimestr_result that) { + public boolean equals(revertKeyRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -672512,15 +671781,6 @@ public boolean equals(revertKeyRecordsTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -672540,15 +671800,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(revertKeyRecordsTimestr_result other) { + public int compareTo(revertKeyRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -672585,16 +671841,6 @@ public int compareTo(revertKeyRecordsTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -672615,7 +671861,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordsTime_result("); boolean first = true; sb.append("ex:"); @@ -672641,14 +671887,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -672674,17 +671912,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeyRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordsTimestr_resultStandardScheme getScheme() { - return new revertKeyRecordsTimestr_resultStandardScheme(); + public revertKeyRecordsTime_resultStandardScheme getScheme() { + return new revertKeyRecordsTime_resultStandardScheme(); } } - private static class revertKeyRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeyRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -672714,22 +671952,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -672742,7 +671971,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTim } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -672761,28 +671990,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTi struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class revertKeyRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordsTimestr_resultTupleScheme getScheme() { - return new revertKeyRecordsTimestr_resultTupleScheme(); + public revertKeyRecordsTime_resultTupleScheme getScheme() { + return new revertKeyRecordsTime_resultTupleScheme(); } } - private static class revertKeyRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeyRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -672794,10 +672018,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTim if (struct.isSetEx3()) { optionals.set(2); } - if (struct.isSetEx4()) { - optionals.set(3); - } - oprot.writeBitSet(optionals, 4); + oprot.writeBitSet(optionals, 3); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -672807,15 +672028,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTim if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); @@ -672827,15 +672045,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTime struct.setEx2IsSet(true); } if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(3)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -672844,22 +672057,22 @@ private static S scheme(org.apache. } } - public static class revertKeyRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordTime_args"); + public static class revertKeyRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordsTimestr_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordsTimestr_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public long record; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -672867,7 +672080,7 @@ public static class revertKeyRecordTime_args implements org.apache.thrift.TBase< /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { KEY((short)1, "key"), - RECORD((short)2, "record"), + RECORDS((short)2, "records"), TIMESTAMP((short)3, "timestamp"), CREDS((short)4, "creds"), TRANSACTION((short)5, "transaction"), @@ -672889,8 +672102,8 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEY return KEY; - case 2: // RECORD - return RECORD; + case 2: // RECORDS + return RECORDS; case 3: // TIMESTAMP return TIMESTAMP; case 4: // CREDS @@ -672942,18 +672155,16 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -672961,26 +672172,24 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordsTimestr_args.class, metaDataMap); } - public revertKeyRecordTime_args() { + public revertKeyRecordsTimestr_args() { } - public revertKeyRecordTime_args( + public revertKeyRecordsTimestr_args( java.lang.String key, - long record, - long timestamp, + java.util.List records, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.key = key; - this.record = record; - setRecordIsSet(true); + this.records = records; this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -672989,13 +672198,17 @@ public revertKeyRecordTime_args( /** * Performs a deep copy on other. */ - public revertKeyRecordTime_args(revertKeyRecordTime_args other) { - __isset_bitfield = other.__isset_bitfield; + public revertKeyRecordsTimestr_args(revertKeyRecordsTimestr_args other) { if (other.isSetKey()) { this.key = other.key; } - this.record = other.record; - this.timestamp = other.timestamp; + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -673008,17 +672221,15 @@ public revertKeyRecordTime_args(revertKeyRecordTime_args other) { } @Override - public revertKeyRecordTime_args deepCopy() { - return new revertKeyRecordTime_args(this); + public revertKeyRecordsTimestr_args deepCopy() { + return new revertKeyRecordsTimestr_args(this); } @Override public void clear() { this.key = null; - setRecordIsSet(false); - this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; + this.records = null; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; @@ -673029,7 +672240,7 @@ public java.lang.String getKey() { return this.key; } - public revertKeyRecordTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public revertKeyRecordsTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -673049,50 +672260,70 @@ public void setKeyIsSet(boolean value) { } } - public long getRecord() { - return this.record; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - public revertKeyRecordTime_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public revertKeyRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public revertKeyRecordTime_args setTimestamp(long timestamp) { + public revertKeyRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -673100,7 +672331,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public revertKeyRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public revertKeyRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -673125,7 +672356,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public revertKeyRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public revertKeyRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -673150,7 +672381,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public revertKeyRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public revertKeyRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -673181,11 +672412,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; @@ -673193,7 +672424,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -673231,8 +672462,8 @@ public java.lang.Object getFieldValue(_Fields field) { case KEY: return getKey(); - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); case TIMESTAMP: return getTimestamp(); @@ -673260,8 +672491,8 @@ public boolean isSet(_Fields field) { switch (field) { case KEY: return isSetKey(); - case RECORD: - return isSetRecord(); + case RECORDS: + return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); case CREDS: @@ -673276,12 +672507,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeyRecordTime_args) - return this.equals((revertKeyRecordTime_args)that); + if (that instanceof revertKeyRecordsTimestr_args) + return this.equals((revertKeyRecordsTimestr_args)that); return false; } - public boolean equals(revertKeyRecordTime_args that) { + public boolean equals(revertKeyRecordsTimestr_args that) { if (that == null) return false; if (this == that) @@ -673296,21 +672527,21 @@ public boolean equals(revertKeyRecordTime_args that) { return false; } - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -673352,9 +672583,13 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -673372,7 +672607,7 @@ public int hashCode() { } @Override - public int compareTo(revertKeyRecordTime_args other) { + public int compareTo(revertKeyRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -673389,12 +672624,12 @@ public int compareTo(revertKeyRecordTime_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -673460,7 +672695,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordsTimestr_args("); boolean first = true; sb.append("key:"); @@ -673471,12 +672706,20 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("record:"); - sb.append(this.record); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -673527,25 +672770,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 revertKeyRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordTime_argsStandardScheme getScheme() { - return new revertKeyRecordTime_argsStandardScheme(); + public revertKeyRecordsTimestr_argsStandardScheme getScheme() { + return new revertKeyRecordsTimestr_argsStandardScheme(); } } - private static class revertKeyRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeyRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -673563,17 +672804,27 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 2: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list7014 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list7014.size); + long _elem7015; + for (int _i7016 = 0; _i7016 < _list7014.size; ++_i7016) + { + _elem7015 = iprot.readI64(); + struct.records.add(_elem7015); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -673617,7 +672868,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -673626,12 +672877,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTim oprot.writeString(struct.key); oprot.writeFieldEnd(); } - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter7017 : struct.records) + { + oprot.writeI64(_iter7017); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -673653,23 +672915,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTim } - private static class revertKeyRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordTime_argsTupleScheme getScheme() { - return new revertKeyRecordTime_argsTupleScheme(); + public revertKeyRecordsTimestr_argsTupleScheme getScheme() { + return new revertKeyRecordsTimestr_argsTupleScheme(); } } - private static class revertKeyRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeyRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(1); } if (struct.isSetTimestamp()) { @@ -673688,11 +672950,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime if (struct.isSetKey()) { oprot.writeString(struct.key); } - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter7018 : struct.records) + { + oprot.writeI64(_iter7018); + } + } } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -673706,7 +672974,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -673714,11 +672982,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_ struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list7019 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list7019.size); + long _elem7020; + for (int _i7021 = 0; _i7021 < _list7019.size; ++_i7021) + { + _elem7020 = iprot.readI64(); + struct.records.add(_elem7020); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -673743,25 +673020,28 @@ private static S scheme(org.apache. } } - public static class revertKeyRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordTime_result"); + public static class revertKeyRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordsTimestr_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordsTimestr_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -673783,6 +673063,8 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -673834,29 +673116,33 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordsTimestr_result.class, metaDataMap); } - public revertKeyRecordTime_result() { + public revertKeyRecordsTimestr_result() { } - public revertKeyRecordTime_result( + public revertKeyRecordsTimestr_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public revertKeyRecordTime_result(revertKeyRecordTime_result other) { + public revertKeyRecordsTimestr_result(revertKeyRecordsTimestr_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -673864,13 +673150,16 @@ public revertKeyRecordTime_result(revertKeyRecordTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public revertKeyRecordTime_result deepCopy() { - return new revertKeyRecordTime_result(this); + public revertKeyRecordsTimestr_result deepCopy() { + return new revertKeyRecordsTimestr_result(this); } @Override @@ -673878,6 +673167,7 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -673885,7 +673175,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public revertKeyRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public revertKeyRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -673910,7 +673200,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public revertKeyRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public revertKeyRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -673931,11 +673221,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public revertKeyRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public revertKeyRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -673955,6 +673245,31 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public revertKeyRecordsTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -673978,7 +673293,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -673998,6 +673321,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -674016,18 +673342,20 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeyRecordTime_result) - return this.equals((revertKeyRecordTime_result)that); + if (that instanceof revertKeyRecordsTimestr_result) + return this.equals((revertKeyRecordsTimestr_result)that); return false; } - public boolean equals(revertKeyRecordTime_result that) { + public boolean equals(revertKeyRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -674060,6 +673388,15 @@ public boolean equals(revertKeyRecordTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -674079,11 +673416,15 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(revertKeyRecordTime_result other) { + public int compareTo(revertKeyRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -674120,6 +673461,16 @@ public int compareTo(revertKeyRecordTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -674140,7 +673491,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordsTimestr_result("); boolean first = true; sb.append("ex:"); @@ -674166,6 +673517,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -674191,17 +673550,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeyRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordTime_resultStandardScheme getScheme() { - return new revertKeyRecordTime_resultStandardScheme(); + public revertKeyRecordsTimestr_resultStandardScheme getScheme() { + return new revertKeyRecordsTimestr_resultStandardScheme(); } } - private static class revertKeyRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeyRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -674231,13 +673590,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -674250,7 +673618,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -674269,23 +673637,28 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTim struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class revertKeyRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordTime_resultTupleScheme getScheme() { - return new revertKeyRecordTime_resultTupleScheme(); + public revertKeyRecordsTimestr_resultTupleScheme getScheme() { + return new revertKeyRecordsTimestr_resultTupleScheme(); } } - private static class revertKeyRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeyRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -674297,7 +673670,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime if (struct.isSetEx3()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetEx4()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -674307,12 +673683,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); @@ -674324,10 +673703,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_ struct.setEx2IsSet(true); } if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(3)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -674336,22 +673720,22 @@ private static S scheme(org.apache. } } - public static class revertKeyRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordTimestr_args"); + public static class revertKeyRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordTime_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordTime_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -674435,6 +673819,7 @@ public java.lang.String getFieldName() { // isset id assignments private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { @@ -674444,7 +673829,7 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -674452,16 +673837,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordTime_args.class, metaDataMap); } - public revertKeyRecordTimestr_args() { + public revertKeyRecordTime_args() { } - public revertKeyRecordTimestr_args( + public revertKeyRecordTime_args( java.lang.String key, long record, - java.lang.String timestamp, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -674471,6 +673856,7 @@ public revertKeyRecordTimestr_args( this.record = record; setRecordIsSet(true); this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -674479,15 +673865,13 @@ public revertKeyRecordTimestr_args( /** * Performs a deep copy on other. */ - public revertKeyRecordTimestr_args(revertKeyRecordTimestr_args other) { + public revertKeyRecordTime_args(revertKeyRecordTime_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; - } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -674500,8 +673884,8 @@ public revertKeyRecordTimestr_args(revertKeyRecordTimestr_args other) { } @Override - public revertKeyRecordTimestr_args deepCopy() { - return new revertKeyRecordTimestr_args(this); + public revertKeyRecordTime_args deepCopy() { + return new revertKeyRecordTime_args(this); } @Override @@ -674509,7 +673893,8 @@ public void clear() { this.key = null; setRecordIsSet(false); this.record = 0; - this.timestamp = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -674520,7 +673905,7 @@ public java.lang.String getKey() { return this.key; } - public revertKeyRecordTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public revertKeyRecordTime_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -674544,7 +673929,7 @@ public long getRecord() { return this.record; } - public revertKeyRecordTimestr_args setRecord(long record) { + public revertKeyRecordTime_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -674563,29 +673948,27 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { + public long getTimestamp() { return this.timestamp; } - public revertKeyRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + public revertKeyRecordTime_args setTimestamp(long timestamp) { this.timestamp = timestamp; + setTimestampIsSet(true); return this; } public void unsetTimestamp() { - this.timestamp = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return this.timestamp != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimestampIsSet(boolean value) { - if (!value) { - this.timestamp = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -674593,7 +673976,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public revertKeyRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public revertKeyRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -674618,7 +674001,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public revertKeyRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public revertKeyRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -674643,7 +674026,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public revertKeyRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public revertKeyRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -674686,7 +674069,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.String)value); + setTimestamp((java.lang.Long)value); } break; @@ -674769,12 +674152,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeyRecordTimestr_args) - return this.equals((revertKeyRecordTimestr_args)that); + if (that instanceof revertKeyRecordTime_args) + return this.equals((revertKeyRecordTime_args)that); return false; } - public boolean equals(revertKeyRecordTimestr_args that) { + public boolean equals(revertKeyRecordTime_args that) { if (that == null) return false; if (this == that) @@ -674798,12 +674181,12 @@ public boolean equals(revertKeyRecordTimestr_args that) { return false; } - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (this.timestamp != that.timestamp) return false; } @@ -674847,9 +674230,7 @@ public int hashCode() { hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -674867,7 +674248,7 @@ public int hashCode() { } @Override - public int compareTo(revertKeyRecordTimestr_args other) { + public int compareTo(revertKeyRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -674955,7 +674336,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordTime_args("); boolean first = true; sb.append("key:"); @@ -674971,11 +674352,7 @@ public java.lang.String toString() { first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - if (this.timestamp == null) { - sb.append("null"); - } else { - sb.append(this.timestamp); - } + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -675034,17 +674411,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeyRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordTimestr_argsStandardScheme getScheme() { - return new revertKeyRecordTimestr_argsStandardScheme(); + public revertKeyRecordTime_argsStandardScheme getScheme() { + return new revertKeyRecordTime_argsStandardScheme(); } } - private static class revertKeyRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeyRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -675071,8 +674448,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime } break; case 3: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -675116,7 +674493,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -675128,11 +674505,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTim oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); - oprot.writeFieldEnd(); - } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -675154,17 +674529,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTim } - private static class revertKeyRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordTimestr_argsTupleScheme getScheme() { - return new revertKeyRecordTimestr_argsTupleScheme(); + public revertKeyRecordTime_argsTupleScheme getScheme() { + return new revertKeyRecordTime_argsTupleScheme(); } } - private static class revertKeyRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeyRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -675193,7 +674568,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime oprot.writeI64(struct.record); } if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -675207,7 +674582,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { @@ -675219,7 +674594,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimes struct.setRecordIsSet(true); } if (incoming.get(2)) { - struct.timestamp = iprot.readString(); + struct.timestamp = iprot.readI64(); struct.setTimestampIsSet(true); } if (incoming.get(3)) { @@ -675244,28 +674619,25 @@ private static S scheme(org.apache. } } - public static class revertKeyRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordTimestr_result"); + public static class revertKeyRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordTime_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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordTime_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -675287,8 +674659,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -675340,33 +674710,29 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordTime_result.class, metaDataMap); } - public revertKeyRecordTimestr_result() { + public revertKeyRecordTime_result() { } - public revertKeyRecordTimestr_result( + public revertKeyRecordTime_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public revertKeyRecordTimestr_result(revertKeyRecordTimestr_result other) { + public revertKeyRecordTime_result(revertKeyRecordTime_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -675374,16 +674740,13 @@ public revertKeyRecordTimestr_result(revertKeyRecordTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public revertKeyRecordTimestr_result deepCopy() { - return new revertKeyRecordTimestr_result(this); + public revertKeyRecordTime_result deepCopy() { + return new revertKeyRecordTime_result(this); } @Override @@ -675391,7 +674754,6 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -675399,7 +674761,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public revertKeyRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public revertKeyRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -675424,7 +674786,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public revertKeyRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public revertKeyRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -675445,11 +674807,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public revertKeyRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public revertKeyRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -675469,31 +674831,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public revertKeyRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -675517,15 +674854,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -675545,9 +674874,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -675566,20 +674892,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof revertKeyRecordTimestr_result) - return this.equals((revertKeyRecordTimestr_result)that); + if (that instanceof revertKeyRecordTime_result) + return this.equals((revertKeyRecordTime_result)that); return false; } - public boolean equals(revertKeyRecordTimestr_result that) { + public boolean equals(revertKeyRecordTime_result that) { if (that == null) return false; if (this == that) @@ -675612,15 +674936,6 @@ public boolean equals(revertKeyRecordTimestr_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -675640,15 +674955,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(revertKeyRecordTimestr_result other) { + public int compareTo(revertKeyRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -675685,16 +674996,6 @@ public int compareTo(revertKeyRecordTimestr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -675715,7 +675016,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordTime_result("); boolean first = true; sb.append("ex:"); @@ -675741,14 +675042,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -675774,17 +675067,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class revertKeyRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordTimestr_resultStandardScheme getScheme() { - return new revertKeyRecordTimestr_resultStandardScheme(); + public revertKeyRecordTime_resultStandardScheme getScheme() { + return new revertKeyRecordTime_resultStandardScheme(); } } - private static class revertKeyRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeyRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -675814,22 +675107,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -675842,7 +675126,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTime } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -675861,28 +675145,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTim struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class revertKeyRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public revertKeyRecordTimestr_resultTupleScheme getScheme() { - return new revertKeyRecordTimestr_resultTupleScheme(); + public revertKeyRecordTime_resultTupleScheme getScheme() { + return new revertKeyRecordTime_resultTupleScheme(); } } - private static class revertKeyRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeyRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetEx()) { @@ -675894,10 +675173,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime if (struct.isSetEx3()) { optionals.set(2); } - if (struct.isSetEx4()) { - optionals.set(3); - } - oprot.writeBitSet(optionals, 4); + oprot.writeBitSet(optionals, 3); if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -675907,15 +675183,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); @@ -675927,15 +675200,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimes struct.setEx2IsSet(true); } if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(3)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -675944,28 +675212,34 @@ private static S scheme(org.apache. } } - public static class holdsRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("holdsRecords_args"); + public static class revertKeyRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordTimestr_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new holdsRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new holdsRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordTimestr_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + KEY((short)1, "key"), + RECORD((short)2, "record"), + TIMESTAMP((short)3, "timestamp"), + CREDS((short)4, "creds"), + TRANSACTION((short)5, "transaction"), + ENVIRONMENT((short)6, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -675981,13 +675255,17 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; - case 2: // CREDS + case 1: // KEY + return KEY; + case 2: // RECORD + return RECORD; + case 3: // TIMESTAMP + return TIMESTAMP; + case 4: // CREDS return CREDS; - case 3: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -676032,12 +675310,17 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -676045,20 +675328,25 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(holdsRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordTimestr_args.class, metaDataMap); } - public holdsRecords_args() { + public revertKeyRecordTimestr_args() { } - public holdsRecords_args( - java.util.List records, + public revertKeyRecordTimestr_args( + java.lang.String key, + long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; + this.key = key; + this.record = record; + setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -676067,10 +675355,14 @@ public holdsRecords_args( /** * Performs a deep copy on other. */ - public holdsRecords_args(holdsRecords_args other) { - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + public revertKeyRecordTimestr_args(revertKeyRecordTimestr_args other) { + __isset_bitfield = other.__isset_bitfield; + if (other.isSetKey()) { + this.key = other.key; + } + this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -676084,56 +675376,91 @@ public holdsRecords_args(holdsRecords_args other) { } @Override - public holdsRecords_args deepCopy() { - return new holdsRecords_args(this); + public revertKeyRecordTimestr_args deepCopy() { + return new revertKeyRecordTimestr_args(this); } @Override public void clear() { - this.records = null; + this.key = null; + setRecordIsSet(false); + this.record = 0; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + @org.apache.thrift.annotation.Nullable + public java.lang.String getKey() { + return this.key; } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + public revertKeyRecordTimestr_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; + return this; } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); + public void unsetKey() { + this.key = null; + } + + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; + } + + public void setKeyIsSet(boolean value) { + if (!value) { + this.key = null; } - this.records.add(elem); + } + + public long getRecord() { + return this.record; + } + + public revertKeyRecordTimestr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public java.lang.String getTimestamp() { + return this.timestamp; } - public holdsRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public revertKeyRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; return this; } - public void unsetRecords() { - this.records = null; + public void unsetTimestamp() { + this.timestamp = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; } - public void setRecordsIsSet(boolean value) { + public void setTimestampIsSet(boolean value) { if (!value) { - this.records = null; + this.timestamp = null; } } @@ -676142,7 +675469,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public holdsRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public revertKeyRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -676167,7 +675494,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public holdsRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public revertKeyRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -676192,7 +675519,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public holdsRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public revertKeyRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -676215,11 +675542,27 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case KEY: if (value == null) { - unsetRecords(); + unsetKey(); } else { - setRecords((java.util.List)value); + setKey((java.lang.String)value); + } + break; + + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); } break; @@ -676254,8 +675597,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); + case KEY: + return getKey(); + + case RECORD: + return getRecord(); + + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -676278,8 +675627,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); + case KEY: + return isSetKey(); + case RECORD: + return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -676292,23 +675645,41 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof holdsRecords_args) - return this.equals((holdsRecords_args)that); + if (that instanceof revertKeyRecordTimestr_args) + return this.equals((revertKeyRecordTimestr_args)that); return false; } - public boolean equals(holdsRecords_args that) { + public boolean equals(revertKeyRecordTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) return false; - if (!this.records.equals(that.records)) + if (!this.key.equals(that.key)) + return false; + } + + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -676346,9 +675717,15 @@ public boolean equals(holdsRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); + + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -676366,19 +675743,39 @@ public int hashCode() { } @Override - public int compareTo(holdsRecords_args other) { + public int compareTo(revertKeyRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -676434,14 +675831,26 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("holdsRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordTimestr_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { + sb.append("key:"); + if (this.key == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.key); + } + first = false; + if (!first) sb.append(", "); + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); } first = false; if (!first) sb.append(", "); @@ -676493,23 +675902,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 holdsRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public holdsRecords_argsStandardScheme getScheme() { - return new holdsRecords_argsStandardScheme(); + public revertKeyRecordTimestr_argsStandardScheme getScheme() { + return new revertKeyRecordTimestr_argsStandardScheme(); } } - private static class holdsRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeyRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -676519,25 +675930,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_args s break; } switch (schemeField.id) { - case 1: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list7022 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list7022.size); - long _elem7023; - for (int _i7024 = 0; _i7024 < _list7022.size; ++_i7024) - { - _elem7023 = iprot.readI64(); - struct.records.add(_elem7023); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 1: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 2: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -676546,7 +675963,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -676555,7 +675972,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_args s org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -676575,20 +675992,21 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter7025 : struct.records) - { - oprot.writeI64(_iter7025); - } - oprot.writeListEnd(); - } + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); + oprot.writeFieldEnd(); + } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -676612,40 +676030,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecords_args } - private static class holdsRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public holdsRecords_argsTupleScheme getScheme() { - return new holdsRecords_argsTupleScheme(); + public revertKeyRecordTimestr_argsTupleScheme getScheme() { + return new revertKeyRecordTimestr_argsTupleScheme(); } } - private static class holdsRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeyRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetRecord()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetTimestamp()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter7026 : struct.records) - { - oprot.writeI64(_iter7026); - } - } + if (struct.isSetTransaction()) { + optionals.set(4); + } + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetKey()) { + oprot.writeString(struct.key); + } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -676659,33 +676083,32 @@ public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecords_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, holdsRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list7027 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list7027.size); - long _elem7028; - for (int _i7029 = 0; _i7029 < _list7027.size; ++_i7029) - { - _elem7028 = iprot.readI64(); - struct.records.add(_elem7028); - } - } - struct.setRecordsIsSet(true); + struct.key = iprot.readString(); + struct.setKeyIsSet(true); } if (incoming.get(1)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(2)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -676697,28 +676120,28 @@ private static S scheme(org.apache. } } - public static class holdsRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("holdsRecords_result"); + public static class revertKeyRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("revertKeyRecordTimestr_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new holdsRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new holdsRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new revertKeyRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new revertKeyRecordTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -676734,14 +676157,14 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // EX return EX; case 2: // EX2 return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; default: return null; } @@ -676788,44 +676211,38 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(holdsRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(revertKeyRecordTimestr_result.class, metaDataMap); } - public holdsRecords_result() { + public revertKeyRecordTimestr_result() { } - public holdsRecords_result( - java.util.Map success, + public revertKeyRecordTimestr_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); - this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public holdsRecords_result(holdsRecords_result other) { - if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.LinkedHashMap(other.success); - this.success = __this__success; - } + public revertKeyRecordTimestr_result(revertKeyRecordTimestr_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -676833,57 +676250,24 @@ public holdsRecords_result(holdsRecords_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public holdsRecords_result deepCopy() { - return new holdsRecords_result(this); + public revertKeyRecordTimestr_result deepCopy() { + return new revertKeyRecordTimestr_result(this); } @Override public void clear() { - this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; - } - - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - public void putToSuccess(long key, boolean val) { - if (this.success == null) { - this.success = new java.util.LinkedHashMap(); - } - this.success.put(key, val); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { - return this.success; - } - - public holdsRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map 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; - } + this.ex4 = null; } @org.apache.thrift.annotation.Nullable @@ -676891,7 +676275,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public holdsRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public revertKeyRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -676916,7 +676300,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public holdsRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public revertKeyRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -676937,11 +676321,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public holdsRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public revertKeyRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -676961,17 +676345,34 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public revertKeyRecordTimestr_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.util.Map)value); - } - break; - case EX: if (value == null) { unsetEx(); @@ -676992,7 +676393,15 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -677003,9 +676412,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return getSuccess(); - case EX: return getEx(); @@ -677015,6 +676421,9 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + } throw new java.lang.IllegalStateException(); } @@ -677027,40 +676436,31 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case EX: return isSetEx(); case EX2: return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof holdsRecords_result) - return this.equals((holdsRecords_result)that); + if (that instanceof revertKeyRecordTimestr_result) + return this.equals((revertKeyRecordTimestr_result)that); return false; } - public boolean equals(holdsRecords_result that) { + public boolean equals(revertKeyRecordTimestr_result that) { if (that == null) return false; if (this == that) return true; - 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_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -677088,6 +676488,15 @@ public boolean equals(holdsRecords_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + return true; } @@ -677095,10 +676504,6 @@ public boolean equals(holdsRecords_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -677111,27 +676516,21 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + return hashCode; } @Override - public int compareTo(holdsRecords_result other) { + public int compareTo(revertKeyRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -677162,6 +676561,16 @@ public int compareTo(holdsRecords_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -677182,17 +676591,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("holdsRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("revertKeyRecordTimestr_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("ex:"); if (this.ex == null) { sb.append("null"); @@ -677216,6 +676617,14 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; sb.append(")"); return sb.toString(); } @@ -677241,17 +676650,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class holdsRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public holdsRecords_resultStandardScheme getScheme() { - return new holdsRecords_resultStandardScheme(); + public revertKeyRecordTimestr_resultStandardScheme getScheme() { + return new revertKeyRecordTimestr_resultStandardScheme(); } } - private static class holdsRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class revertKeyRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, revertKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -677261,26 +676670,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_result break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { - { - org.apache.thrift.protocol.TMap _map7030 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap(2*_map7030.size); - long _key7031; - boolean _val7032; - for (int _i7033 = 0; _i7033 < _map7030.size; ++_i7033) - { - _key7031 = iprot.readI64(); - _val7032 = iprot.readBool(); - struct.success.put(_key7031, _val7032); - } - iprot.readMapEnd(); - } - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -677301,13 +676690,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -677320,23 +676718,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, revertKeyRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); - for (java.util.Map.Entry _iter7034 : struct.success.entrySet()) - { - oprot.writeI64(_iter7034.getKey()); - oprot.writeBool(_iter7034.getValue()); - } - oprot.writeMapEnd(); - } - oprot.writeFieldEnd(); - } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -677352,48 +676737,43 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecords_resul struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class holdsRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class revertKeyRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public holdsRecords_resultTupleScheme getScheme() { - return new holdsRecords_resultTupleScheme(); + public revertKeyRecordTimestr_resultTupleScheme getScheme() { + return new revertKeyRecordTimestr_resultTupleScheme(); } } - private static class holdsRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class revertKeyRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { + if (struct.isSetEx()) { optionals.set(0); } - if (struct.isSetEx()) { + if (struct.isSetEx2()) { optionals.set(1); } - if (struct.isSetEx2()) { + if (struct.isSetEx3()) { optionals.set(2); } - if (struct.isSetEx3()) { + if (struct.isSetEx4()) { optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter7035 : struct.success.entrySet()) - { - oprot.writeI64(_iter7035.getKey()); - oprot.writeBool(_iter7035.getValue()); - } - } - } if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -677403,42 +676783,35 @@ public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecords_result if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, holdsRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, revertKeyRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TMap _map7036 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL); - struct.success = new java.util.LinkedHashMap(2*_map7036.size); - long _key7037; - boolean _val7038; - for (int _i7039 = 0; _i7039 < _map7036.size; ++_i7039) - { - _key7037 = iprot.readI64(); - _val7038 = iprot.readBool(); - struct.success.put(_key7037, _val7038); - } - } - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(1)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + if (incoming.get(2)) { + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(3)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } } } @@ -677447,25 +676820,25 @@ private static S scheme(org.apache. } } - public static class holdsRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("holdsRecord_args"); + public static class holdsRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("holdsRecords_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new holdsRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new holdsRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new holdsRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new holdsRecords_argsTupleSchemeFactory(); - public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), + RECORDS((short)1, "records"), CREDS((short)2, "creds"), TRANSACTION((short)3, "transaction"), ENVIRONMENT((short)4, "environment"); @@ -677484,8 +676857,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; + case 1: // RECORDS + return RECORDS; case 2: // CREDS return CREDS; case 3: // TRANSACTION @@ -677535,13 +676908,12 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -677549,21 +676921,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(holdsRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(holdsRecords_args.class, metaDataMap); } - public holdsRecord_args() { + public holdsRecords_args() { } - public holdsRecord_args( - long record, + public holdsRecords_args( + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); + this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -677572,9 +676943,11 @@ public holdsRecord_args( /** * Performs a deep copy on other. */ - public holdsRecord_args(holdsRecord_args other) { - __isset_bitfield = other.__isset_bitfield; - this.record = other.record; + public holdsRecords_args(holdsRecords_args other) { + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -677587,40 +676960,57 @@ public holdsRecord_args(holdsRecord_args other) { } @Override - public holdsRecord_args deepCopy() { - return new holdsRecord_args(this); + public holdsRecords_args deepCopy() { + return new holdsRecords_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; + this.records = null; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - public holdsRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public holdsRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } @org.apache.thrift.annotation.Nullable @@ -677628,7 +677018,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public holdsRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public holdsRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -677653,7 +677043,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public holdsRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public holdsRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -677678,7 +677068,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public holdsRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public holdsRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -677701,11 +677091,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; @@ -677740,8 +677130,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); case CREDS: return getCreds(); @@ -677764,8 +677154,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -677778,23 +677168,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof holdsRecord_args) - return this.equals((holdsRecord_args)that); + if (that instanceof holdsRecords_args) + return this.equals((holdsRecords_args)that); return false; } - public boolean equals(holdsRecord_args that) { + public boolean equals(holdsRecords_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } @@ -677832,7 +677222,9 @@ public boolean equals(holdsRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -677850,19 +677242,19 @@ public int hashCode() { } @Override - public int compareTo(holdsRecord_args other) { + public int compareTo(holdsRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -677918,11 +677310,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("holdsRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("holdsRecords_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -677973,25 +677369,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 holdsRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class holdsRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public holdsRecord_argsStandardScheme getScheme() { - return new holdsRecord_argsStandardScheme(); + public holdsRecords_argsStandardScheme getScheme() { + return new holdsRecords_argsStandardScheme(); } } - private static class holdsRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class holdsRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -678001,10 +677395,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecord_args st break; } switch (schemeField.id) { - case 1: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list7022 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list7022.size); + long _elem7023; + for (int _i7024 = 0; _i7024 < _list7022.size; ++_i7024) + { + _elem7023 = iprot.readI64(); + struct.records.add(_elem7023); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -678047,13 +677451,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecord_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter7025 : struct.records) + { + oprot.writeI64(_iter7025); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -678075,20 +677488,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecord_args s } - private static class holdsRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class holdsRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public holdsRecord_argsTupleScheme getScheme() { - return new holdsRecord_argsTupleScheme(); + public holdsRecords_argsTupleScheme getScheme() { + return new holdsRecords_argsTupleScheme(); } } - private static class holdsRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class holdsRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(0); } if (struct.isSetCreds()) { @@ -678101,8 +677514,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecord_args st optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter7026 : struct.records) + { + oprot.writeI64(_iter7026); + } + } } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -678116,12 +677535,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecord_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, holdsRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, holdsRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list7027 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list7027.size); + long _elem7028; + for (int _i7029 = 0; _i7029 < _list7027.size; ++_i7029) + { + _elem7028 = iprot.readI64(); + struct.records.add(_elem7028); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -678145,18 +677573,18 @@ private static S scheme(org.apache. } } - public static class holdsRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("holdsRecord_result"); + public static class holdsRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("holdsRecords_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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new holdsRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new holdsRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new holdsRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new holdsRecords_resultTupleSchemeFactory(); - public boolean success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -678233,13 +677661,13 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -678247,21 +677675,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(holdsRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(holdsRecords_result.class, metaDataMap); } - public holdsRecord_result() { + public holdsRecords_result() { } - public holdsRecord_result( - boolean success, + public holdsRecords_result( + java.util.Map success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -678270,9 +677697,11 @@ public holdsRecord_result( /** * Performs a deep copy on other. */ - public holdsRecord_result(holdsRecord_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public holdsRecords_result(holdsRecords_result other) { + if (other.isSetSuccess()) { + java.util.Map __this__success = new java.util.LinkedHashMap(other.success); + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -678285,40 +677714,52 @@ public holdsRecord_result(holdsRecord_result other) { } @Override - public holdsRecord_result deepCopy() { - return new holdsRecord_result(this); + public holdsRecords_result deepCopy() { + return new holdsRecords_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; } - public boolean isSuccess() { + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(long key, boolean val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap(); + } + this.success.put(key, val); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Map getSuccess() { return this.success; } - public holdsRecord_result setSuccess(boolean success) { + public holdsRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; - setSuccessIsSet(true); return this; } public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + this.success = null; } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + return this.success != null; } public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + if (!value) { + this.success = null; + } } @org.apache.thrift.annotation.Nullable @@ -678326,7 +677767,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public holdsRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public holdsRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -678351,7 +677792,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public holdsRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public holdsRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -678376,7 +677817,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public holdsRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public holdsRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -678403,7 +677844,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.Boolean)value); + setSuccess((java.util.Map)value); } break; @@ -678439,7 +677880,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return isSuccess(); + return getSuccess(); case EX: return getEx(); @@ -678476,23 +677917,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof holdsRecord_result) - return this.equals((holdsRecord_result)that); + if (that instanceof holdsRecords_result) + return this.equals((holdsRecords_result)that); return false; } - public boolean equals(holdsRecord_result that) { + public boolean equals(holdsRecords_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; + 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 != that.success) + if (!this.success.equals(that.success)) return false; } @@ -678530,7 +677971,9 @@ public boolean equals(holdsRecord_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -678548,7 +677991,7 @@ public int hashCode() { } @Override - public int compareTo(holdsRecord_result other) { + public int compareTo(holdsRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -678615,11 +678058,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("holdsRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("holdsRecords_result("); boolean first = true; sb.append("success:"); - sb.append(this.success); + if (this.success == null) { + sb.append("null"); + } else { + sb.append(this.success); + } first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -678664,25 +678111,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 holdsRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class holdsRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public holdsRecord_resultStandardScheme getScheme() { - return new holdsRecord_resultStandardScheme(); + public holdsRecords_resultStandardScheme getScheme() { + return new holdsRecords_resultStandardScheme(); } } - private static class holdsRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class holdsRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -678693,8 +678138,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecord_result } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map7030 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap(2*_map7030.size); + long _key7031; + boolean _val7032; + for (int _i7033 = 0; _i7033 < _map7030.size; ++_i7033) + { + _key7031 = iprot.readI64(); + _val7032 = iprot.readBool(); + struct.success.put(_key7031, _val7032); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -678739,13 +678196,21 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecord_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { + if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); + for (java.util.Map.Entry _iter7034 : struct.success.entrySet()) + { + oprot.writeI64(_iter7034.getKey()); + oprot.writeBool(_iter7034.getValue()); + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -678769,17 +678234,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecord_result } - private static class holdsRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class holdsRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public holdsRecord_resultTupleScheme getScheme() { - return new holdsRecord_resultTupleScheme(); + public holdsRecords_resultTupleScheme getScheme() { + return new holdsRecords_resultTupleScheme(); } } - private static class holdsRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class holdsRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -678796,7 +678261,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecord_result } oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry _iter7035 : struct.success.entrySet()) + { + oprot.writeI64(_iter7035.getKey()); + oprot.writeBool(_iter7035.getValue()); + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -678810,11 +678282,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecord_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, holdsRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, holdsRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.success = iprot.readBool(); + { + org.apache.thrift.protocol.TMap _map7036 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.BOOL); + struct.success = new java.util.LinkedHashMap(2*_map7036.size); + long _key7037; + boolean _val7038; + for (int _i7039 = 0; _i7039 < _map7036.size; ++_i7039) + { + _key7037 = iprot.readI64(); + _val7038 = iprot.readBool(); + struct.success.put(_key7037, _val7038); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -678840,37 +678323,28 @@ private static S scheme(org.apache. } } - public static class verifyAndSwap_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyAndSwap_args"); + public static class holdsRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("holdsRecord_args"); - private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField EXPECTED_FIELD_DESC = new org.apache.thrift.protocol.TField("expected", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField REPLACEMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("replacement", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyAndSwap_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyAndSwap_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new holdsRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new holdsRecord_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject expected; // required public long record; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject replacement; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - KEY((short)1, "key"), - EXPECTED((short)2, "expected"), - RECORD((short)3, "record"), - REPLACEMENT((short)4, "replacement"), - CREDS((short)5, "creds"), - TRANSACTION((short)6, "transaction"), - ENVIRONMENT((short)7, "environment"); + RECORD((short)1, "record"), + CREDS((short)2, "creds"), + TRANSACTION((short)3, "transaction"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -678886,19 +678360,13 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // KEY - return KEY; - case 2: // EXPECTED - return EXPECTED; - case 3: // RECORD + case 1: // RECORD return RECORD; - case 4: // REPLACEMENT - return REPLACEMENT; - case 5: // CREDS + case 2: // CREDS return CREDS; - case 6: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 7: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -678948,14 +678416,8 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.EXPECTED, new org.apache.thrift.meta_data.FieldMetaData("expected", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.REPLACEMENT, new org.apache.thrift.meta_data.FieldMetaData("replacement", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -678963,27 +678425,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyAndSwap_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(holdsRecord_args.class, metaDataMap); } - public verifyAndSwap_args() { + public holdsRecord_args() { } - public verifyAndSwap_args( - java.lang.String key, - com.cinchapi.concourse.thrift.TObject expected, + public holdsRecord_args( long record, - com.cinchapi.concourse.thrift.TObject replacement, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.key = key; - this.expected = expected; this.record = record; setRecordIsSet(true); - this.replacement = replacement; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -678992,18 +678448,9 @@ public verifyAndSwap_args( /** * Performs a deep copy on other. */ - public verifyAndSwap_args(verifyAndSwap_args other) { + public holdsRecord_args(holdsRecord_args other) { __isset_bitfield = other.__isset_bitfield; - if (other.isSetKey()) { - this.key = other.key; - } - if (other.isSetExpected()) { - this.expected = new com.cinchapi.concourse.thrift.TObject(other.expected); - } this.record = other.record; - if (other.isSetReplacement()) { - this.replacement = new com.cinchapi.concourse.thrift.TObject(other.replacement); - } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -679016,77 +678463,24 @@ public verifyAndSwap_args(verifyAndSwap_args other) { } @Override - public verifyAndSwap_args deepCopy() { - return new verifyAndSwap_args(this); + public holdsRecord_args deepCopy() { + return new holdsRecord_args(this); } @Override public void clear() { - this.key = null; - this.expected = null; setRecordIsSet(false); this.record = 0; - this.replacement = null; this.creds = null; this.transaction = null; this.environment = null; } - @org.apache.thrift.annotation.Nullable - public java.lang.String getKey() { - return this.key; - } - - public verifyAndSwap_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { - this.key = key; - return this; - } - - public void unsetKey() { - this.key = null; - } - - /** Returns true if field key is set (has been assigned a value) and false otherwise */ - public boolean isSetKey() { - return this.key != null; - } - - public void setKeyIsSet(boolean value) { - if (!value) { - this.key = null; - } - } - - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TObject getExpected() { - return this.expected; - } - - public verifyAndSwap_args setExpected(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject expected) { - this.expected = expected; - return this; - } - - public void unsetExpected() { - this.expected = null; - } - - /** Returns true if field expected is set (has been assigned a value) and false otherwise */ - public boolean isSetExpected() { - return this.expected != null; - } - - public void setExpectedIsSet(boolean value) { - if (!value) { - this.expected = null; - } - } - public long getRecord() { return this.record; } - public verifyAndSwap_args setRecord(long record) { + public holdsRecord_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -679105,37 +678499,12 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TObject getReplacement() { - return this.replacement; - } - - public verifyAndSwap_args setReplacement(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject replacement) { - this.replacement = replacement; - return this; - } - - public void unsetReplacement() { - this.replacement = null; - } - - /** Returns true if field replacement is set (has been assigned a value) and false otherwise */ - public boolean isSetReplacement() { - return this.replacement != null; - } - - public void setReplacementIsSet(boolean value) { - if (!value) { - this.replacement = null; - } - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public verifyAndSwap_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public holdsRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -679160,7 +678529,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public verifyAndSwap_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public holdsRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -679185,7 +678554,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public verifyAndSwap_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public holdsRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -679208,22 +678577,6 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case KEY: - if (value == null) { - unsetKey(); - } else { - setKey((java.lang.String)value); - } - break; - - case EXPECTED: - if (value == null) { - unsetExpected(); - } else { - setExpected((com.cinchapi.concourse.thrift.TObject)value); - } - break; - case RECORD: if (value == null) { unsetRecord(); @@ -679232,14 +678585,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case REPLACEMENT: - if (value == null) { - unsetReplacement(); - } else { - setReplacement((com.cinchapi.concourse.thrift.TObject)value); - } - break; - case CREDS: if (value == null) { unsetCreds(); @@ -679271,18 +678616,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case KEY: - return getKey(); - - case EXPECTED: - return getExpected(); - case RECORD: return getRecord(); - case REPLACEMENT: - return getReplacement(); - case CREDS: return getCreds(); @@ -679304,14 +678640,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case KEY: - return isSetKey(); - case EXPECTED: - return isSetExpected(); case RECORD: return isSetRecord(); - case REPLACEMENT: - return isSetReplacement(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -679324,35 +678654,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyAndSwap_args) - return this.equals((verifyAndSwap_args)that); + if (that instanceof holdsRecord_args) + return this.equals((holdsRecord_args)that); return false; } - public boolean equals(verifyAndSwap_args that) { + public boolean equals(holdsRecord_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_key = true && this.isSetKey(); - boolean that_present_key = true && that.isSetKey(); - if (this_present_key || that_present_key) { - if (!(this_present_key && that_present_key)) - return false; - if (!this.key.equals(that.key)) - return false; - } - - boolean this_present_expected = true && this.isSetExpected(); - boolean that_present_expected = true && that.isSetExpected(); - if (this_present_expected || that_present_expected) { - if (!(this_present_expected && that_present_expected)) - return false; - if (!this.expected.equals(that.expected)) - return false; - } - boolean this_present_record = true; boolean that_present_record = true; if (this_present_record || that_present_record) { @@ -679362,15 +678674,6 @@ public boolean equals(verifyAndSwap_args that) { return false; } - boolean this_present_replacement = true && this.isSetReplacement(); - boolean that_present_replacement = true && that.isSetReplacement(); - if (this_present_replacement || that_present_replacement) { - if (!(this_present_replacement && that_present_replacement)) - return false; - if (!this.replacement.equals(that.replacement)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -679405,20 +678708,8 @@ public boolean equals(verifyAndSwap_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); - if (isSetKey()) - hashCode = hashCode * 8191 + key.hashCode(); - - hashCode = hashCode * 8191 + ((isSetExpected()) ? 131071 : 524287); - if (isSetExpected()) - hashCode = hashCode * 8191 + expected.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - hashCode = hashCode * 8191 + ((isSetReplacement()) ? 131071 : 524287); - if (isSetReplacement()) - hashCode = hashCode * 8191 + replacement.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -679435,33 +678726,13 @@ public int hashCode() { } @Override - public int compareTo(verifyAndSwap_args other) { + public int compareTo(holdsRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetKey()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetExpected(), other.isSetExpected()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetExpected()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.expected, other.expected); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); if (lastComparison != 0) { return lastComparison; @@ -679472,16 +678743,6 @@ public int compareTo(verifyAndSwap_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetReplacement(), other.isSetReplacement()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetReplacement()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.replacement, other.replacement); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -679533,37 +678794,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyAndSwap_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("holdsRecord_args("); boolean first = true; - sb.append("key:"); - if (this.key == null) { - sb.append("null"); - } else { - sb.append(this.key); - } - first = false; - if (!first) sb.append(", "); - sb.append("expected:"); - if (this.expected == null) { - sb.append("null"); - } else { - sb.append(this.expected); - } - first = false; - if (!first) sb.append(", "); sb.append("record:"); sb.append(this.record); first = false; if (!first) sb.append(", "); - sb.append("replacement:"); - if (this.replacement == null) { - sb.append("null"); - } else { - sb.append(this.replacement); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -679594,12 +678831,6 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (expected != null) { - expected.validate(); - } - if (replacement != null) { - replacement.validate(); - } if (creds != null) { creds.validate(); } @@ -679626,17 +678857,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class verifyAndSwap_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class holdsRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyAndSwap_argsStandardScheme getScheme() { - return new verifyAndSwap_argsStandardScheme(); + public holdsRecord_argsStandardScheme getScheme() { + return new holdsRecord_argsStandardScheme(); } } - private static class verifyAndSwap_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class holdsRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -679646,24 +678877,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_args break; } switch (schemeField.id) { - case 1: // KEY - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // EXPECTED - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.expected = new com.cinchapi.concourse.thrift.TObject(); - struct.expected.read(iprot); - struct.setExpectedIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // RECORD + case 1: // RECORD if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); @@ -679671,16 +678885,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // REPLACEMENT - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.replacement = new com.cinchapi.concourse.thrift.TObject(); - struct.replacement.read(iprot); - struct.setReplacementIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 5: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -679689,7 +678894,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -679698,7 +678903,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_args org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 7: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -679718,28 +678923,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_args } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyAndSwap_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.key != null) { - oprot.writeFieldBegin(KEY_FIELD_DESC); - oprot.writeString(struct.key); - oprot.writeFieldEnd(); - } - if (struct.expected != null) { - oprot.writeFieldBegin(EXPECTED_FIELD_DESC); - struct.expected.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); - if (struct.replacement != null) { - oprot.writeFieldBegin(REPLACEMENT_FIELD_DESC); - struct.replacement.write(oprot); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -679761,53 +678951,35 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyAndSwap_args } - private static class verifyAndSwap_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class holdsRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyAndSwap_argsTupleScheme getScheme() { - return new verifyAndSwap_argsTupleScheme(); + public holdsRecord_argsTupleScheme getScheme() { + return new holdsRecord_argsTupleScheme(); } } - private static class verifyAndSwap_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class holdsRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetKey()) { - optionals.set(0); - } - if (struct.isSetExpected()) { - optionals.set(1); - } if (struct.isSetRecord()) { - optionals.set(2); - } - if (struct.isSetReplacement()) { - optionals.set(3); + optionals.set(0); } if (struct.isSetCreds()) { - optionals.set(4); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(5); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(6); - } - oprot.writeBitSet(optionals, 7); - if (struct.isSetKey()) { - oprot.writeString(struct.key); - } - if (struct.isSetExpected()) { - struct.expected.write(oprot); + optionals.set(3); } + oprot.writeBitSet(optionals, 4); if (struct.isSetRecord()) { oprot.writeI64(struct.record); } - if (struct.isSetReplacement()) { - struct.replacement.write(oprot); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -679820,38 +678992,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, holdsRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(7); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.key = iprot.readString(); - struct.setKeyIsSet(true); - } - if (incoming.get(1)) { - struct.expected = new com.cinchapi.concourse.thrift.TObject(); - struct.expected.read(iprot); - struct.setExpectedIsSet(true); - } - if (incoming.get(2)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } - if (incoming.get(3)) { - struct.replacement = new com.cinchapi.concourse.thrift.TObject(); - struct.replacement.read(iprot); - struct.setReplacementIsSet(true); - } - if (incoming.get(4)) { + if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(6)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -679863,16 +679021,16 @@ private static S scheme(org.apache. } } - public static class verifyAndSwap_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyAndSwap_result"); + public static class holdsRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("holdsRecord_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyAndSwap_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyAndSwap_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new holdsRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new holdsRecord_resultTupleSchemeFactory(); public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required @@ -679965,13 +679123,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyAndSwap_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(holdsRecord_result.class, metaDataMap); } - public verifyAndSwap_result() { + public holdsRecord_result() { } - public verifyAndSwap_result( + public holdsRecord_result( boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, @@ -679988,7 +679146,7 @@ public verifyAndSwap_result( /** * Performs a deep copy on other. */ - public verifyAndSwap_result(verifyAndSwap_result other) { + public holdsRecord_result(holdsRecord_result other) { __isset_bitfield = other.__isset_bitfield; this.success = other.success; if (other.isSetEx()) { @@ -680003,8 +679161,8 @@ public verifyAndSwap_result(verifyAndSwap_result other) { } @Override - public verifyAndSwap_result deepCopy() { - return new verifyAndSwap_result(this); + public holdsRecord_result deepCopy() { + return new holdsRecord_result(this); } @Override @@ -680020,7 +679178,7 @@ public boolean isSuccess() { return this.success; } - public verifyAndSwap_result setSuccess(boolean success) { + public holdsRecord_result setSuccess(boolean success) { this.success = success; setSuccessIsSet(true); return this; @@ -680044,7 +679202,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public verifyAndSwap_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public holdsRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -680069,7 +679227,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public verifyAndSwap_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public holdsRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -680094,7 +679252,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public verifyAndSwap_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public holdsRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -680194,12 +679352,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyAndSwap_result) - return this.equals((verifyAndSwap_result)that); + if (that instanceof holdsRecord_result) + return this.equals((holdsRecord_result)that); return false; } - public boolean equals(verifyAndSwap_result that) { + public boolean equals(holdsRecord_result that) { if (that == null) return false; if (this == that) @@ -680266,7 +679424,7 @@ public int hashCode() { } @Override - public int compareTo(verifyAndSwap_result other) { + public int compareTo(holdsRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -680333,7 +679491,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyAndSwap_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("holdsRecord_result("); boolean first = true; sb.append("success:"); @@ -680390,17 +679548,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class verifyAndSwap_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class holdsRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyAndSwap_resultStandardScheme getScheme() { - return new verifyAndSwap_resultStandardScheme(); + public holdsRecord_resultStandardScheme getScheme() { + return new holdsRecord_resultStandardScheme(); } } - private static class verifyAndSwap_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class holdsRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, holdsRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -680457,7 +679615,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_resul } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyAndSwap_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, holdsRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -680487,17 +679645,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyAndSwap_resu } - private static class verifyAndSwap_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class holdsRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyAndSwap_resultTupleScheme getScheme() { - return new verifyAndSwap_resultTupleScheme(); + public holdsRecord_resultTupleScheme getScheme() { + return new holdsRecord_resultTupleScheme(); } } - private static class verifyAndSwap_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class holdsRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, holdsRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -680528,7 +679686,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, holdsRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { @@ -680558,22 +679716,24 @@ private static S scheme(org.apache. } } - public static class verifyOrSet_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyOrSet_args"); + public static class verifyAndSwap_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyAndSwap_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField EXPECTED_FIELD_DESC = new org.apache.thrift.protocol.TField("expected", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField REPLACEMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("replacement", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)6); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)7); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyOrSet_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyOrSet_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyAndSwap_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyAndSwap_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject expected; // required public long record; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject replacement; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -680581,11 +679741,12 @@ public static class verifyOrSet_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -680603,15 +679764,17 @@ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // KEY return KEY; - case 2: // VALUE - return VALUE; + case 2: // EXPECTED + return EXPECTED; case 3: // RECORD return RECORD; - case 4: // CREDS + case 4: // REPLACEMENT + return REPLACEMENT; + case 5: // CREDS return CREDS; - case 5: // TRANSACTION + case 6: // TRANSACTION return TRANSACTION; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -680663,10 +679826,12 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.EXPECTED, new org.apache.thrift.meta_data.FieldMetaData("expected", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.REPLACEMENT, new org.apache.thrift.meta_data.FieldMetaData("replacement", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -680674,25 +679839,27 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyOrSet_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyAndSwap_args.class, metaDataMap); } - public verifyOrSet_args() { + public verifyAndSwap_args() { } - public verifyOrSet_args( + public verifyAndSwap_args( java.lang.String key, - com.cinchapi.concourse.thrift.TObject value, + com.cinchapi.concourse.thrift.TObject expected, long record, + com.cinchapi.concourse.thrift.TObject replacement, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); this.key = key; - this.value = value; + this.expected = expected; this.record = record; setRecordIsSet(true); + this.replacement = replacement; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -680701,15 +679868,18 @@ public verifyOrSet_args( /** * Performs a deep copy on other. */ - public verifyOrSet_args(verifyOrSet_args other) { + public verifyAndSwap_args(verifyAndSwap_args other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } - if (other.isSetValue()) { - this.value = new com.cinchapi.concourse.thrift.TObject(other.value); + if (other.isSetExpected()) { + this.expected = new com.cinchapi.concourse.thrift.TObject(other.expected); } this.record = other.record; + if (other.isSetReplacement()) { + this.replacement = new com.cinchapi.concourse.thrift.TObject(other.replacement); + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -680722,16 +679892,17 @@ public verifyOrSet_args(verifyOrSet_args other) { } @Override - public verifyOrSet_args deepCopy() { - return new verifyOrSet_args(this); + public verifyAndSwap_args deepCopy() { + return new verifyAndSwap_args(this); } @Override public void clear() { this.key = null; - this.value = null; + this.expected = null; setRecordIsSet(false); this.record = 0; + this.replacement = null; this.creds = null; this.transaction = null; this.environment = null; @@ -680742,7 +679913,7 @@ public java.lang.String getKey() { return this.key; } - public verifyOrSet_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public verifyAndSwap_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -680763,27 +679934,27 @@ public void setKeyIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TObject getValue() { - return this.value; + public com.cinchapi.concourse.thrift.TObject getExpected() { + return this.expected; } - public verifyOrSet_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { - this.value = value; + public verifyAndSwap_args setExpected(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject expected) { + this.expected = expected; return this; } - public void unsetValue() { - this.value = null; + public void unsetExpected() { + this.expected = null; } - /** Returns true if field value is set (has been assigned a value) and false otherwise */ - public boolean isSetValue() { - return this.value != null; + /** Returns true if field expected is set (has been assigned a value) and false otherwise */ + public boolean isSetExpected() { + return this.expected != null; } - public void setValueIsSet(boolean value) { + public void setExpectedIsSet(boolean value) { if (!value) { - this.value = null; + this.expected = null; } } @@ -680791,7 +679962,7 @@ public long getRecord() { return this.record; } - public verifyOrSet_args setRecord(long record) { + public verifyAndSwap_args setRecord(long record) { this.record = record; setRecordIsSet(true); return this; @@ -680810,12 +679981,37 @@ public void setRecordIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TObject getReplacement() { + return this.replacement; + } + + public verifyAndSwap_args setReplacement(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject replacement) { + this.replacement = replacement; + return this; + } + + public void unsetReplacement() { + this.replacement = null; + } + + /** Returns true if field replacement is set (has been assigned a value) and false otherwise */ + public boolean isSetReplacement() { + return this.replacement != null; + } + + public void setReplacementIsSet(boolean value) { + if (!value) { + this.replacement = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public verifyOrSet_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public verifyAndSwap_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -680840,7 +680036,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public verifyOrSet_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public verifyAndSwap_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -680865,7 +680061,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public verifyOrSet_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public verifyAndSwap_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -680896,11 +680092,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case VALUE: + case EXPECTED: if (value == null) { - unsetValue(); + unsetExpected(); } else { - setValue((com.cinchapi.concourse.thrift.TObject)value); + setExpected((com.cinchapi.concourse.thrift.TObject)value); } break; @@ -680912,6 +680108,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case REPLACEMENT: + if (value == null) { + unsetReplacement(); + } else { + setReplacement((com.cinchapi.concourse.thrift.TObject)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -680946,12 +680150,15 @@ public java.lang.Object getFieldValue(_Fields field) { case KEY: return getKey(); - case VALUE: - return getValue(); + case EXPECTED: + return getExpected(); case RECORD: return getRecord(); + case REPLACEMENT: + return getReplacement(); + case CREDS: return getCreds(); @@ -680975,10 +680182,12 @@ public boolean isSet(_Fields field) { switch (field) { case KEY: return isSetKey(); - case VALUE: - return isSetValue(); + case EXPECTED: + return isSetExpected(); case RECORD: return isSetRecord(); + case REPLACEMENT: + return isSetReplacement(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -680991,12 +680200,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyOrSet_args) - return this.equals((verifyOrSet_args)that); + if (that instanceof verifyAndSwap_args) + return this.equals((verifyAndSwap_args)that); return false; } - public boolean equals(verifyOrSet_args that) { + public boolean equals(verifyAndSwap_args that) { if (that == null) return false; if (this == that) @@ -681011,12 +680220,12 @@ public boolean equals(verifyOrSet_args that) { return false; } - boolean this_present_value = true && this.isSetValue(); - boolean that_present_value = true && that.isSetValue(); - if (this_present_value || that_present_value) { - if (!(this_present_value && that_present_value)) + boolean this_present_expected = true && this.isSetExpected(); + boolean that_present_expected = true && that.isSetExpected(); + if (this_present_expected || that_present_expected) { + if (!(this_present_expected && that_present_expected)) return false; - if (!this.value.equals(that.value)) + if (!this.expected.equals(that.expected)) return false; } @@ -681029,6 +680238,15 @@ public boolean equals(verifyOrSet_args that) { return false; } + boolean this_present_replacement = true && this.isSetReplacement(); + boolean that_present_replacement = true && that.isSetReplacement(); + if (this_present_replacement || that_present_replacement) { + if (!(this_present_replacement && that_present_replacement)) + return false; + if (!this.replacement.equals(that.replacement)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -681067,12 +680285,16 @@ public int hashCode() { if (isSetKey()) hashCode = hashCode * 8191 + key.hashCode(); - hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); - if (isSetValue()) - hashCode = hashCode * 8191 + value.hashCode(); + hashCode = hashCode * 8191 + ((isSetExpected()) ? 131071 : 524287); + if (isSetExpected()) + hashCode = hashCode * 8191 + expected.hashCode(); hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetReplacement()) ? 131071 : 524287); + if (isSetReplacement()) + hashCode = hashCode * 8191 + replacement.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -681089,7 +680311,7 @@ public int hashCode() { } @Override - public int compareTo(verifyOrSet_args other) { + public int compareTo(verifyAndSwap_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -681106,12 +680328,12 @@ public int compareTo(verifyOrSet_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetExpected(), other.isSetExpected()); if (lastComparison != 0) { return lastComparison; } - if (isSetValue()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, other.value); + if (isSetExpected()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.expected, other.expected); if (lastComparison != 0) { return lastComparison; } @@ -681126,6 +680348,16 @@ public int compareTo(verifyOrSet_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetReplacement(), other.isSetReplacement()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetReplacement()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.replacement, other.replacement); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -681177,7 +680409,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyOrSet_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyAndSwap_args("); boolean first = true; sb.append("key:"); @@ -681188,11 +680420,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("value:"); - if (this.value == null) { + sb.append("expected:"); + if (this.expected == null) { sb.append("null"); } else { - sb.append(this.value); + sb.append(this.expected); } first = false; if (!first) sb.append(", "); @@ -681200,6 +680432,14 @@ public java.lang.String toString() { sb.append(this.record); first = false; if (!first) sb.append(", "); + sb.append("replacement:"); + if (this.replacement == null) { + sb.append("null"); + } else { + sb.append(this.replacement); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -681230,8 +680470,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (value != null) { - value.validate(); + if (expected != null) { + expected.validate(); + } + if (replacement != null) { + replacement.validate(); } if (creds != null) { creds.validate(); @@ -681259,17 +680502,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class verifyOrSet_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyAndSwap_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyOrSet_argsStandardScheme getScheme() { - return new verifyOrSet_argsStandardScheme(); + public verifyAndSwap_argsStandardScheme getScheme() { + return new verifyAndSwap_argsStandardScheme(); } } - private static class verifyOrSet_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyAndSwap_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -681287,11 +680530,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // VALUE + case 2: // EXPECTED if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.value = new com.cinchapi.concourse.thrift.TObject(); - struct.value.read(iprot); - struct.setValueIsSet(true); + struct.expected = new com.cinchapi.concourse.thrift.TObject(); + struct.expected.read(iprot); + struct.setExpectedIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -681304,7 +680547,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // CREDS + case 4: // REPLACEMENT + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.replacement = new com.cinchapi.concourse.thrift.TObject(); + struct.replacement.read(iprot); + struct.setReplacementIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -681313,7 +680565,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // TRANSACTION + case 6: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -681322,7 +680574,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 6: // ENVIRONMENT + case 7: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -681342,7 +680594,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyOrSet_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyAndSwap_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -681351,14 +680603,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyOrSet_args s oprot.writeString(struct.key); oprot.writeFieldEnd(); } - if (struct.value != null) { - oprot.writeFieldBegin(VALUE_FIELD_DESC); - struct.value.write(oprot); + if (struct.expected != null) { + oprot.writeFieldBegin(EXPECTED_FIELD_DESC); + struct.expected.write(oprot); oprot.writeFieldEnd(); } oprot.writeFieldBegin(RECORD_FIELD_DESC); oprot.writeI64(struct.record); oprot.writeFieldEnd(); + if (struct.replacement != null) { + oprot.writeFieldBegin(REPLACEMENT_FIELD_DESC); + struct.replacement.write(oprot); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -681380,47 +680637,53 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyOrSet_args s } - private static class verifyOrSet_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyAndSwap_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyOrSet_argsTupleScheme getScheme() { - return new verifyOrSet_argsTupleScheme(); + public verifyAndSwap_argsTupleScheme getScheme() { + return new verifyAndSwap_argsTupleScheme(); } } - private static class verifyOrSet_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyAndSwap_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { optionals.set(0); } - if (struct.isSetValue()) { + if (struct.isSetExpected()) { optionals.set(1); } if (struct.isSetRecord()) { optionals.set(2); } - if (struct.isSetCreds()) { + if (struct.isSetReplacement()) { optionals.set(3); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(4); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(5); } - oprot.writeBitSet(optionals, 6); + if (struct.isSetEnvironment()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetKey()) { oprot.writeString(struct.key); } - if (struct.isSetValue()) { - struct.value.write(oprot); + if (struct.isSetExpected()) { + struct.expected.write(oprot); } if (struct.isSetRecord()) { oprot.writeI64(struct.record); } + if (struct.isSetReplacement()) { + struct.replacement.write(oprot); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -681433,33 +680696,38 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); } if (incoming.get(1)) { - struct.value = new com.cinchapi.concourse.thrift.TObject(); - struct.value.read(iprot); - struct.setValueIsSet(true); + struct.expected = new com.cinchapi.concourse.thrift.TObject(); + struct.expected.read(iprot); + struct.setExpectedIsSet(true); } if (incoming.get(2)) { struct.record = iprot.readI64(); struct.setRecordIsSet(true); } if (incoming.get(3)) { + struct.replacement = new com.cinchapi.concourse.thrift.TObject(); + struct.replacement.read(iprot); + struct.setReplacementIsSet(true); + } + if (incoming.get(4)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(5)) { + if (incoming.get(6)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -681471,28 +680739,28 @@ private static S scheme(org.apache. } } - public static class verifyOrSet_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyOrSet_result"); + public static class verifyAndSwap_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyAndSwap_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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyOrSet_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyOrSet_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyAndSwap_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyAndSwap_resultTupleSchemeFactory(); + public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -681508,14 +680776,14 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // EX return EX; case 2: // EX2 return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -681559,41 +680827,46 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + 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.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyOrSet_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyAndSwap_result.class, metaDataMap); } - public verifyOrSet_result() { + public verifyAndSwap_result() { } - public verifyOrSet_result( + public verifyAndSwap_result( + boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.InvalidArgumentException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); + this.success = success; + setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public verifyOrSet_result(verifyOrSet_result other) { + public verifyAndSwap_result(verifyAndSwap_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -681601,24 +680874,45 @@ public verifyOrSet_result(verifyOrSet_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public verifyOrSet_result deepCopy() { - return new verifyOrSet_result(this); + public verifyAndSwap_result deepCopy() { + return new verifyAndSwap_result(this); } @Override public void clear() { + setSuccessIsSet(false); + this.success = false; this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; + } + + public boolean isSuccess() { + return this.success; + } + + public verifyAndSwap_result setSuccess(boolean success) { + this.success = success; + setSuccessIsSet(true); + return this; + } + + public void unsetSuccess() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + public void setSuccessIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -681626,7 +680920,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public verifyOrSet_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public verifyAndSwap_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -681651,7 +680945,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public verifyOrSet_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public verifyAndSwap_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -681672,11 +680966,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public verifyOrSet_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { + public verifyAndSwap_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -681696,34 +680990,17 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public verifyOrSet_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.Boolean)value); + } + break; + case EX: if (value == null) { unsetEx(); @@ -681744,15 +681021,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -681763,6 +681032,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return isSuccess(); + case EX: return getEx(); @@ -681772,9 +681044,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -681787,31 +681056,40 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case EX: return isSetEx(); case EX2: return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof verifyOrSet_result) - return this.equals((verifyOrSet_result)that); + if (that instanceof verifyAndSwap_result) + return this.equals((verifyAndSwap_result)that); return false; } - public boolean equals(verifyOrSet_result that) { + public boolean equals(verifyAndSwap_result that) { if (that == null) return false; if (this == that) return true; + boolean this_present_success = true; + boolean that_present_success = true; + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (this.success != that.success) + return false; + } + boolean this_present_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -681839,15 +681117,6 @@ public boolean equals(verifyOrSet_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -681855,6 +681124,8 @@ public boolean equals(verifyOrSet_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -681867,21 +681138,27 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(verifyOrSet_result other) { + public int compareTo(verifyAndSwap_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -681912,16 +681189,6 @@ public int compareTo(verifyOrSet_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -681942,9 +681209,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyOrSet_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyAndSwap_result("); boolean first = true; + sb.append("success:"); + sb.append(this.success); + first = false; + if (!first) sb.append(", "); sb.append("ex:"); if (this.ex == null) { sb.append("null"); @@ -681968,14 +681239,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -681995,23 +681258,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 verifyOrSet_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyAndSwap_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyOrSet_resultStandardScheme getScheme() { - return new verifyOrSet_resultStandardScheme(); + public verifyAndSwap_resultStandardScheme getScheme() { + return new verifyAndSwap_resultStandardScheme(); } } - private static class verifyOrSet_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyAndSwap_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyAndSwap_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -682021,6 +681286,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_result break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // EX if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); @@ -682041,22 +681314,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -682069,10 +681333,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, verifyOrSet_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyAndSwap_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.isSetSuccess()) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeBool(struct.success); + oprot.writeFieldEnd(); + } if (struct.ex != null) { oprot.writeFieldBegin(EX_FIELD_DESC); struct.ex.write(oprot); @@ -682088,43 +681357,41 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, verifyOrSet_result struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class verifyOrSet_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyAndSwap_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public verifyOrSet_resultTupleScheme getScheme() { - return new verifyOrSet_resultTupleScheme(); + public verifyAndSwap_resultTupleScheme getScheme() { + return new verifyAndSwap_resultTupleScheme(); } } - private static class verifyOrSet_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyAndSwap_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetEx()) { + if (struct.isSetSuccess()) { optionals.set(0); } - if (struct.isSetEx2()) { + if (struct.isSetEx()) { optionals.set(1); } - if (struct.isSetEx3()) { + if (struct.isSetEx2()) { optionals.set(2); } - if (struct.isSetEx4()) { + if (struct.isSetEx3()) { optionals.set(3); } oprot.writeBitSet(optionals, 4); + if (struct.isSetSuccess()) { + oprot.writeBool(struct.success); + } if (struct.isSetEx()) { struct.ex.write(oprot); } @@ -682134,35 +681401,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_result if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyAndSwap_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { + struct.success = iprot.readBool(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); struct.ex.read(iprot); struct.setExIsSet(true); } - if (incoming.get(1)) { + if (incoming.get(2)) { struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); struct.ex2.read(iprot); struct.setEx2IsSet(true); } - if (incoming.get(2)) { - struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + if (incoming.get(3)) { + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(3)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -682171,20 +681434,22 @@ private static S scheme(org.apache. } } - public static class findOrAddKeyValue_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrAddKeyValue_args"); + public static class verifyOrSet_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyOrSet_args"); private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)5); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)6); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrAddKeyValue_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrAddKeyValue_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyOrSet_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyOrSet_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.lang.String key; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // required @@ -682193,9 +681458,10 @@ public static class findOrAddKeyValue_args implements org.apache.thrift.TBase byName = new java.util.LinkedHashMap(); @@ -682215,11 +681481,13 @@ public static _Fields findByThriftId(int fieldId) { return KEY; case 2: // VALUE return VALUE; - case 3: // CREDS + case 3: // RECORD + return RECORD; + case 4: // CREDS return CREDS; - case 4: // TRANSACTION + case 5: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -682264,6 +681532,8 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -682271,6 +681541,8 @@ public java.lang.String getFieldName() { new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -682278,15 +681550,16 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrAddKeyValue_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyOrSet_args.class, metaDataMap); } - public findOrAddKeyValue_args() { + public verifyOrSet_args() { } - public findOrAddKeyValue_args( + public verifyOrSet_args( java.lang.String key, com.cinchapi.concourse.thrift.TObject value, + long record, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) @@ -682294,6 +681567,8 @@ public findOrAddKeyValue_args( this(); this.key = key; this.value = value; + this.record = record; + setRecordIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -682302,13 +681577,15 @@ public findOrAddKeyValue_args( /** * Performs a deep copy on other. */ - public findOrAddKeyValue_args(findOrAddKeyValue_args other) { + public verifyOrSet_args(verifyOrSet_args other) { + __isset_bitfield = other.__isset_bitfield; if (other.isSetKey()) { this.key = other.key; } if (other.isSetValue()) { this.value = new com.cinchapi.concourse.thrift.TObject(other.value); } + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -682321,14 +681598,16 @@ public findOrAddKeyValue_args(findOrAddKeyValue_args other) { } @Override - public findOrAddKeyValue_args deepCopy() { - return new findOrAddKeyValue_args(this); + public verifyOrSet_args deepCopy() { + return new verifyOrSet_args(this); } @Override public void clear() { this.key = null; this.value = null; + setRecordIsSet(false); + this.record = 0; this.creds = null; this.transaction = null; this.environment = null; @@ -682339,7 +681618,7 @@ public java.lang.String getKey() { return this.key; } - public findOrAddKeyValue_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + public verifyOrSet_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { this.key = key; return this; } @@ -682364,7 +681643,7 @@ public com.cinchapi.concourse.thrift.TObject getValue() { return this.value; } - public findOrAddKeyValue_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + public verifyOrSet_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { this.value = value; return this; } @@ -682384,12 +681663,35 @@ public void setValueIsSet(boolean value) { } } + public long getRecord() { + return this.record; + } + + public verifyOrSet_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findOrAddKeyValue_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public verifyOrSet_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -682414,7 +681716,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public findOrAddKeyValue_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public verifyOrSet_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -682439,7 +681741,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findOrAddKeyValue_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public verifyOrSet_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -682478,6 +681780,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -682515,6 +681825,9 @@ public java.lang.Object getFieldValue(_Fields field) { case VALUE: return getValue(); + case RECORD: + return getRecord(); + case CREDS: return getCreds(); @@ -682540,6 +681853,8 @@ public boolean isSet(_Fields field) { return isSetKey(); case VALUE: return isSetValue(); + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -682552,12 +681867,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findOrAddKeyValue_args) - return this.equals((findOrAddKeyValue_args)that); + if (that instanceof verifyOrSet_args) + return this.equals((verifyOrSet_args)that); return false; } - public boolean equals(findOrAddKeyValue_args that) { + public boolean equals(verifyOrSet_args that) { if (that == null) return false; if (this == that) @@ -682581,6 +681896,15 @@ public boolean equals(findOrAddKeyValue_args that) { return false; } + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -682623,6 +681947,8 @@ public int hashCode() { if (isSetValue()) hashCode = hashCode * 8191 + value.hashCode(); + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); @@ -682639,7 +681965,7 @@ public int hashCode() { } @Override - public int compareTo(findOrAddKeyValue_args other) { + public int compareTo(verifyOrSet_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -682666,6 +681992,16 @@ public int compareTo(findOrAddKeyValue_args other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -682717,7 +682053,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrAddKeyValue_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyOrSet_args("); boolean first = true; sb.append("key:"); @@ -682736,6 +682072,10 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -682787,23 +682127,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 findOrAddKeyValue_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyOrSet_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrAddKeyValue_argsStandardScheme getScheme() { - return new findOrAddKeyValue_argsStandardScheme(); + public verifyOrSet_argsStandardScheme getScheme() { + return new verifyOrSet_argsStandardScheme(); } } - private static class findOrAddKeyValue_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class verifyOrSet_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findOrAddKeyValue_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -682830,7 +682172,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrAddKeyValue_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 3: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -682839,7 +682189,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrAddKeyValue_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 5: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -682848,7 +682198,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrAddKeyValue_a org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 6: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -682868,7 +682218,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrAddKeyValue_a } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findOrAddKeyValue_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyOrSet_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -682882,6 +682232,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findOrAddKeyValue_ struct.value.write(oprot); oprot.writeFieldEnd(); } + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -682903,17 +682256,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findOrAddKeyValue_ } - private static class findOrAddKeyValue_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class verifyOrSet_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrAddKeyValue_argsTupleScheme getScheme() { - return new findOrAddKeyValue_argsTupleScheme(); + public verifyOrSet_argsTupleScheme getScheme() { + return new verifyOrSet_argsTupleScheme(); } } - private static class findOrAddKeyValue_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class verifyOrSet_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findOrAddKeyValue_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetKey()) { @@ -682922,22 +682275,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findOrAddKeyValue_a if (struct.isSetValue()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetRecord()) { optionals.set(2); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(3); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(4); } - oprot.writeBitSet(optionals, 5); + if (struct.isSetEnvironment()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetKey()) { oprot.writeString(struct.key); } if (struct.isSetValue()) { struct.value.write(oprot); } + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -682950,9 +682309,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findOrAddKeyValue_a } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findOrAddKeyValue_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.key = iprot.readString(); struct.setKeyIsSet(true); @@ -682963,16 +682322,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findOrAddKeyValue_ar struct.setValueIsSet(true); } if (incoming.get(2)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(3)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(5)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -682984,34 +682347,28 @@ private static S scheme(org.apache. } } - public static class findOrAddKeyValue_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrAddKeyValue_result"); + public static class verifyOrSet_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("verifyOrSet_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrAddKeyValue_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrAddKeyValue_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new verifyOrSet_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new verifyOrSet_resultTupleSchemeFactory(); - public long success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), EX3((short)3, "ex3"), - EX4((short)4, "ex4"), - EX5((short)5, "ex5"); + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -683027,8 +682384,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // EX return EX; case 2: // EX2 @@ -683037,8 +682392,6 @@ public static _Fields findByThriftId(int fieldId) { return EX3; case 4: // EX4 return EX4; - case 5: // EX5 - return EX5; default: return null; } @@ -683082,54 +682435,41 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - 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.I64))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.DuplicateEntryException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); - tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrAddKeyValue_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(verifyOrSet_result.class, metaDataMap); } - public findOrAddKeyValue_result() { + public verifyOrSet_result() { } - public findOrAddKeyValue_result( - long success, + public verifyOrSet_result( com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.DuplicateEntryException ex3, - com.cinchapi.concourse.thrift.InvalidArgumentException ex4, - com.cinchapi.concourse.thrift.PermissionException ex5) + com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); - this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; this.ex4 = ex4; - this.ex5 = ex5; } /** * Performs a deep copy on other. */ - public findOrAddKeyValue_result(findOrAddKeyValue_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public verifyOrSet_result(verifyOrSet_result other) { if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -683137,53 +682477,24 @@ public findOrAddKeyValue_result(findOrAddKeyValue_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.DuplicateEntryException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); } if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex4); - } - if (other.isSetEx5()) { - this.ex5 = new com.cinchapi.concourse.thrift.PermissionException(other.ex5); + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public findOrAddKeyValue_result deepCopy() { - return new findOrAddKeyValue_result(this); + public verifyOrSet_result deepCopy() { + return new verifyOrSet_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = 0; this.ex = null; this.ex2 = null; this.ex3 = null; this.ex4 = null; - this.ex5 = null; - } - - public long getSuccess() { - return this.success; - } - - public findOrAddKeyValue_result setSuccess(long success) { - this.success = success; - setSuccessIsSet(true); - return this; - } - - public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -683191,7 +682502,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findOrAddKeyValue_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public verifyOrSet_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -683216,7 +682527,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findOrAddKeyValue_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public verifyOrSet_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -683237,11 +682548,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.DuplicateEntryException getEx3() { + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public findOrAddKeyValue_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex3) { + public verifyOrSet_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -683262,11 +682573,11 @@ public void setEx3IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.InvalidArgumentException getEx4() { + public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findOrAddKeyValue_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4) { + public verifyOrSet_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -683286,42 +682597,9 @@ public void setEx4IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx5() { - return this.ex5; - } - - public findOrAddKeyValue_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { - this.ex5 = ex5; - return this; - } - - public void unsetEx5() { - this.ex5 = null; - } - - /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx5() { - return this.ex5 != null; - } - - public void setEx5IsSet(boolean value) { - if (!value) { - this.ex5 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.lang.Long)value); - } - break; - case EX: if (value == null) { unsetEx(); @@ -683342,7 +682620,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.DuplicateEntryException)value); + setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); } break; @@ -683350,15 +682628,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx4(); } else { - setEx4((com.cinchapi.concourse.thrift.InvalidArgumentException)value); - } - break; - - case EX5: - if (value == null) { - unsetEx5(); - } else { - setEx5((com.cinchapi.concourse.thrift.PermissionException)value); + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -683369,9 +682639,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return getSuccess(); - case EX: return getEx(); @@ -683384,9 +682651,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX4: return getEx4(); - case EX5: - return getEx5(); - } throw new java.lang.IllegalStateException(); } @@ -683399,8 +682663,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case EX: return isSetEx(); case EX2: @@ -683409,34 +682671,23 @@ public boolean isSet(_Fields field) { return isSetEx3(); case EX4: return isSetEx4(); - case EX5: - return isSetEx5(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof findOrAddKeyValue_result) - return this.equals((findOrAddKeyValue_result)that); + if (that instanceof verifyOrSet_result) + return this.equals((verifyOrSet_result)that); return false; } - public boolean equals(findOrAddKeyValue_result that) { + public boolean equals(verifyOrSet_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (this.success != that.success) - return false; - } - boolean this_present_ex = true && this.isSetEx(); boolean that_present_ex = true && that.isSetEx(); if (this_present_ex || that_present_ex) { @@ -683473,15 +682724,6 @@ public boolean equals(findOrAddKeyValue_result that) { return false; } - boolean this_present_ex5 = true && this.isSetEx5(); - boolean that_present_ex5 = true && that.isSetEx5(); - if (this_present_ex5 || that_present_ex5) { - if (!(this_present_ex5 && that_present_ex5)) - return false; - if (!this.ex5.equals(that.ex5)) - return false; - } - return true; } @@ -683489,8 +682731,6 @@ public boolean equals(findOrAddKeyValue_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); - hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) hashCode = hashCode * 8191 + ex.hashCode(); @@ -683507,31 +682747,1667 @@ public int hashCode() { if (isSetEx4()) hashCode = hashCode * 8191 + ex4.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); - if (isSetEx5()) - hashCode = hashCode * 8191 + ex5.hashCode(); - return hashCode; } @Override - public int compareTo(findOrAddKeyValue_result other) { + public int compareTo(verifyOrSet_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex, other.ex); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx2(), other.isSetEx2()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx2()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex2, other.ex2); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx3(), other.isSetEx3()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx3()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex3, other.ex3); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("verifyOrSet_result("); + boolean first = true; + + sb.append("ex:"); + if (this.ex == null) { + sb.append("null"); + } else { + sb.append(this.ex); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex2:"); + if (this.ex2 == null) { + sb.append("null"); + } else { + sb.append(this.ex2); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex3:"); + if (this.ex3 == null) { + sb.append("null"); + } else { + sb.append(this.ex3); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + 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, java.lang.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 verifyOrSet_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public verifyOrSet_resultStandardScheme getScheme() { + return new verifyOrSet_resultStandardScheme(); + } + } + + private static class verifyOrSet_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, verifyOrSet_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 com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // EX2 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // EX3 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, verifyOrSet_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(); + } + if (struct.ex2 != null) { + oprot.writeFieldBegin(EX2_FIELD_DESC); + struct.ex2.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex3 != null) { + oprot.writeFieldBegin(EX3_FIELD_DESC); + struct.ex3.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class verifyOrSet_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public verifyOrSet_resultTupleScheme getScheme() { + return new verifyOrSet_resultTupleScheme(); + } + } + + private static class verifyOrSet_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetEx()) { + optionals.set(0); + } + if (struct.isSetEx2()) { + optionals.set(1); + } + if (struct.isSetEx3()) { + optionals.set(2); + } + if (struct.isSetEx4()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); + if (struct.isSetEx()) { + struct.ex.write(oprot); + } + if (struct.isSetEx2()) { + struct.ex2.write(oprot); + } + if (struct.isSetEx3()) { + struct.ex3.write(oprot); + } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, verifyOrSet_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(4); + if (incoming.get(0)) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } + if (incoming.get(1)) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } + if (incoming.get(2)) { + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } + if (incoming.get(3)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class findOrAddKeyValue_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrAddKeyValue_args"); + + private static final org.apache.thrift.protocol.TField KEY_FIELD_DESC = new org.apache.thrift.protocol.TField("key", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("value", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrAddKeyValue_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrAddKeyValue_argsTupleSchemeFactory(); + + public @org.apache.thrift.annotation.Nullable java.lang.String key; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required + public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { + KEY((short)1, "key"), + VALUE((short)2, "value"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // KEY + return KEY; + case 2: // VALUE + return VALUE; + case 3: // CREDS + return CREDS; + case 4: // TRANSACTION + return TRANSACTION; + case 5: // ENVIRONMENT + return ENVIRONMENT; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.KEY, new org.apache.thrift.meta_data.FieldMetaData("key", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TObject.class))); + tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); + tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); + tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrAddKeyValue_args.class, metaDataMap); + } + + public findOrAddKeyValue_args() { + } + + public findOrAddKeyValue_args( + java.lang.String key, + com.cinchapi.concourse.thrift.TObject value, + com.cinchapi.concourse.thrift.AccessToken creds, + com.cinchapi.concourse.thrift.TransactionToken transaction, + java.lang.String environment) + { + this(); + this.key = key; + this.value = value; + this.creds = creds; + this.transaction = transaction; + this.environment = environment; + } + + /** + * Performs a deep copy on other. + */ + public findOrAddKeyValue_args(findOrAddKeyValue_args other) { + if (other.isSetKey()) { + this.key = other.key; + } + if (other.isSetValue()) { + this.value = new com.cinchapi.concourse.thrift.TObject(other.value); + } + if (other.isSetCreds()) { + this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); + } + if (other.isSetTransaction()) { + this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); + } + if (other.isSetEnvironment()) { + this.environment = other.environment; + } + } + + @Override + public findOrAddKeyValue_args deepCopy() { + return new findOrAddKeyValue_args(this); + } + + @Override + public void clear() { + this.key = null; + this.value = null; + this.creds = null; + this.transaction = null; + this.environment = null; + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getKey() { + return this.key; + } + + public findOrAddKeyValue_args setKey(@org.apache.thrift.annotation.Nullable java.lang.String key) { + this.key = key; + return this; + } + + public void unsetKey() { + this.key = null; + } + + /** Returns true if field key is set (has been assigned a value) and false otherwise */ + public boolean isSetKey() { + return this.key != null; + } + + public void setKeyIsSet(boolean value) { + if (!value) { + this.key = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TObject getValue() { + return this.value; + } + + public findOrAddKeyValue_args setValue(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TObject value) { + this.value = value; + return this; + } + + public void unsetValue() { + this.value = null; + } + + /** Returns true if field value is set (has been assigned a value) and false otherwise */ + public boolean isSetValue() { + return this.value != null; + } + + public void setValueIsSet(boolean value) { + if (!value) { + this.value = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.AccessToken getCreds() { + return this.creds; + } + + public findOrAddKeyValue_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + this.creds = creds; + return this; + } + + public void unsetCreds() { + this.creds = null; + } + + /** Returns true if field creds is set (has been assigned a value) and false otherwise */ + public boolean isSetCreds() { + return this.creds != null; + } + + public void setCredsIsSet(boolean value) { + if (!value) { + this.creds = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { + return this.transaction; + } + + public findOrAddKeyValue_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + this.transaction = transaction; + return this; + } + + public void unsetTransaction() { + this.transaction = null; + } + + /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ + public boolean isSetTransaction() { + return this.transaction != null; + } + + public void setTransactionIsSet(boolean value) { + if (!value) { + this.transaction = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getEnvironment() { + return this.environment; + } + + public findOrAddKeyValue_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + this.environment = environment; + return this; + } + + public void unsetEnvironment() { + this.environment = null; + } + + /** Returns true if field environment is set (has been assigned a value) and false otherwise */ + public boolean isSetEnvironment() { + return this.environment != null; + } + + public void setEnvironmentIsSet(boolean value) { + if (!value) { + this.environment = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case KEY: + if (value == null) { + unsetKey(); + } else { + setKey((java.lang.String)value); + } + break; + + case VALUE: + if (value == null) { + unsetValue(); + } else { + setValue((com.cinchapi.concourse.thrift.TObject)value); + } + break; + + case CREDS: + if (value == null) { + unsetCreds(); + } else { + setCreds((com.cinchapi.concourse.thrift.AccessToken)value); + } + break; + + case TRANSACTION: + if (value == null) { + unsetTransaction(); + } else { + setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); + } + break; + + case ENVIRONMENT: + if (value == null) { + unsetEnvironment(); + } else { + setEnvironment((java.lang.String)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case KEY: + return getKey(); + + case VALUE: + return getValue(); + + case CREDS: + return getCreds(); + + case TRANSACTION: + return getTransaction(); + + case ENVIRONMENT: + return getEnvironment(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case KEY: + return isSetKey(); + case VALUE: + return isSetValue(); + case CREDS: + return isSetCreds(); + case TRANSACTION: + return isSetTransaction(); + case ENVIRONMENT: + return isSetEnvironment(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof findOrAddKeyValue_args) + return this.equals((findOrAddKeyValue_args)that); + return false; + } + + public boolean equals(findOrAddKeyValue_args that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_key = true && this.isSetKey(); + boolean that_present_key = true && that.isSetKey(); + if (this_present_key || that_present_key) { + if (!(this_present_key && that_present_key)) + return false; + if (!this.key.equals(that.key)) + return false; + } + + boolean this_present_value = true && this.isSetValue(); + boolean that_present_value = true && that.isSetValue(); + if (this_present_value || that_present_value) { + if (!(this_present_value && that_present_value)) + return false; + if (!this.value.equals(that.value)) + return false; + } + + boolean this_present_creds = true && this.isSetCreds(); + boolean that_present_creds = true && that.isSetCreds(); + if (this_present_creds || that_present_creds) { + if (!(this_present_creds && that_present_creds)) + return false; + if (!this.creds.equals(that.creds)) + return false; + } + + boolean this_present_transaction = true && this.isSetTransaction(); + boolean that_present_transaction = true && that.isSetTransaction(); + if (this_present_transaction || that_present_transaction) { + if (!(this_present_transaction && that_present_transaction)) + return false; + if (!this.transaction.equals(that.transaction)) + return false; + } + + boolean this_present_environment = true && this.isSetEnvironment(); + boolean that_present_environment = true && that.isSetEnvironment(); + if (this_present_environment || that_present_environment) { + if (!(this_present_environment && that_present_environment)) + return false; + if (!this.environment.equals(that.environment)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetKey()) ? 131071 : 524287); + if (isSetKey()) + hashCode = hashCode * 8191 + key.hashCode(); + + hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); + if (isSetValue()) + hashCode = hashCode * 8191 + value.hashCode(); + + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); + if (isSetCreds()) + hashCode = hashCode * 8191 + creds.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); + if (isSetTransaction()) + hashCode = hashCode * 8191 + transaction.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); + if (isSetEnvironment()) + hashCode = hashCode * 8191 + environment.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(findOrAddKeyValue_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetKey()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.key, other.key); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetValue()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, other.value); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCreds()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.creds, other.creds); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTransaction()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEnvironment(), other.isSetEnvironment()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEnvironment()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.environment, other.environment); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrAddKeyValue_args("); + boolean first = true; + + sb.append("key:"); + if (this.key == null) { + sb.append("null"); + } else { + sb.append(this.key); + } + first = false; + if (!first) sb.append(", "); + sb.append("value:"); + if (this.value == null) { + sb.append("null"); + } else { + sb.append(this.value); + } + first = false; + if (!first) sb.append(", "); + sb.append("creds:"); + if (this.creds == null) { + sb.append("null"); + } else { + sb.append(this.creds); + } + first = false; + if (!first) sb.append(", "); + sb.append("transaction:"); + if (this.transaction == null) { + sb.append("null"); + } else { + sb.append(this.transaction); + } + first = false; + if (!first) sb.append(", "); + sb.append("environment:"); + if (this.environment == null) { + sb.append("null"); + } else { + sb.append(this.environment); + } + 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 (value != null) { + value.validate(); + } + if (creds != null) { + creds.validate(); + } + if (transaction != null) { + transaction.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, java.lang.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 findOrAddKeyValue_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrAddKeyValue_argsStandardScheme getScheme() { + return new findOrAddKeyValue_argsStandardScheme(); + } + } + + private static class findOrAddKeyValue_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, findOrAddKeyValue_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: // KEY + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // VALUE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.value = new com.cinchapi.concourse.thrift.TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // CREDS + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // TRANSACTION + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // ENVIRONMENT + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, findOrAddKeyValue_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.key != null) { + oprot.writeFieldBegin(KEY_FIELD_DESC); + oprot.writeString(struct.key); + oprot.writeFieldEnd(); + } + if (struct.value != null) { + oprot.writeFieldBegin(VALUE_FIELD_DESC); + struct.value.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.creds != null) { + oprot.writeFieldBegin(CREDS_FIELD_DESC); + struct.creds.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.transaction != null) { + oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); + struct.transaction.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.environment != null) { + oprot.writeFieldBegin(ENVIRONMENT_FIELD_DESC); + oprot.writeString(struct.environment); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class findOrAddKeyValue_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrAddKeyValue_argsTupleScheme getScheme() { + return new findOrAddKeyValue_argsTupleScheme(); + } + } + + private static class findOrAddKeyValue_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, findOrAddKeyValue_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetKey()) { + optionals.set(0); + } + if (struct.isSetValue()) { + optionals.set(1); + } + if (struct.isSetCreds()) { + optionals.set(2); + } + if (struct.isSetTransaction()) { + optionals.set(3); + } + if (struct.isSetEnvironment()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetKey()) { + oprot.writeString(struct.key); + } + if (struct.isSetValue()) { + struct.value.write(oprot); + } + if (struct.isSetCreds()) { + struct.creds.write(oprot); + } + if (struct.isSetTransaction()) { + struct.transaction.write(oprot); + } + if (struct.isSetEnvironment()) { + oprot.writeString(struct.environment); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, findOrAddKeyValue_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(5); + if (incoming.get(0)) { + struct.key = iprot.readString(); + struct.setKeyIsSet(true); + } + if (incoming.get(1)) { + struct.value = new com.cinchapi.concourse.thrift.TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); + } + if (incoming.get(2)) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } + if (incoming.get(3)) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } + if (incoming.get(4)) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class findOrAddKeyValue_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrAddKeyValue_result"); + + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); + 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrAddKeyValue_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrAddKeyValue_resultTupleSchemeFactory(); + + public long success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5; // 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"), + EX((short)1, "ex"), + EX2((short)2, "ex2"), + EX3((short)3, "ex3"), + EX4((short)4, "ex4"), + EX5((short)5, "ex5"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; + case 1: // EX + return EX; + case 2: // EX2 + return EX2; + case 3: // EX3 + return EX3; + case 4: // EX4 + return EX4; + case 5: // EX5 + return EX5; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + 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.I64))); + tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); + tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); + tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.DuplicateEntryException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrAddKeyValue_result.class, metaDataMap); + } + + public findOrAddKeyValue_result() { + } + + public findOrAddKeyValue_result( + long success, + com.cinchapi.concourse.thrift.SecurityException ex, + com.cinchapi.concourse.thrift.TransactionException ex2, + com.cinchapi.concourse.thrift.DuplicateEntryException ex3, + com.cinchapi.concourse.thrift.InvalidArgumentException ex4, + com.cinchapi.concourse.thrift.PermissionException ex5) + { + this(); + this.success = success; + setSuccessIsSet(true); + this.ex = ex; + this.ex2 = ex2; + this.ex3 = ex3; + this.ex4 = ex4; + this.ex5 = ex5; + } + + /** + * Performs a deep copy on other. + */ + public findOrAddKeyValue_result(findOrAddKeyValue_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; + if (other.isSetEx()) { + this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); + } + if (other.isSetEx2()) { + this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); + } + if (other.isSetEx3()) { + this.ex3 = new com.cinchapi.concourse.thrift.DuplicateEntryException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex4); + } + if (other.isSetEx5()) { + this.ex5 = new com.cinchapi.concourse.thrift.PermissionException(other.ex5); + } + } + + @Override + public findOrAddKeyValue_result deepCopy() { + return new findOrAddKeyValue_result(this); + } + + @Override + public void clear() { + setSuccessIsSet(false); + this.success = 0; + this.ex = null; + this.ex2 = null; + this.ex3 = null; + this.ex4 = null; + this.ex5 = null; + } + + public long getSuccess() { + return this.success; + } + + public findOrAddKeyValue_result setSuccess(long success) { + this.success = success; + setSuccessIsSet(true); + return this; + } + + public void unsetSuccess() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + public void setSuccessIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.SecurityException getEx() { + return this.ex; + } + + public findOrAddKeyValue_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException 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; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionException getEx2() { + return this.ex2; + } + + public findOrAddKeyValue_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + this.ex2 = ex2; + return this; + } + + public void unsetEx2() { + this.ex2 = null; + } + + /** Returns true if field ex2 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx2() { + return this.ex2 != null; + } + + public void setEx2IsSet(boolean value) { + if (!value) { + this.ex2 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.DuplicateEntryException getEx3() { + return this.ex3; + } + + public findOrAddKeyValue_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex3) { + this.ex3 = ex3; + return this; + } + + public void unsetEx3() { + this.ex3 = null; + } + + /** Returns true if field ex3 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx3() { + return this.ex3 != null; + } + + public void setEx3IsSet(boolean value) { + if (!value) { + this.ex3 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx4() { + return this.ex4; + } + + public findOrAddKeyValue_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx5() { + return this.ex5; + } + + public findOrAddKeyValue_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { + this.ex5 = ex5; + return this; + } + + public void unsetEx5() { + this.ex5 = null; + } + + /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx5() { + return this.ex5 != null; + } + + public void setEx5IsSet(boolean value) { + if (!value) { + this.ex5 = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.Long)value); + } + break; + + case EX: + if (value == null) { + unsetEx(); + } else { + setEx((com.cinchapi.concourse.thrift.SecurityException)value); + } + break; + + case EX2: + if (value == null) { + unsetEx2(); + } else { + setEx2((com.cinchapi.concourse.thrift.TransactionException)value); + } + break; + + case EX3: + if (value == null) { + unsetEx3(); + } else { + setEx3((com.cinchapi.concourse.thrift.DuplicateEntryException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX5: + if (value == null) { + unsetEx5(); + } else { + setEx5((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case SUCCESS: + return getSuccess(); + + case EX: + return getEx(); + + case EX2: + return getEx2(); + + case EX3: + return getEx3(); + + case EX4: + return getEx4(); + + case EX5: + return getEx5(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case SUCCESS: + return isSetSuccess(); + case EX: + return isSetEx(); + case EX2: + return isSetEx2(); + case EX3: + return isSetEx3(); + case EX4: + return isSetEx4(); + case EX5: + return isSetEx5(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof findOrAddKeyValue_result) + return this.equals((findOrAddKeyValue_result)that); + return false; + } + + public boolean equals(findOrAddKeyValue_result that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_success = true; + boolean that_present_success = true; + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (this.success != that.success) + 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; + } + + boolean this_present_ex2 = true && this.isSetEx2(); + boolean that_present_ex2 = true && that.isSetEx2(); + if (this_present_ex2 || that_present_ex2) { + if (!(this_present_ex2 && that_present_ex2)) + return false; + if (!this.ex2.equals(that.ex2)) + return false; + } + + boolean this_present_ex3 = true && this.isSetEx3(); + boolean that_present_ex3 = true && that.isSetEx3(); + if (this_present_ex3 || that_present_ex3) { + if (!(this_present_ex3 && that_present_ex3)) + return false; + if (!this.ex3.equals(that.ex3)) + return false; + } + + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + + boolean this_present_ex5 = true && this.isSetEx5(); + boolean that_present_ex5 = true && that.isSetEx5(); + if (this_present_ex5 || that_present_ex5) { + if (!(this_present_ex5 && that_present_ex5)) + return false; + if (!this.ex5.equals(that.ex5)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); + + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); + if (isSetEx()) + hashCode = hashCode * 8191 + ex.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx2()) ? 131071 : 524287); + if (isSetEx2()) + hashCode = hashCode * 8191 + ex2.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx3()) ? 131071 : 524287); + if (isSetEx3()) + hashCode = hashCode * 8191 + ex3.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); + if (isSetEx5()) + hashCode = hashCode * 8191 + ex5.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(findOrAddKeyValue_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); if (lastComparison != 0) { return lastComparison; @@ -684184,22 +685060,5521 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CRITERIA: - if (value == null) { - unsetCriteria(); - } else { - setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); - } - break; - - case JSON: - if (value == null) { - unsetJson(); - } else { - setJson((java.lang.String)value); - } - break; - + case CRITERIA: + if (value == null) { + unsetCriteria(); + } else { + setCriteria((com.cinchapi.concourse.thrift.TCriteria)value); + } + break; + + case JSON: + if (value == null) { + unsetJson(); + } else { + setJson((java.lang.String)value); + } + break; + + case CREDS: + if (value == null) { + unsetCreds(); + } else { + setCreds((com.cinchapi.concourse.thrift.AccessToken)value); + } + break; + + case TRANSACTION: + if (value == null) { + unsetTransaction(); + } else { + setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); + } + break; + + case ENVIRONMENT: + if (value == null) { + unsetEnvironment(); + } else { + setEnvironment((java.lang.String)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case CRITERIA: + return getCriteria(); + + case JSON: + return getJson(); + + case CREDS: + return getCreds(); + + case TRANSACTION: + return getTransaction(); + + case ENVIRONMENT: + return getEnvironment(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case CRITERIA: + return isSetCriteria(); + case JSON: + return isSetJson(); + case CREDS: + return isSetCreds(); + case TRANSACTION: + return isSetTransaction(); + case ENVIRONMENT: + return isSetEnvironment(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof findOrInsertCriteriaJson_args) + return this.equals((findOrInsertCriteriaJson_args)that); + return false; + } + + public boolean equals(findOrInsertCriteriaJson_args that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if (this_present_criteria || that_present_criteria) { + if (!(this_present_criteria && that_present_criteria)) + return false; + if (!this.criteria.equals(that.criteria)) + return false; + } + + boolean this_present_json = true && this.isSetJson(); + boolean that_present_json = true && that.isSetJson(); + if (this_present_json || that_present_json) { + if (!(this_present_json && that_present_json)) + return false; + if (!this.json.equals(that.json)) + return false; + } + + boolean this_present_creds = true && this.isSetCreds(); + boolean that_present_creds = true && that.isSetCreds(); + if (this_present_creds || that_present_creds) { + if (!(this_present_creds && that_present_creds)) + return false; + if (!this.creds.equals(that.creds)) + return false; + } + + boolean this_present_transaction = true && this.isSetTransaction(); + boolean that_present_transaction = true && that.isSetTransaction(); + if (this_present_transaction || that_present_transaction) { + if (!(this_present_transaction && that_present_transaction)) + return false; + if (!this.transaction.equals(that.transaction)) + return false; + } + + boolean this_present_environment = true && this.isSetEnvironment(); + boolean that_present_environment = true && that.isSetEnvironment(); + if (this_present_environment || that_present_environment) { + if (!(this_present_environment && that_present_environment)) + return false; + if (!this.environment.equals(that.environment)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if (isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); + + hashCode = hashCode * 8191 + ((isSetJson()) ? 131071 : 524287); + if (isSetJson()) + hashCode = hashCode * 8191 + json.hashCode(); + + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); + if (isSetCreds()) + hashCode = hashCode * 8191 + creds.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); + if (isSetTransaction()) + hashCode = hashCode * 8191 + transaction.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); + if (isSetEnvironment()) + hashCode = hashCode * 8191 + environment.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(findOrInsertCriteriaJson_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetJson(), other.isSetJson()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetJson()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.json, other.json); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCreds()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.creds, other.creds); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTransaction()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEnvironment(), other.isSetEnvironment()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEnvironment()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.environment, other.environment); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrInsertCriteriaJson_args("); + boolean first = true; + + sb.append("criteria:"); + if (this.criteria == null) { + sb.append("null"); + } else { + sb.append(this.criteria); + } + first = false; + if (!first) sb.append(", "); + sb.append("json:"); + if (this.json == null) { + sb.append("null"); + } else { + sb.append(this.json); + } + first = false; + if (!first) sb.append(", "); + sb.append("creds:"); + if (this.creds == null) { + sb.append("null"); + } else { + sb.append(this.creds); + } + first = false; + if (!first) sb.append(", "); + sb.append("transaction:"); + if (this.transaction == null) { + sb.append("null"); + } else { + sb.append(this.transaction); + } + first = false; + if (!first) sb.append(", "); + sb.append("environment:"); + if (this.environment == null) { + sb.append("null"); + } else { + sb.append(this.environment); + } + 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 (criteria != null) { + criteria.validate(); + } + if (creds != null) { + creds.validate(); + } + if (transaction != null) { + transaction.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, java.lang.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 findOrInsertCriteriaJson_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrInsertCriteriaJson_argsStandardScheme getScheme() { + return new findOrInsertCriteriaJson_argsStandardScheme(); + } + } + + private static class findOrInsertCriteriaJson_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteriaJson_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: // CRITERIA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // JSON + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.json = iprot.readString(); + struct.setJsonIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // CREDS + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // TRANSACTION + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // ENVIRONMENT + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCriteriaJson_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.criteria != null) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.json != null) { + oprot.writeFieldBegin(JSON_FIELD_DESC); + oprot.writeString(struct.json); + oprot.writeFieldEnd(); + } + if (struct.creds != null) { + oprot.writeFieldBegin(CREDS_FIELD_DESC); + struct.creds.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.transaction != null) { + oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); + struct.transaction.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.environment != null) { + oprot.writeFieldBegin(ENVIRONMENT_FIELD_DESC); + oprot.writeString(struct.environment); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class findOrInsertCriteriaJson_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrInsertCriteriaJson_argsTupleScheme getScheme() { + return new findOrInsertCriteriaJson_argsTupleScheme(); + } + } + + private static class findOrInsertCriteriaJson_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteriaJson_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetCriteria()) { + optionals.set(0); + } + if (struct.isSetJson()) { + optionals.set(1); + } + if (struct.isSetCreds()) { + optionals.set(2); + } + if (struct.isSetTransaction()) { + optionals.set(3); + } + if (struct.isSetEnvironment()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetCriteria()) { + struct.criteria.write(oprot); + } + if (struct.isSetJson()) { + oprot.writeString(struct.json); + } + if (struct.isSetCreds()) { + struct.creds.write(oprot); + } + if (struct.isSetTransaction()) { + struct.transaction.write(oprot); + } + if (struct.isSetEnvironment()) { + oprot.writeString(struct.environment); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteriaJson_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(5); + if (incoming.get(0)) { + struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); + } + if (incoming.get(1)) { + struct.json = iprot.readString(); + struct.setJsonIsSet(true); + } + if (incoming.get(2)) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } + if (incoming.get(3)) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } + if (incoming.get(4)) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class findOrInsertCriteriaJson_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrInsertCriteriaJson_result"); + + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); + 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrInsertCriteriaJson_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrInsertCriteriaJson_resultTupleSchemeFactory(); + + public long success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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"), + EX((short)1, "ex"), + EX2((short)2, "ex2"), + EX3((short)3, "ex3"), + EX4((short)4, "ex4"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; + case 1: // EX + return EX; + case 2: // EX2 + return EX2; + case 3: // EX3 + return EX3; + case 4: // EX4 + return EX4; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + 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.I64))); + tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); + tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); + tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.DuplicateEntryException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrInsertCriteriaJson_result.class, metaDataMap); + } + + public findOrInsertCriteriaJson_result() { + } + + public findOrInsertCriteriaJson_result( + long success, + com.cinchapi.concourse.thrift.SecurityException ex, + com.cinchapi.concourse.thrift.TransactionException ex2, + com.cinchapi.concourse.thrift.DuplicateEntryException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4) + { + this(); + this.success = success; + setSuccessIsSet(true); + this.ex = ex; + this.ex2 = ex2; + this.ex3 = ex3; + this.ex4 = ex4; + } + + /** + * Performs a deep copy on other. + */ + public findOrInsertCriteriaJson_result(findOrInsertCriteriaJson_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; + if (other.isSetEx()) { + this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); + } + if (other.isSetEx2()) { + this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); + } + if (other.isSetEx3()) { + this.ex3 = new com.cinchapi.concourse.thrift.DuplicateEntryException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + } + } + + @Override + public findOrInsertCriteriaJson_result deepCopy() { + return new findOrInsertCriteriaJson_result(this); + } + + @Override + public void clear() { + setSuccessIsSet(false); + this.success = 0; + this.ex = null; + this.ex2 = null; + this.ex3 = null; + this.ex4 = null; + } + + public long getSuccess() { + return this.success; + } + + public findOrInsertCriteriaJson_result setSuccess(long success) { + this.success = success; + setSuccessIsSet(true); + return this; + } + + public void unsetSuccess() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + public void setSuccessIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.SecurityException getEx() { + return this.ex; + } + + public findOrInsertCriteriaJson_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException 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; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionException getEx2() { + return this.ex2; + } + + public findOrInsertCriteriaJson_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + this.ex2 = ex2; + return this; + } + + public void unsetEx2() { + this.ex2 = null; + } + + /** Returns true if field ex2 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx2() { + return this.ex2 != null; + } + + public void setEx2IsSet(boolean value) { + if (!value) { + this.ex2 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.DuplicateEntryException getEx3() { + return this.ex3; + } + + public findOrInsertCriteriaJson_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex3) { + this.ex3 = ex3; + return this; + } + + public void unsetEx3() { + this.ex3 = null; + } + + /** Returns true if field ex3 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx3() { + return this.ex3 != null; + } + + public void setEx3IsSet(boolean value) { + if (!value) { + this.ex3 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public findOrInsertCriteriaJson_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.Long)value); + } + break; + + case EX: + if (value == null) { + unsetEx(); + } else { + setEx((com.cinchapi.concourse.thrift.SecurityException)value); + } + break; + + case EX2: + if (value == null) { + unsetEx2(); + } else { + setEx2((com.cinchapi.concourse.thrift.TransactionException)value); + } + break; + + case EX3: + if (value == null) { + unsetEx3(); + } else { + setEx3((com.cinchapi.concourse.thrift.DuplicateEntryException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case SUCCESS: + return getSuccess(); + + case EX: + return getEx(); + + case EX2: + return getEx2(); + + case EX3: + return getEx3(); + + case EX4: + return getEx4(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case SUCCESS: + return isSetSuccess(); + case EX: + return isSetEx(); + case EX2: + return isSetEx2(); + case EX3: + return isSetEx3(); + case EX4: + return isSetEx4(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof findOrInsertCriteriaJson_result) + return this.equals((findOrInsertCriteriaJson_result)that); + return false; + } + + public boolean equals(findOrInsertCriteriaJson_result that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_success = true; + boolean that_present_success = true; + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (this.success != that.success) + 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; + } + + boolean this_present_ex2 = true && this.isSetEx2(); + boolean that_present_ex2 = true && that.isSetEx2(); + if (this_present_ex2 || that_present_ex2) { + if (!(this_present_ex2 && that_present_ex2)) + return false; + if (!this.ex2.equals(that.ex2)) + return false; + } + + boolean this_present_ex3 = true && this.isSetEx3(); + boolean that_present_ex3 = true && that.isSetEx3(); + if (this_present_ex3 || that_present_ex3) { + if (!(this_present_ex3 && that_present_ex3)) + return false; + if (!this.ex3.equals(that.ex3)) + return false; + } + + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); + + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); + if (isSetEx()) + hashCode = hashCode * 8191 + ex.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx2()) ? 131071 : 524287); + if (isSetEx2()) + hashCode = hashCode * 8191 + ex2.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx3()) ? 131071 : 524287); + if (isSetEx3()) + hashCode = hashCode * 8191 + ex3.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(findOrInsertCriteriaJson_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex, other.ex); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx2(), other.isSetEx2()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx2()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex2, other.ex2); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx3(), other.isSetEx3()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx3()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex3, other.ex3); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrInsertCriteriaJson_result("); + boolean first = true; + + sb.append("success:"); + sb.append(this.success); + first = false; + if (!first) sb.append(", "); + sb.append("ex:"); + if (this.ex == null) { + sb.append("null"); + } else { + sb.append(this.ex); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex2:"); + if (this.ex2 == null) { + sb.append("null"); + } else { + sb.append(this.ex2); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex3:"); + if (this.ex3 == null) { + sb.append("null"); + } else { + sb.append(this.ex3); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + 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, java.lang.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 findOrInsertCriteriaJson_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrInsertCriteriaJson_resultStandardScheme getScheme() { + return new findOrInsertCriteriaJson_resultStandardScheme(); + } + } + + private static class findOrInsertCriteriaJson_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteriaJson_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.I64) { + struct.success = iprot.readI64(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 1: // EX + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // EX2 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // EX3 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex3 = new com.cinchapi.concourse.thrift.DuplicateEntryException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCriteriaJson_result struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.isSetSuccess()) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeI64(struct.success); + oprot.writeFieldEnd(); + } + if (struct.ex != null) { + oprot.writeFieldBegin(EX_FIELD_DESC); + struct.ex.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex2 != null) { + oprot.writeFieldBegin(EX2_FIELD_DESC); + struct.ex2.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex3 != null) { + oprot.writeFieldBegin(EX3_FIELD_DESC); + struct.ex3.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class findOrInsertCriteriaJson_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrInsertCriteriaJson_resultTupleScheme getScheme() { + return new findOrInsertCriteriaJson_resultTupleScheme(); + } + } + + private static class findOrInsertCriteriaJson_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteriaJson_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetSuccess()) { + optionals.set(0); + } + if (struct.isSetEx()) { + optionals.set(1); + } + if (struct.isSetEx2()) { + optionals.set(2); + } + if (struct.isSetEx3()) { + optionals.set(3); + } + if (struct.isSetEx4()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetSuccess()) { + oprot.writeI64(struct.success); + } + if (struct.isSetEx()) { + struct.ex.write(oprot); + } + if (struct.isSetEx2()) { + struct.ex2.write(oprot); + } + if (struct.isSetEx3()) { + struct.ex3.write(oprot); + } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteriaJson_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(5); + if (incoming.get(0)) { + struct.success = iprot.readI64(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } + if (incoming.get(2)) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } + if (incoming.get(3)) { + struct.ex3 = new com.cinchapi.concourse.thrift.DuplicateEntryException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class findOrInsertCclJson_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrInsertCclJson_args"); + + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField JSON_FIELD_DESC = new org.apache.thrift.protocol.TField("json", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrInsertCclJson_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrInsertCclJson_argsTupleSchemeFactory(); + + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required + public @org.apache.thrift.annotation.Nullable java.lang.String json; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required + public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { + CCL((short)1, "ccl"), + JSON((short)2, "json"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // CCL + return CCL; + case 2: // JSON + return JSON; + case 3: // CREDS + return CREDS; + case 4: // TRANSACTION + return TRANSACTION; + case 5: // ENVIRONMENT + return ENVIRONMENT; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.JSON, new org.apache.thrift.meta_data.FieldMetaData("json", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); + tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); + tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrInsertCclJson_args.class, metaDataMap); + } + + public findOrInsertCclJson_args() { + } + + public findOrInsertCclJson_args( + java.lang.String ccl, + java.lang.String json, + com.cinchapi.concourse.thrift.AccessToken creds, + com.cinchapi.concourse.thrift.TransactionToken transaction, + java.lang.String environment) + { + this(); + this.ccl = ccl; + this.json = json; + this.creds = creds; + this.transaction = transaction; + this.environment = environment; + } + + /** + * Performs a deep copy on other. + */ + public findOrInsertCclJson_args(findOrInsertCclJson_args other) { + if (other.isSetCcl()) { + this.ccl = other.ccl; + } + if (other.isSetJson()) { + this.json = other.json; + } + if (other.isSetCreds()) { + this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); + } + if (other.isSetTransaction()) { + this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); + } + if (other.isSetEnvironment()) { + this.environment = other.environment; + } + } + + @Override + public findOrInsertCclJson_args deepCopy() { + return new findOrInsertCclJson_args(this); + } + + @Override + public void clear() { + this.ccl = null; + this.json = null; + this.creds = null; + this.transaction = null; + this.environment = null; + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getCcl() { + return this.ccl; + } + + public findOrInsertCclJson_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; + return this; + } + + public void unsetCcl() { + this.ccl = null; + } + + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; + } + + public void setCclIsSet(boolean value) { + if (!value) { + this.ccl = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getJson() { + return this.json; + } + + public findOrInsertCclJson_args setJson(@org.apache.thrift.annotation.Nullable java.lang.String json) { + this.json = json; + return this; + } + + public void unsetJson() { + this.json = null; + } + + /** Returns true if field json is set (has been assigned a value) and false otherwise */ + public boolean isSetJson() { + return this.json != null; + } + + public void setJsonIsSet(boolean value) { + if (!value) { + this.json = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.AccessToken getCreds() { + return this.creds; + } + + public findOrInsertCclJson_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + this.creds = creds; + return this; + } + + public void unsetCreds() { + this.creds = null; + } + + /** Returns true if field creds is set (has been assigned a value) and false otherwise */ + public boolean isSetCreds() { + return this.creds != null; + } + + public void setCredsIsSet(boolean value) { + if (!value) { + this.creds = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { + return this.transaction; + } + + public findOrInsertCclJson_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + this.transaction = transaction; + return this; + } + + public void unsetTransaction() { + this.transaction = null; + } + + /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ + public boolean isSetTransaction() { + return this.transaction != null; + } + + public void setTransactionIsSet(boolean value) { + if (!value) { + this.transaction = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getEnvironment() { + return this.environment; + } + + public findOrInsertCclJson_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + this.environment = environment; + return this; + } + + public void unsetEnvironment() { + this.environment = null; + } + + /** Returns true if field environment is set (has been assigned a value) and false otherwise */ + public boolean isSetEnvironment() { + return this.environment != null; + } + + public void setEnvironmentIsSet(boolean value) { + if (!value) { + this.environment = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case CCL: + if (value == null) { + unsetCcl(); + } else { + setCcl((java.lang.String)value); + } + break; + + case JSON: + if (value == null) { + unsetJson(); + } else { + setJson((java.lang.String)value); + } + break; + + case CREDS: + if (value == null) { + unsetCreds(); + } else { + setCreds((com.cinchapi.concourse.thrift.AccessToken)value); + } + break; + + case TRANSACTION: + if (value == null) { + unsetTransaction(); + } else { + setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); + } + break; + + case ENVIRONMENT: + if (value == null) { + unsetEnvironment(); + } else { + setEnvironment((java.lang.String)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case CCL: + return getCcl(); + + case JSON: + return getJson(); + + case CREDS: + return getCreds(); + + case TRANSACTION: + return getTransaction(); + + case ENVIRONMENT: + return getEnvironment(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case CCL: + return isSetCcl(); + case JSON: + return isSetJson(); + case CREDS: + return isSetCreds(); + case TRANSACTION: + return isSetTransaction(); + case ENVIRONMENT: + return isSetEnvironment(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof findOrInsertCclJson_args) + return this.equals((findOrInsertCclJson_args)that); + return false; + } + + public boolean equals(findOrInsertCclJson_args that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) + return false; + if (!this.ccl.equals(that.ccl)) + return false; + } + + boolean this_present_json = true && this.isSetJson(); + boolean that_present_json = true && that.isSetJson(); + if (this_present_json || that_present_json) { + if (!(this_present_json && that_present_json)) + return false; + if (!this.json.equals(that.json)) + return false; + } + + boolean this_present_creds = true && this.isSetCreds(); + boolean that_present_creds = true && that.isSetCreds(); + if (this_present_creds || that_present_creds) { + if (!(this_present_creds && that_present_creds)) + return false; + if (!this.creds.equals(that.creds)) + return false; + } + + boolean this_present_transaction = true && this.isSetTransaction(); + boolean that_present_transaction = true && that.isSetTransaction(); + if (this_present_transaction || that_present_transaction) { + if (!(this_present_transaction && that_present_transaction)) + return false; + if (!this.transaction.equals(that.transaction)) + return false; + } + + boolean this_present_environment = true && this.isSetEnvironment(); + boolean that_present_environment = true && that.isSetEnvironment(); + if (this_present_environment || that_present_environment) { + if (!(this_present_environment && that_present_environment)) + return false; + if (!this.environment.equals(that.environment)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); + + hashCode = hashCode * 8191 + ((isSetJson()) ? 131071 : 524287); + if (isSetJson()) + hashCode = hashCode * 8191 + json.hashCode(); + + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); + if (isSetCreds()) + hashCode = hashCode * 8191 + creds.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); + if (isSetTransaction()) + hashCode = hashCode * 8191 + transaction.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); + if (isSetEnvironment()) + hashCode = hashCode * 8191 + environment.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(findOrInsertCclJson_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetJson(), other.isSetJson()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetJson()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.json, other.json); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCreds()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.creds, other.creds); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTransaction()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEnvironment(), other.isSetEnvironment()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEnvironment()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.environment, other.environment); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrInsertCclJson_args("); + boolean first = true; + + sb.append("ccl:"); + if (this.ccl == null) { + sb.append("null"); + } else { + sb.append(this.ccl); + } + first = false; + if (!first) sb.append(", "); + sb.append("json:"); + if (this.json == null) { + sb.append("null"); + } else { + sb.append(this.json); + } + first = false; + if (!first) sb.append(", "); + sb.append("creds:"); + if (this.creds == null) { + sb.append("null"); + } else { + sb.append(this.creds); + } + first = false; + if (!first) sb.append(", "); + sb.append("transaction:"); + if (this.transaction == null) { + sb.append("null"); + } else { + sb.append(this.transaction); + } + first = false; + if (!first) sb.append(", "); + sb.append("environment:"); + if (this.environment == null) { + sb.append("null"); + } else { + sb.append(this.environment); + } + 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 (creds != null) { + creds.validate(); + } + if (transaction != null) { + transaction.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, java.lang.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 findOrInsertCclJson_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrInsertCclJson_argsStandardScheme getScheme() { + return new findOrInsertCclJson_argsStandardScheme(); + } + } + + private static class findOrInsertCclJson_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson_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: // CCL + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // JSON + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.json = iprot.readString(); + struct.setJsonIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // CREDS + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // TRANSACTION + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // ENVIRONMENT + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCclJson_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); + oprot.writeFieldEnd(); + } + if (struct.json != null) { + oprot.writeFieldBegin(JSON_FIELD_DESC); + oprot.writeString(struct.json); + oprot.writeFieldEnd(); + } + if (struct.creds != null) { + oprot.writeFieldBegin(CREDS_FIELD_DESC); + struct.creds.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.transaction != null) { + oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); + struct.transaction.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.environment != null) { + oprot.writeFieldBegin(ENVIRONMENT_FIELD_DESC); + oprot.writeString(struct.environment); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class findOrInsertCclJson_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrInsertCclJson_argsTupleScheme getScheme() { + return new findOrInsertCclJson_argsTupleScheme(); + } + } + + private static class findOrInsertCclJson_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetCcl()) { + optionals.set(0); + } + if (struct.isSetJson()) { + optionals.set(1); + } + if (struct.isSetCreds()) { + optionals.set(2); + } + if (struct.isSetTransaction()) { + optionals.set(3); + } + if (struct.isSetEnvironment()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); + } + if (struct.isSetJson()) { + oprot.writeString(struct.json); + } + if (struct.isSetCreds()) { + struct.creds.write(oprot); + } + if (struct.isSetTransaction()) { + struct.transaction.write(oprot); + } + if (struct.isSetEnvironment()) { + oprot.writeString(struct.environment); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(5); + if (incoming.get(0)) { + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); + } + if (incoming.get(1)) { + struct.json = iprot.readString(); + struct.setJsonIsSet(true); + } + if (incoming.get(2)) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } + if (incoming.get(3)) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } + if (incoming.get(4)) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class findOrInsertCclJson_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrInsertCclJson_result"); + + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); + 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrInsertCclJson_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrInsertCclJson_resultTupleSchemeFactory(); + + public long success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5; // 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"), + EX((short)1, "ex"), + EX2((short)2, "ex2"), + EX3((short)3, "ex3"), + EX4((short)4, "ex4"), + EX5((short)5, "ex5"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; + case 1: // EX + return EX; + case 2: // EX2 + return EX2; + case 3: // EX3 + return EX3; + case 4: // EX4 + return EX4; + case 5: // EX5 + return EX5; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + 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.I64))); + tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); + tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); + tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.DuplicateEntryException.class))); + tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrInsertCclJson_result.class, metaDataMap); + } + + public findOrInsertCclJson_result() { + } + + public findOrInsertCclJson_result( + long success, + com.cinchapi.concourse.thrift.SecurityException ex, + com.cinchapi.concourse.thrift.TransactionException ex2, + com.cinchapi.concourse.thrift.ParseException ex3, + com.cinchapi.concourse.thrift.DuplicateEntryException ex4, + com.cinchapi.concourse.thrift.PermissionException ex5) + { + this(); + this.success = success; + setSuccessIsSet(true); + this.ex = ex; + this.ex2 = ex2; + this.ex3 = ex3; + this.ex4 = ex4; + this.ex5 = ex5; + } + + /** + * Performs a deep copy on other. + */ + public findOrInsertCclJson_result(findOrInsertCclJson_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; + if (other.isSetEx()) { + this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); + } + if (other.isSetEx2()) { + this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); + } + if (other.isSetEx3()) { + this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.DuplicateEntryException(other.ex4); + } + if (other.isSetEx5()) { + this.ex5 = new com.cinchapi.concourse.thrift.PermissionException(other.ex5); + } + } + + @Override + public findOrInsertCclJson_result deepCopy() { + return new findOrInsertCclJson_result(this); + } + + @Override + public void clear() { + setSuccessIsSet(false); + this.success = 0; + this.ex = null; + this.ex2 = null; + this.ex3 = null; + this.ex4 = null; + this.ex5 = null; + } + + public long getSuccess() { + return this.success; + } + + public findOrInsertCclJson_result setSuccess(long success) { + this.success = success; + setSuccessIsSet(true); + return this; + } + + public void unsetSuccess() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + public void setSuccessIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.SecurityException getEx() { + return this.ex; + } + + public findOrInsertCclJson_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException 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; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionException getEx2() { + return this.ex2; + } + + public findOrInsertCclJson_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + this.ex2 = ex2; + return this; + } + + public void unsetEx2() { + this.ex2 = null; + } + + /** Returns true if field ex2 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx2() { + return this.ex2 != null; + } + + public void setEx2IsSet(boolean value) { + if (!value) { + this.ex2 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.ParseException getEx3() { + return this.ex3; + } + + public findOrInsertCclJson_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + this.ex3 = ex3; + return this; + } + + public void unsetEx3() { + this.ex3 = null; + } + + /** Returns true if field ex3 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx3() { + return this.ex3 != null; + } + + public void setEx3IsSet(boolean value) { + if (!value) { + this.ex3 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.DuplicateEntryException getEx4() { + return this.ex4; + } + + public findOrInsertCclJson_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx5() { + return this.ex5; + } + + public findOrInsertCclJson_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { + this.ex5 = ex5; + return this; + } + + public void unsetEx5() { + this.ex5 = null; + } + + /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx5() { + return this.ex5 != null; + } + + public void setEx5IsSet(boolean value) { + if (!value) { + this.ex5 = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.Long)value); + } + break; + + case EX: + if (value == null) { + unsetEx(); + } else { + setEx((com.cinchapi.concourse.thrift.SecurityException)value); + } + break; + + case EX2: + if (value == null) { + unsetEx2(); + } else { + setEx2((com.cinchapi.concourse.thrift.TransactionException)value); + } + break; + + case EX3: + if (value == null) { + unsetEx3(); + } else { + setEx3((com.cinchapi.concourse.thrift.ParseException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.DuplicateEntryException)value); + } + break; + + case EX5: + if (value == null) { + unsetEx5(); + } else { + setEx5((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case SUCCESS: + return getSuccess(); + + case EX: + return getEx(); + + case EX2: + return getEx2(); + + case EX3: + return getEx3(); + + case EX4: + return getEx4(); + + case EX5: + return getEx5(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case SUCCESS: + return isSetSuccess(); + case EX: + return isSetEx(); + case EX2: + return isSetEx2(); + case EX3: + return isSetEx3(); + case EX4: + return isSetEx4(); + case EX5: + return isSetEx5(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof findOrInsertCclJson_result) + return this.equals((findOrInsertCclJson_result)that); + return false; + } + + public boolean equals(findOrInsertCclJson_result that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_success = true; + boolean that_present_success = true; + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (this.success != that.success) + 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; + } + + boolean this_present_ex2 = true && this.isSetEx2(); + boolean that_present_ex2 = true && that.isSetEx2(); + if (this_present_ex2 || that_present_ex2) { + if (!(this_present_ex2 && that_present_ex2)) + return false; + if (!this.ex2.equals(that.ex2)) + return false; + } + + boolean this_present_ex3 = true && this.isSetEx3(); + boolean that_present_ex3 = true && that.isSetEx3(); + if (this_present_ex3 || that_present_ex3) { + if (!(this_present_ex3 && that_present_ex3)) + return false; + if (!this.ex3.equals(that.ex3)) + return false; + } + + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + + boolean this_present_ex5 = true && this.isSetEx5(); + boolean that_present_ex5 = true && that.isSetEx5(); + if (this_present_ex5 || that_present_ex5) { + if (!(this_present_ex5 && that_present_ex5)) + return false; + if (!this.ex5.equals(that.ex5)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); + + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); + if (isSetEx()) + hashCode = hashCode * 8191 + ex.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx2()) ? 131071 : 524287); + if (isSetEx2()) + hashCode = hashCode * 8191 + ex2.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx3()) ? 131071 : 524287); + if (isSetEx3()) + hashCode = hashCode * 8191 + ex3.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); + if (isSetEx5()) + hashCode = hashCode * 8191 + ex5.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(findOrInsertCclJson_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex, other.ex); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx2(), other.isSetEx2()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx2()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex2, other.ex2); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx3(), other.isSetEx3()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx3()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex3, other.ex3); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx5(), other.isSetEx5()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx5()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex5, other.ex5); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrInsertCclJson_result("); + boolean first = true; + + sb.append("success:"); + sb.append(this.success); + first = false; + if (!first) sb.append(", "); + sb.append("ex:"); + if (this.ex == null) { + sb.append("null"); + } else { + sb.append(this.ex); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex2:"); + if (this.ex2 == null) { + sb.append("null"); + } else { + sb.append(this.ex2); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex3:"); + if (this.ex3 == null) { + sb.append("null"); + } else { + sb.append(this.ex3); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex5:"); + if (this.ex5 == null) { + sb.append("null"); + } else { + sb.append(this.ex5); + } + 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, java.lang.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 findOrInsertCclJson_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrInsertCclJson_resultStandardScheme getScheme() { + return new findOrInsertCclJson_resultStandardScheme(); + } + } + + private static class findOrInsertCclJson_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson_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.I64) { + struct.success = iprot.readI64(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 1: // EX + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // EX2 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // EX3 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.DuplicateEntryException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // EX5 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex5 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCclJson_result struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.isSetSuccess()) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeI64(struct.success); + oprot.writeFieldEnd(); + } + if (struct.ex != null) { + oprot.writeFieldBegin(EX_FIELD_DESC); + struct.ex.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex2 != null) { + oprot.writeFieldBegin(EX2_FIELD_DESC); + struct.ex2.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex3 != null) { + oprot.writeFieldBegin(EX3_FIELD_DESC); + struct.ex3.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex5 != null) { + oprot.writeFieldBegin(EX5_FIELD_DESC); + struct.ex5.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class findOrInsertCclJson_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public findOrInsertCclJson_resultTupleScheme getScheme() { + return new findOrInsertCclJson_resultTupleScheme(); + } + } + + private static class findOrInsertCclJson_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetSuccess()) { + optionals.set(0); + } + if (struct.isSetEx()) { + optionals.set(1); + } + if (struct.isSetEx2()) { + optionals.set(2); + } + if (struct.isSetEx3()) { + optionals.set(3); + } + if (struct.isSetEx4()) { + optionals.set(4); + } + if (struct.isSetEx5()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); + if (struct.isSetSuccess()) { + oprot.writeI64(struct.success); + } + if (struct.isSetEx()) { + struct.ex.write(oprot); + } + if (struct.isSetEx2()) { + struct.ex2.write(oprot); + } + if (struct.isSetEx3()) { + struct.ex3.write(oprot); + } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } + if (struct.isSetEx5()) { + struct.ex5.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(6); + if (incoming.get(0)) { + struct.success = iprot.readI64(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } + if (incoming.get(2)) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } + if (incoming.get(3)) { + struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.DuplicateEntryException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } + if (incoming.get(5)) { + struct.ex5 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class getServerEnvironment_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getServerEnvironment_args"); + + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getServerEnvironment_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getServerEnvironment_argsTupleSchemeFactory(); + + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token; // required + public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { + CREDS((short)1, "creds"), + TOKEN((short)2, "token"), + ENVIRONMENT((short)3, "environment"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // CREDS + return CREDS; + case 2: // TOKEN + return TOKEN; + case 3: // ENVIRONMENT + return ENVIRONMENT; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); + tmpMap.put(_Fields.TOKEN, new org.apache.thrift.meta_data.FieldMetaData("token", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); + tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getServerEnvironment_args.class, metaDataMap); + } + + public getServerEnvironment_args() { + } + + public getServerEnvironment_args( + com.cinchapi.concourse.thrift.AccessToken creds, + com.cinchapi.concourse.thrift.TransactionToken token, + java.lang.String environment) + { + this(); + this.creds = creds; + this.token = token; + this.environment = environment; + } + + /** + * Performs a deep copy on other. + */ + public getServerEnvironment_args(getServerEnvironment_args other) { + if (other.isSetCreds()) { + this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); + } + if (other.isSetToken()) { + this.token = new com.cinchapi.concourse.thrift.TransactionToken(other.token); + } + if (other.isSetEnvironment()) { + this.environment = other.environment; + } + } + + @Override + public getServerEnvironment_args deepCopy() { + return new getServerEnvironment_args(this); + } + + @Override + public void clear() { + this.creds = null; + this.token = null; + this.environment = null; + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.AccessToken getCreds() { + return this.creds; + } + + public getServerEnvironment_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + this.creds = creds; + return this; + } + + public void unsetCreds() { + this.creds = null; + } + + /** Returns true if field creds is set (has been assigned a value) and false otherwise */ + public boolean isSetCreds() { + return this.creds != null; + } + + public void setCredsIsSet(boolean value) { + if (!value) { + this.creds = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionToken getToken() { + return this.token; + } + + public getServerEnvironment_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token) { + this.token = token; + return this; + } + + public void unsetToken() { + this.token = null; + } + + /** Returns true if field token is set (has been assigned a value) and false otherwise */ + public boolean isSetToken() { + return this.token != null; + } + + public void setTokenIsSet(boolean value) { + if (!value) { + this.token = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getEnvironment() { + return this.environment; + } + + public getServerEnvironment_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + this.environment = environment; + return this; + } + + public void unsetEnvironment() { + this.environment = null; + } + + /** Returns true if field environment is set (has been assigned a value) and false otherwise */ + public boolean isSetEnvironment() { + return this.environment != null; + } + + public void setEnvironmentIsSet(boolean value) { + if (!value) { + this.environment = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case CREDS: + if (value == null) { + unsetCreds(); + } else { + setCreds((com.cinchapi.concourse.thrift.AccessToken)value); + } + break; + + case TOKEN: + if (value == null) { + unsetToken(); + } else { + setToken((com.cinchapi.concourse.thrift.TransactionToken)value); + } + break; + + case ENVIRONMENT: + if (value == null) { + unsetEnvironment(); + } else { + setEnvironment((java.lang.String)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case CREDS: + return getCreds(); + + case TOKEN: + return getToken(); + + case ENVIRONMENT: + return getEnvironment(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case CREDS: + return isSetCreds(); + case TOKEN: + return isSetToken(); + case ENVIRONMENT: + return isSetEnvironment(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof getServerEnvironment_args) + return this.equals((getServerEnvironment_args)that); + return false; + } + + public boolean equals(getServerEnvironment_args that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_creds = true && this.isSetCreds(); + boolean that_present_creds = true && that.isSetCreds(); + if (this_present_creds || that_present_creds) { + if (!(this_present_creds && that_present_creds)) + return false; + if (!this.creds.equals(that.creds)) + return false; + } + + boolean this_present_token = true && this.isSetToken(); + boolean that_present_token = true && that.isSetToken(); + if (this_present_token || that_present_token) { + if (!(this_present_token && that_present_token)) + return false; + if (!this.token.equals(that.token)) + return false; + } + + boolean this_present_environment = true && this.isSetEnvironment(); + boolean that_present_environment = true && that.isSetEnvironment(); + if (this_present_environment || that_present_environment) { + if (!(this_present_environment && that_present_environment)) + return false; + if (!this.environment.equals(that.environment)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); + if (isSetCreds()) + hashCode = hashCode * 8191 + creds.hashCode(); + + hashCode = hashCode * 8191 + ((isSetToken()) ? 131071 : 524287); + if (isSetToken()) + hashCode = hashCode * 8191 + token.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); + if (isSetEnvironment()) + hashCode = hashCode * 8191 + environment.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(getServerEnvironment_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCreds()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.creds, other.creds); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetToken(), other.isSetToken()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetToken()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.token, other.token); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEnvironment(), other.isSetEnvironment()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEnvironment()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.environment, other.environment); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("getServerEnvironment_args("); + boolean first = true; + + sb.append("creds:"); + if (this.creds == null) { + sb.append("null"); + } else { + sb.append(this.creds); + } + first = false; + if (!first) sb.append(", "); + sb.append("token:"); + if (this.token == null) { + sb.append("null"); + } else { + sb.append(this.token); + } + first = false; + if (!first) sb.append(", "); + sb.append("environment:"); + if (this.environment == null) { + sb.append("null"); + } else { + sb.append(this.environment); + } + 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 (creds != null) { + creds.validate(); + } + if (token != null) { + token.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, java.lang.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 getServerEnvironment_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public getServerEnvironment_argsStandardScheme getScheme() { + return new getServerEnvironment_argsStandardScheme(); + } + } + + private static class getServerEnvironment_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironment_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: // CREDS + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // TOKEN + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.token.read(iprot); + struct.setTokenIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // ENVIRONMENT + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, getServerEnvironment_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.creds != null) { + oprot.writeFieldBegin(CREDS_FIELD_DESC); + struct.creds.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.token != null) { + oprot.writeFieldBegin(TOKEN_FIELD_DESC); + struct.token.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.environment != null) { + oprot.writeFieldBegin(ENVIRONMENT_FIELD_DESC); + oprot.writeString(struct.environment); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class getServerEnvironment_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public getServerEnvironment_argsTupleScheme getScheme() { + return new getServerEnvironment_argsTupleScheme(); + } + } + + private static class getServerEnvironment_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, getServerEnvironment_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetCreds()) { + optionals.set(0); + } + if (struct.isSetToken()) { + optionals.set(1); + } + if (struct.isSetEnvironment()) { + optionals.set(2); + } + oprot.writeBitSet(optionals, 3); + if (struct.isSetCreds()) { + struct.creds.write(oprot); + } + if (struct.isSetToken()) { + struct.token.write(oprot); + } + if (struct.isSetEnvironment()) { + oprot.writeString(struct.environment); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, getServerEnvironment_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(3); + if (incoming.get(0)) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } + if (incoming.get(1)) { + struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.token.read(iprot); + struct.setTokenIsSet(true); + } + if (incoming.get(2)) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class getServerEnvironment_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getServerEnvironment_result"); + + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getServerEnvironment_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getServerEnvironment_resultTupleSchemeFactory(); + + public @org.apache.thrift.annotation.Nullable java.lang.String success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), + EX((short)1, "ex"), + EX2((short)2, "ex2"), + EX3((short)3, "ex3"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; + case 1: // EX + return EX; + case 2: // EX2 + return EX2; + case 3: // EX3 + return EX3; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + 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.STRING))); + tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); + tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); + tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getServerEnvironment_result.class, metaDataMap); + } + + public getServerEnvironment_result() { + } + + public getServerEnvironment_result( + java.lang.String success, + com.cinchapi.concourse.thrift.SecurityException ex, + com.cinchapi.concourse.thrift.TransactionException ex2, + com.cinchapi.concourse.thrift.PermissionException ex3) + { + this(); + this.success = success; + this.ex = ex; + this.ex2 = ex2; + this.ex3 = ex3; + } + + /** + * Performs a deep copy on other. + */ + public getServerEnvironment_result(getServerEnvironment_result other) { + if (other.isSetSuccess()) { + this.success = other.success; + } + if (other.isSetEx()) { + this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); + } + if (other.isSetEx2()) { + this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); + } + if (other.isSetEx3()) { + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + } + } + + @Override + public getServerEnvironment_result deepCopy() { + return new getServerEnvironment_result(this); + } + + @Override + public void clear() { + this.success = null; + this.ex = null; + this.ex2 = null; + this.ex3 = null; + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getSuccess() { + return this.success; + } + + public getServerEnvironment_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String 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; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.SecurityException getEx() { + return this.ex; + } + + public getServerEnvironment_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException 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; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionException getEx2() { + return this.ex2; + } + + public getServerEnvironment_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + this.ex2 = ex2; + return this; + } + + public void unsetEx2() { + this.ex2 = null; + } + + /** Returns true if field ex2 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx2() { + return this.ex2 != null; + } + + public void setEx2IsSet(boolean value) { + if (!value) { + this.ex2 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx3() { + return this.ex3; + } + + public getServerEnvironment_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + this.ex3 = ex3; + return this; + } + + public void unsetEx3() { + this.ex3 = null; + } + + /** Returns true if field ex3 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx3() { + return this.ex3 != null; + } + + public void setEx3IsSet(boolean value) { + if (!value) { + this.ex3 = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.String)value); + } + break; + + case EX: + if (value == null) { + unsetEx(); + } else { + setEx((com.cinchapi.concourse.thrift.SecurityException)value); + } + break; + + case EX2: + if (value == null) { + unsetEx2(); + } else { + setEx2((com.cinchapi.concourse.thrift.TransactionException)value); + } + break; + + case EX3: + if (value == null) { + unsetEx3(); + } else { + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case SUCCESS: + return getSuccess(); + + case EX: + return getEx(); + + case EX2: + return getEx2(); + + case EX3: + return getEx3(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case SUCCESS: + return isSetSuccess(); + case EX: + return isSetEx(); + case EX2: + return isSetEx2(); + case EX3: + return isSetEx3(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof getServerEnvironment_result) + return this.equals((getServerEnvironment_result)that); + return false; + } + + public boolean equals(getServerEnvironment_result that) { + if (that == null) + return false; + if (this == that) + return true; + + 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_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; + } + + boolean this_present_ex2 = true && this.isSetEx2(); + boolean that_present_ex2 = true && that.isSetEx2(); + if (this_present_ex2 || that_present_ex2) { + if (!(this_present_ex2 && that_present_ex2)) + return false; + if (!this.ex2.equals(that.ex2)) + return false; + } + + boolean this_present_ex3 = true && this.isSetEx3(); + boolean that_present_ex3 = true && that.isSetEx3(); + if (this_present_ex3 || that_present_ex3) { + if (!(this_present_ex3 && that_present_ex3)) + return false; + if (!this.ex3.equals(that.ex3)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); + if (isSetEx()) + hashCode = hashCode * 8191 + ex.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx2()) ? 131071 : 524287); + if (isSetEx2()) + hashCode = hashCode * 8191 + ex2.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx3()) ? 131071 : 524287); + if (isSetEx3()) + hashCode = hashCode * 8191 + ex3.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(getServerEnvironment_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex, other.ex); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx2(), other.isSetEx2()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx2()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex2, other.ex2); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx3(), other.isSetEx3()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx3()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex3, other.ex3); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("getServerEnvironment_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("ex:"); + if (this.ex == null) { + sb.append("null"); + } else { + sb.append(this.ex); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex2:"); + if (this.ex2 == null) { + sb.append("null"); + } else { + sb.append(this.ex2); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex3:"); + if (this.ex3 == null) { + sb.append("null"); + } else { + sb.append(this.ex3); + } + 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, java.lang.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 getServerEnvironment_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public getServerEnvironment_resultStandardScheme getScheme() { + return new getServerEnvironment_resultStandardScheme(); + } + } + + private static class getServerEnvironment_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironment_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.STRING) { + struct.success = iprot.readString(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 1: // EX + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // EX2 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // EX3 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, getServerEnvironment_result struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.success != null) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeString(struct.success); + oprot.writeFieldEnd(); + } + if (struct.ex != null) { + oprot.writeFieldBegin(EX_FIELD_DESC); + struct.ex.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex2 != null) { + oprot.writeFieldBegin(EX2_FIELD_DESC); + struct.ex2.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex3 != null) { + oprot.writeFieldBegin(EX3_FIELD_DESC); + struct.ex3.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class getServerEnvironment_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public getServerEnvironment_resultTupleScheme getScheme() { + return new getServerEnvironment_resultTupleScheme(); + } + } + + private static class getServerEnvironment_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, getServerEnvironment_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetSuccess()) { + optionals.set(0); + } + if (struct.isSetEx()) { + optionals.set(1); + } + if (struct.isSetEx2()) { + optionals.set(2); + } + if (struct.isSetEx3()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); + if (struct.isSetSuccess()) { + oprot.writeString(struct.success); + } + if (struct.isSetEx()) { + struct.ex.write(oprot); + } + if (struct.isSetEx2()) { + struct.ex2.write(oprot); + } + if (struct.isSetEx3()) { + struct.ex3.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, getServerEnvironment_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(4); + if (incoming.get(0)) { + struct.success = iprot.readString(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } + if (incoming.get(2)) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } + if (incoming.get(3)) { + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class getServerVersion_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getServerVersion_args"); + + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getServerVersion_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getServerVersion_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 java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getServerVersion_args.class, metaDataMap); + } + + public getServerVersion_args() { + } + + /** + * Performs a deep copy on other. + */ + public getServerVersion_args(getServerVersion_args other) { + } + + @Override + public getServerVersion_args deepCopy() { + return new getServerVersion_args(this); + } + + @Override + public void clear() { + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof getServerVersion_args) + return this.equals((getServerVersion_args)that); + return false; + } + + public boolean equals(getServerVersion_args that) { + if (that == null) + return false; + if (this == that) + return true; + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + return hashCode; + } + + @Override + public int compareTo(getServerVersion_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("getServerVersion_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, java.lang.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 getServerVersion_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public getServerVersion_argsStandardScheme getScheme() { + return new getServerVersion_argsStandardScheme(); + } + } + + private static class getServerVersion_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, getServerVersion_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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, getServerVersion_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class getServerVersion_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public getServerVersion_argsTupleScheme getScheme() { + return new getServerVersion_argsTupleScheme(); + } + } + + private static class getServerVersion_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, getServerVersion_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, getServerVersion_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class getServerVersion_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getServerVersion_result"); + + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getServerVersion_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getServerVersion_resultTupleSchemeFactory(); + + public @org.apache.thrift.annotation.Nullable java.lang.String success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), + EX((short)1, "ex"), + EX2((short)2, "ex2"), + EX3((short)3, "ex3"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; + case 1: // EX + return EX; + case 2: // EX2 + return EX2; + case 3: // EX3 + return EX3; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + 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.STRING))); + tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); + tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); + tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getServerVersion_result.class, metaDataMap); + } + + public getServerVersion_result() { + } + + public getServerVersion_result( + java.lang.String success, + com.cinchapi.concourse.thrift.SecurityException ex, + com.cinchapi.concourse.thrift.TransactionException ex2, + com.cinchapi.concourse.thrift.PermissionException ex3) + { + this(); + this.success = success; + this.ex = ex; + this.ex2 = ex2; + this.ex3 = ex3; + } + + /** + * Performs a deep copy on other. + */ + public getServerVersion_result(getServerVersion_result other) { + if (other.isSetSuccess()) { + this.success = other.success; + } + if (other.isSetEx()) { + this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); + } + if (other.isSetEx2()) { + this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); + } + if (other.isSetEx3()) { + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + } + } + + @Override + public getServerVersion_result deepCopy() { + return new getServerVersion_result(this); + } + + @Override + public void clear() { + this.success = null; + this.ex = null; + this.ex2 = null; + this.ex3 = null; + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getSuccess() { + return this.success; + } + + public getServerVersion_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String 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; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.SecurityException getEx() { + return this.ex; + } + + public getServerVersion_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException 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; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionException getEx2() { + return this.ex2; + } + + public getServerVersion_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + this.ex2 = ex2; + return this; + } + + public void unsetEx2() { + this.ex2 = null; + } + + /** Returns true if field ex2 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx2() { + return this.ex2 != null; + } + + public void setEx2IsSet(boolean value) { + if (!value) { + this.ex2 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx3() { + return this.ex3; + } + + public getServerVersion_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + this.ex3 = ex3; + return this; + } + + public void unsetEx3() { + this.ex3 = null; + } + + /** Returns true if field ex3 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx3() { + return this.ex3 != null; + } + + public void setEx3IsSet(boolean value) { + if (!value) { + this.ex3 = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.String)value); + } + break; + + case EX: + if (value == null) { + unsetEx(); + } else { + setEx((com.cinchapi.concourse.thrift.SecurityException)value); + } + break; + + case EX2: + if (value == null) { + unsetEx2(); + } else { + setEx2((com.cinchapi.concourse.thrift.TransactionException)value); + } + break; + + case EX3: + if (value == null) { + unsetEx3(); + } else { + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case SUCCESS: + return getSuccess(); + + case EX: + return getEx(); + + case EX2: + return getEx2(); + + case EX3: + return getEx3(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case SUCCESS: + return isSetSuccess(); + case EX: + return isSetEx(); + case EX2: + return isSetEx2(); + case EX3: + return isSetEx3(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof getServerVersion_result) + return this.equals((getServerVersion_result)that); + return false; + } + + public boolean equals(getServerVersion_result that) { + if (that == null) + return false; + if (this == that) + return true; + + 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_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; + } + + boolean this_present_ex2 = true && this.isSetEx2(); + boolean that_present_ex2 = true && that.isSetEx2(); + if (this_present_ex2 || that_present_ex2) { + if (!(this_present_ex2 && that_present_ex2)) + return false; + if (!this.ex2.equals(that.ex2)) + return false; + } + + boolean this_present_ex3 = true && this.isSetEx3(); + boolean that_present_ex3 = true && that.isSetEx3(); + if (this_present_ex3 || that_present_ex3) { + if (!(this_present_ex3 && that_present_ex3)) + return false; + if (!this.ex3.equals(that.ex3)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); + if (isSetEx()) + hashCode = hashCode * 8191 + ex.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx2()) ? 131071 : 524287); + if (isSetEx2()) + hashCode = hashCode * 8191 + ex2.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx3()) ? 131071 : 524287); + if (isSetEx3()) + hashCode = hashCode * 8191 + ex3.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(getServerVersion_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetSuccess(), 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 = java.lang.Boolean.compare(isSetEx(), other.isSetEx()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex, other.ex); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx2(), other.isSetEx2()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx2()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex2, other.ex2); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx3(), other.isSetEx3()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx3()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex3, other.ex3); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("getServerVersion_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("ex:"); + if (this.ex == null) { + sb.append("null"); + } else { + sb.append(this.ex); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex2:"); + if (this.ex2 == null) { + sb.append("null"); + } else { + sb.append(this.ex2); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex3:"); + if (this.ex3 == null) { + sb.append("null"); + } else { + sb.append(this.ex3); + } + 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, java.lang.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 getServerVersion_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public getServerVersion_resultStandardScheme getScheme() { + return new getServerVersion_resultStandardScheme(); + } + } + + private static class getServerVersion_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, getServerVersion_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.STRING) { + struct.success = iprot.readString(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 1: // EX + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // EX2 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // EX3 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, getServerVersion_result struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.success != null) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeString(struct.success); + oprot.writeFieldEnd(); + } + if (struct.ex != null) { + oprot.writeFieldBegin(EX_FIELD_DESC); + struct.ex.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex2 != null) { + oprot.writeFieldBegin(EX2_FIELD_DESC); + struct.ex2.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex3 != null) { + oprot.writeFieldBegin(EX3_FIELD_DESC); + struct.ex3.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class getServerVersion_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override + public getServerVersion_resultTupleScheme getScheme() { + return new getServerVersion_resultTupleScheme(); + } + } + + private static class getServerVersion_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, getServerVersion_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetSuccess()) { + optionals.set(0); + } + if (struct.isSetEx()) { + optionals.set(1); + } + if (struct.isSetEx2()) { + optionals.set(2); + } + if (struct.isSetEx3()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); + if (struct.isSetSuccess()) { + oprot.writeString(struct.success); + } + if (struct.isSetEx()) { + struct.ex.write(oprot); + } + if (struct.isSetEx2()) { + struct.ex2.write(oprot); + } + if (struct.isSetEx3()) { + struct.ex3.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, getServerVersion_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(4); + if (incoming.get(0)) { + struct.success = iprot.readString(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { + struct.ex = new com.cinchapi.concourse.thrift.SecurityException(); + struct.ex.read(iprot); + struct.setExIsSet(true); + } + if (incoming.get(2)) { + struct.ex2 = new com.cinchapi.concourse.thrift.TransactionException(); + struct.ex2.read(iprot); + struct.setEx2IsSet(true); + } + if (incoming.get(3)) { + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3.read(iprot); + struct.setEx3IsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class time_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("time_args"); + + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new time_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new time_argsTupleSchemeFactory(); + + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token; // required + public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { + CREDS((short)1, "creds"), + TOKEN((short)2, "token"), + ENVIRONMENT((short)3, "environment"); + + private static final java.util.Map byName = new java.util.LinkedHashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // CREDS + return CREDS; + case 2: // TOKEN + return TOKEN; + case 3: // ENVIRONMENT + return ENVIRONMENT; + 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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); + tmpMap.put(_Fields.TOKEN, new org.apache.thrift.meta_data.FieldMetaData("token", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); + tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(time_args.class, metaDataMap); + } + + public time_args() { + } + + public time_args( + com.cinchapi.concourse.thrift.AccessToken creds, + com.cinchapi.concourse.thrift.TransactionToken token, + java.lang.String environment) + { + this(); + this.creds = creds; + this.token = token; + this.environment = environment; + } + + /** + * Performs a deep copy on other. + */ + public time_args(time_args other) { + if (other.isSetCreds()) { + this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); + } + if (other.isSetToken()) { + this.token = new com.cinchapi.concourse.thrift.TransactionToken(other.token); + } + if (other.isSetEnvironment()) { + this.environment = other.environment; + } + } + + @Override + public time_args deepCopy() { + return new time_args(this); + } + + @Override + public void clear() { + this.creds = null; + this.token = null; + this.environment = null; + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.AccessToken getCreds() { + return this.creds; + } + + public time_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + this.creds = creds; + return this; + } + + public void unsetCreds() { + this.creds = null; + } + + /** Returns true if field creds is set (has been assigned a value) and false otherwise */ + public boolean isSetCreds() { + return this.creds != null; + } + + public void setCredsIsSet(boolean value) { + if (!value) { + this.creds = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionToken getToken() { + return this.token; + } + + public time_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token) { + this.token = token; + return this; + } + + public void unsetToken() { + this.token = null; + } + + /** Returns true if field token is set (has been assigned a value) and false otherwise */ + public boolean isSetToken() { + return this.token != null; + } + + public void setTokenIsSet(boolean value) { + if (!value) { + this.token = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getEnvironment() { + return this.environment; + } + + public time_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + this.environment = environment; + return this; + } + + public void unsetEnvironment() { + this.environment = null; + } + + /** Returns true if field environment is set (has been assigned a value) and false otherwise */ + public boolean isSetEnvironment() { + return this.environment != null; + } + + public void setEnvironmentIsSet(boolean value) { + if (!value) { + this.environment = null; + } + } + + @Override + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { case CREDS: if (value == null) { unsetCreds(); @@ -684208,11 +690583,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TRANSACTION: + case TOKEN: if (value == null) { - unsetTransaction(); + unsetToken(); } else { - setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); + setToken((com.cinchapi.concourse.thrift.TransactionToken)value); } break; @@ -684231,17 +690606,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CRITERIA: - return getCriteria(); - - case JSON: - return getJson(); - case CREDS: return getCreds(); - case TRANSACTION: - return getTransaction(); + case TOKEN: + return getToken(); case ENVIRONMENT: return getEnvironment(); @@ -684258,14 +690627,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case CRITERIA: - return isSetCriteria(); - case JSON: - return isSetJson(); case CREDS: return isSetCreds(); - case TRANSACTION: - return isSetTransaction(); + case TOKEN: + return isSetToken(); case ENVIRONMENT: return isSetEnvironment(); } @@ -684274,35 +690639,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findOrInsertCriteriaJson_args) - return this.equals((findOrInsertCriteriaJson_args)that); + if (that instanceof time_args) + return this.equals((time_args)that); return false; } - public boolean equals(findOrInsertCriteriaJson_args that) { + public boolean equals(time_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_criteria = true && this.isSetCriteria(); - boolean that_present_criteria = true && that.isSetCriteria(); - if (this_present_criteria || that_present_criteria) { - if (!(this_present_criteria && that_present_criteria)) - return false; - if (!this.criteria.equals(that.criteria)) - return false; - } - - boolean this_present_json = true && this.isSetJson(); - boolean that_present_json = true && that.isSetJson(); - if (this_present_json || that_present_json) { - if (!(this_present_json && that_present_json)) - return false; - if (!this.json.equals(that.json)) - return false; - } - boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -684312,12 +690659,12 @@ public boolean equals(findOrInsertCriteriaJson_args that) { return false; } - boolean this_present_transaction = true && this.isSetTransaction(); - boolean that_present_transaction = true && that.isSetTransaction(); - if (this_present_transaction || that_present_transaction) { - if (!(this_present_transaction && that_present_transaction)) + boolean this_present_token = true && this.isSetToken(); + boolean that_present_token = true && that.isSetToken(); + if (this_present_token || that_present_token) { + if (!(this_present_token && that_present_token)) return false; - if (!this.transaction.equals(that.transaction)) + if (!this.token.equals(that.token)) return false; } @@ -684337,21 +690684,13 @@ public boolean equals(findOrInsertCriteriaJson_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); - if (isSetCriteria()) - hashCode = hashCode * 8191 + criteria.hashCode(); - - hashCode = hashCode * 8191 + ((isSetJson()) ? 131071 : 524287); - if (isSetJson()) - hashCode = hashCode * 8191 + json.hashCode(); - hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); - hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); - if (isSetTransaction()) - hashCode = hashCode * 8191 + transaction.hashCode(); + hashCode = hashCode * 8191 + ((isSetToken()) ? 131071 : 524287); + if (isSetToken()) + hashCode = hashCode * 8191 + token.hashCode(); hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); if (isSetEnvironment()) @@ -684361,33 +690700,13 @@ public int hashCode() { } @Override - public int compareTo(findOrInsertCriteriaJson_args other) { + public int compareTo(time_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCriteria(), other.isSetCriteria()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetCriteria()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.criteria, other.criteria); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetJson(), other.isSetJson()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetJson()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.json, other.json); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -684398,12 +690717,12 @@ public int compareTo(findOrInsertCriteriaJson_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); + lastComparison = java.lang.Boolean.compare(isSetToken(), other.isSetToken()); if (lastComparison != 0) { return lastComparison; } - if (isSetTransaction()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); + if (isSetToken()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.token, other.token); if (lastComparison != 0) { return lastComparison; } @@ -684439,25 +690758,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrInsertCriteriaJson_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("time_args("); boolean first = true; - sb.append("criteria:"); - if (this.criteria == null) { - sb.append("null"); - } else { - sb.append(this.criteria); - } - first = false; - if (!first) sb.append(", "); - sb.append("json:"); - if (this.json == null) { - sb.append("null"); - } else { - sb.append(this.json); - } - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -684466,11 +690769,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("transaction:"); - if (this.transaction == null) { + sb.append("token:"); + if (this.token == null) { sb.append("null"); } else { - sb.append(this.transaction); + sb.append(this.token); } first = false; if (!first) sb.append(", "); @@ -684488,14 +690791,11 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity - if (criteria != null) { - criteria.validate(); - } if (creds != null) { creds.validate(); } - if (transaction != null) { - transaction.validate(); + if (token != null) { + token.validate(); } } @@ -684515,17 +690815,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findOrInsertCriteriaJson_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class time_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrInsertCriteriaJson_argsStandardScheme getScheme() { - return new findOrInsertCriteriaJson_argsStandardScheme(); + public time_argsStandardScheme getScheme() { + return new time_argsStandardScheme(); } } - private static class findOrInsertCriteriaJson_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class time_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteriaJson_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, time_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -684535,24 +690835,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteri break; } switch (schemeField.id) { - case 1: // CRITERIA - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // JSON - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.json = iprot.readString(); - struct.setJsonIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // CREDS + case 1: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -684561,16 +690844,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteri org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 2: // TOKEN if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.transaction.read(iprot); - struct.setTransactionIsSet(true); + struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.token.read(iprot); + struct.setTokenIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 3: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -684590,28 +690873,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteri } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCriteriaJson_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, time_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.criteria != null) { - oprot.writeFieldBegin(CRITERIA_FIELD_DESC); - struct.criteria.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.json != null) { - oprot.writeFieldBegin(JSON_FIELD_DESC); - oprot.writeString(struct.json); - oprot.writeFieldEnd(); - } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); oprot.writeFieldEnd(); } - if (struct.transaction != null) { - oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); - struct.transaction.write(oprot); + if (struct.token != null) { + oprot.writeFieldBegin(TOKEN_FIELD_DESC); + struct.token.write(oprot); oprot.writeFieldEnd(); } if (struct.environment != null) { @@ -684625,46 +690898,34 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCriter } - private static class findOrInsertCriteriaJson_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class time_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrInsertCriteriaJson_argsTupleScheme getScheme() { - return new findOrInsertCriteriaJson_argsTupleScheme(); + public time_argsTupleScheme getScheme() { + return new time_argsTupleScheme(); } } - private static class findOrInsertCriteriaJson_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class time_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteriaJson_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, time_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCriteria()) { + if (struct.isSetCreds()) { optionals.set(0); } - if (struct.isSetJson()) { + if (struct.isSetToken()) { optionals.set(1); } - if (struct.isSetCreds()) { - optionals.set(2); - } - if (struct.isSetTransaction()) { - optionals.set(3); - } if (struct.isSetEnvironment()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetCriteria()) { - struct.criteria.write(oprot); - } - if (struct.isSetJson()) { - oprot.writeString(struct.json); + optionals.set(2); } + oprot.writeBitSet(optionals, 3); if (struct.isSetCreds()) { struct.creds.write(oprot); } - if (struct.isSetTransaction()) { - struct.transaction.write(oprot); + if (struct.isSetToken()) { + struct.token.write(oprot); } if (struct.isSetEnvironment()) { oprot.writeString(struct.environment); @@ -684672,29 +690933,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteri } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteriaJson_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, time_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { - struct.criteria = new com.cinchapi.concourse.thrift.TCriteria(); - struct.criteria.read(iprot); - struct.setCriteriaIsSet(true); - } - if (incoming.get(1)) { - struct.json = iprot.readString(); - struct.setJsonIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { - struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.transaction.read(iprot); - struct.setTransactionIsSet(true); + if (incoming.get(1)) { + struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.token.read(iprot); + struct.setTokenIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(2)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -684706,31 +690958,28 @@ private static S scheme(org.apache. } } - public static class findOrInsertCriteriaJson_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrInsertCriteriaJson_result"); + public static class time_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("time_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrInsertCriteriaJson_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrInsertCriteriaJson_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new time_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new time_resultTupleSchemeFactory(); public long success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -684754,8 +691003,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -684811,22 +691058,19 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.DuplicateEntryException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrInsertCriteriaJson_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(time_result.class, metaDataMap); } - public findOrInsertCriteriaJson_result() { + public time_result() { } - public findOrInsertCriteriaJson_result( + public time_result( long success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.DuplicateEntryException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; @@ -684834,13 +691078,12 @@ public findOrInsertCriteriaJson_result( this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public findOrInsertCriteriaJson_result(findOrInsertCriteriaJson_result other) { + public time_result(time_result other) { __isset_bitfield = other.__isset_bitfield; this.success = other.success; if (other.isSetEx()) { @@ -684850,16 +691093,13 @@ public findOrInsertCriteriaJson_result(findOrInsertCriteriaJson_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.DuplicateEntryException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public findOrInsertCriteriaJson_result deepCopy() { - return new findOrInsertCriteriaJson_result(this); + public time_result deepCopy() { + return new time_result(this); } @Override @@ -684869,14 +691109,13 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } public long getSuccess() { return this.success; } - public findOrInsertCriteriaJson_result setSuccess(long success) { + public time_result setSuccess(long success) { this.success = success; setSuccessIsSet(true); return this; @@ -684900,7 +691139,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findOrInsertCriteriaJson_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public time_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -684925,7 +691164,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findOrInsertCriteriaJson_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public time_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -684946,11 +691185,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.DuplicateEntryException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public findOrInsertCriteriaJson_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex3) { + public time_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -684970,31 +691209,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public findOrInsertCriteriaJson_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -685026,15 +691240,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.DuplicateEntryException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -685057,9 +691263,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -685080,20 +691283,18 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof findOrInsertCriteriaJson_result) - return this.equals((findOrInsertCriteriaJson_result)that); + if (that instanceof time_result) + return this.equals((time_result)that); return false; } - public boolean equals(findOrInsertCriteriaJson_result that) { + public boolean equals(time_result that) { if (that == null) return false; if (this == that) @@ -685135,15 +691336,6 @@ public boolean equals(findOrInsertCriteriaJson_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -685165,15 +691357,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(findOrInsertCriteriaJson_result other) { + public int compareTo(time_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -685220,16 +691408,6 @@ public int compareTo(findOrInsertCriteriaJson_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -685250,7 +691428,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrInsertCriteriaJson_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("time_result("); boolean first = true; sb.append("success:"); @@ -685280,14 +691458,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -685315,17 +691485,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findOrInsertCriteriaJson_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class time_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrInsertCriteriaJson_resultStandardScheme getScheme() { - return new findOrInsertCriteriaJson_resultStandardScheme(); + public time_resultStandardScheme getScheme() { + return new time_resultStandardScheme(); } } - private static class findOrInsertCriteriaJson_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class time_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteriaJson_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, time_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -685363,22 +691533,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteri break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.DuplicateEntryException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -685391,7 +691552,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCriteri } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCriteriaJson_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, time_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -685415,28 +691576,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCriter struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class findOrInsertCriteriaJson_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class time_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrInsertCriteriaJson_resultTupleScheme getScheme() { - return new findOrInsertCriteriaJson_resultTupleScheme(); + public time_resultTupleScheme getScheme() { + return new time_resultTupleScheme(); } } - private static class findOrInsertCriteriaJson_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class time_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteriaJson_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, time_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -685451,10 +691607,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteri if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { oprot.writeI64(struct.success); } @@ -685467,15 +691620,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteri if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteriaJson_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, time_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.success = iprot.readI64(); struct.setSuccessIsSet(true); @@ -685491,15 +691641,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCriteria struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.DuplicateEntryException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -685508,31 +691653,28 @@ private static S scheme(org.apache. } } - public static class findOrInsertCclJson_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrInsertCclJson_args"); + public static class timePhrase_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("timePhrase_args"); - private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField JSON_FIELD_DESC = new org.apache.thrift.protocol.TField("json", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField PHRASE_FIELD_DESC = new org.apache.thrift.protocol.TField("phrase", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrInsertCclJson_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrInsertCclJson_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new timePhrase_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new timePhrase_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required - public @org.apache.thrift.annotation.Nullable java.lang.String json; // required + public @org.apache.thrift.annotation.Nullable java.lang.String phrase; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CCL((short)1, "ccl"), - JSON((short)2, "json"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + PHRASE((short)1, "phrase"), + CREDS((short)2, "creds"), + TOKEN((short)3, "token"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -685548,15 +691690,13 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CCL - return CCL; - case 2: // JSON - return JSON; - case 3: // CREDS + case 1: // PHRASE + return PHRASE; + case 2: // CREDS return CREDS; - case 4: // TRANSACTION - return TRANSACTION; - case 5: // ENVIRONMENT + case 3: // TOKEN + return TOKEN; + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -685604,53 +691744,46 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.JSON, new org.apache.thrift.meta_data.FieldMetaData("json", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.PHRASE, new org.apache.thrift.meta_data.FieldMetaData("phrase", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); - tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.TOKEN, new org.apache.thrift.meta_data.FieldMetaData("token", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrInsertCclJson_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(timePhrase_args.class, metaDataMap); } - public findOrInsertCclJson_args() { + public timePhrase_args() { } - public findOrInsertCclJson_args( - java.lang.String ccl, - java.lang.String json, + public timePhrase_args( + java.lang.String phrase, com.cinchapi.concourse.thrift.AccessToken creds, - com.cinchapi.concourse.thrift.TransactionToken transaction, + com.cinchapi.concourse.thrift.TransactionToken token, java.lang.String environment) { this(); - this.ccl = ccl; - this.json = json; + this.phrase = phrase; this.creds = creds; - this.transaction = transaction; + this.token = token; this.environment = environment; } /** * Performs a deep copy on other. */ - public findOrInsertCclJson_args(findOrInsertCclJson_args other) { - if (other.isSetCcl()) { - this.ccl = other.ccl; - } - if (other.isSetJson()) { - this.json = other.json; + public timePhrase_args(timePhrase_args other) { + if (other.isSetPhrase()) { + this.phrase = other.phrase; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } - if (other.isSetTransaction()) { - this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); + if (other.isSetToken()) { + this.token = new com.cinchapi.concourse.thrift.TransactionToken(other.token); } if (other.isSetEnvironment()) { this.environment = other.environment; @@ -685658,66 +691791,40 @@ public findOrInsertCclJson_args(findOrInsertCclJson_args other) { } @Override - public findOrInsertCclJson_args deepCopy() { - return new findOrInsertCclJson_args(this); + public timePhrase_args deepCopy() { + return new timePhrase_args(this); } @Override public void clear() { - this.ccl = null; - this.json = null; + this.phrase = null; this.creds = null; - this.transaction = null; + this.token = null; this.environment = null; } @org.apache.thrift.annotation.Nullable - public java.lang.String getCcl() { - return this.ccl; - } - - public findOrInsertCclJson_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { - this.ccl = ccl; - return this; - } - - public void unsetCcl() { - this.ccl = null; - } - - /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ - public boolean isSetCcl() { - return this.ccl != null; - } - - public void setCclIsSet(boolean value) { - if (!value) { - this.ccl = null; - } - } - - @org.apache.thrift.annotation.Nullable - public java.lang.String getJson() { - return this.json; + public java.lang.String getPhrase() { + return this.phrase; } - public findOrInsertCclJson_args setJson(@org.apache.thrift.annotation.Nullable java.lang.String json) { - this.json = json; + public timePhrase_args setPhrase(@org.apache.thrift.annotation.Nullable java.lang.String phrase) { + this.phrase = phrase; return this; } - public void unsetJson() { - this.json = null; + public void unsetPhrase() { + this.phrase = null; } - /** Returns true if field json is set (has been assigned a value) and false otherwise */ - public boolean isSetJson() { - return this.json != null; + /** Returns true if field phrase is set (has been assigned a value) and false otherwise */ + public boolean isSetPhrase() { + return this.phrase != null; } - public void setJsonIsSet(boolean value) { + public void setPhraseIsSet(boolean value) { if (!value) { - this.json = null; + this.phrase = null; } } @@ -685726,7 +691833,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public findOrInsertCclJson_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public timePhrase_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -685747,27 +691854,27 @@ public void setCredsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { - return this.transaction; + public com.cinchapi.concourse.thrift.TransactionToken getToken() { + return this.token; } - public findOrInsertCclJson_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { - this.transaction = transaction; + public timePhrase_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token) { + this.token = token; return this; } - public void unsetTransaction() { - this.transaction = null; + public void unsetToken() { + this.token = null; } - /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ - public boolean isSetTransaction() { - return this.transaction != null; + /** Returns true if field token is set (has been assigned a value) and false otherwise */ + public boolean isSetToken() { + return this.token != null; } - public void setTransactionIsSet(boolean value) { + public void setTokenIsSet(boolean value) { if (!value) { - this.transaction = null; + this.token = null; } } @@ -685776,7 +691883,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public findOrInsertCclJson_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public timePhrase_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -685799,19 +691906,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case CCL: - if (value == null) { - unsetCcl(); - } else { - setCcl((java.lang.String)value); - } - break; - - case JSON: + case PHRASE: if (value == null) { - unsetJson(); + unsetPhrase(); } else { - setJson((java.lang.String)value); + setPhrase((java.lang.String)value); } break; @@ -685823,11 +691922,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TRANSACTION: + case TOKEN: if (value == null) { - unsetTransaction(); + unsetToken(); } else { - setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); + setToken((com.cinchapi.concourse.thrift.TransactionToken)value); } break; @@ -685846,17 +691945,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case CCL: - return getCcl(); - - case JSON: - return getJson(); + case PHRASE: + return getPhrase(); case CREDS: return getCreds(); - case TRANSACTION: - return getTransaction(); + case TOKEN: + return getToken(); case ENVIRONMENT: return getEnvironment(); @@ -685873,14 +691969,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case CCL: - return isSetCcl(); - case JSON: - return isSetJson(); + case PHRASE: + return isSetPhrase(); case CREDS: return isSetCreds(); - case TRANSACTION: - return isSetTransaction(); + case TOKEN: + return isSetToken(); case ENVIRONMENT: return isSetEnvironment(); } @@ -685889,32 +691983,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof findOrInsertCclJson_args) - return this.equals((findOrInsertCclJson_args)that); + if (that instanceof timePhrase_args) + return this.equals((timePhrase_args)that); return false; } - public boolean equals(findOrInsertCclJson_args that) { + public boolean equals(timePhrase_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_ccl = true && this.isSetCcl(); - boolean that_present_ccl = true && that.isSetCcl(); - if (this_present_ccl || that_present_ccl) { - if (!(this_present_ccl && that_present_ccl)) - return false; - if (!this.ccl.equals(that.ccl)) - return false; - } - - boolean this_present_json = true && this.isSetJson(); - boolean that_present_json = true && that.isSetJson(); - if (this_present_json || that_present_json) { - if (!(this_present_json && that_present_json)) + boolean this_present_phrase = true && this.isSetPhrase(); + boolean that_present_phrase = true && that.isSetPhrase(); + if (this_present_phrase || that_present_phrase) { + if (!(this_present_phrase && that_present_phrase)) return false; - if (!this.json.equals(that.json)) + if (!this.phrase.equals(that.phrase)) return false; } @@ -685927,12 +692012,12 @@ public boolean equals(findOrInsertCclJson_args that) { return false; } - boolean this_present_transaction = true && this.isSetTransaction(); - boolean that_present_transaction = true && that.isSetTransaction(); - if (this_present_transaction || that_present_transaction) { - if (!(this_present_transaction && that_present_transaction)) + boolean this_present_token = true && this.isSetToken(); + boolean that_present_token = true && that.isSetToken(); + if (this_present_token || that_present_token) { + if (!(this_present_token && that_present_token)) return false; - if (!this.transaction.equals(that.transaction)) + if (!this.token.equals(that.token)) return false; } @@ -685952,21 +692037,17 @@ public boolean equals(findOrInsertCclJson_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); - if (isSetCcl()) - hashCode = hashCode * 8191 + ccl.hashCode(); - - hashCode = hashCode * 8191 + ((isSetJson()) ? 131071 : 524287); - if (isSetJson()) - hashCode = hashCode * 8191 + json.hashCode(); + hashCode = hashCode * 8191 + ((isSetPhrase()) ? 131071 : 524287); + if (isSetPhrase()) + hashCode = hashCode * 8191 + phrase.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); - hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); - if (isSetTransaction()) - hashCode = hashCode * 8191 + transaction.hashCode(); + hashCode = hashCode * 8191 + ((isSetToken()) ? 131071 : 524287); + if (isSetToken()) + hashCode = hashCode * 8191 + token.hashCode(); hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); if (isSetEnvironment()) @@ -685976,29 +692057,19 @@ public int hashCode() { } @Override - public int compareTo(findOrInsertCclJson_args other) { + public int compareTo(timePhrase_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetCcl()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetJson(), other.isSetJson()); + lastComparison = java.lang.Boolean.compare(isSetPhrase(), other.isSetPhrase()); if (lastComparison != 0) { return lastComparison; } - if (isSetJson()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.json, other.json); + if (isSetPhrase()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.phrase, other.phrase); if (lastComparison != 0) { return lastComparison; } @@ -686013,12 +692084,12 @@ public int compareTo(findOrInsertCclJson_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); + lastComparison = java.lang.Boolean.compare(isSetToken(), other.isSetToken()); if (lastComparison != 0) { return lastComparison; } - if (isSetTransaction()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); + if (isSetToken()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.token, other.token); if (lastComparison != 0) { return lastComparison; } @@ -686054,22 +692125,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrInsertCclJson_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("timePhrase_args("); boolean first = true; - sb.append("ccl:"); - if (this.ccl == null) { - sb.append("null"); - } else { - sb.append(this.ccl); - } - first = false; - if (!first) sb.append(", "); - sb.append("json:"); - if (this.json == null) { + sb.append("phrase:"); + if (this.phrase == null) { sb.append("null"); } else { - sb.append(this.json); + sb.append(this.phrase); } first = false; if (!first) sb.append(", "); @@ -686081,11 +692144,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("transaction:"); - if (this.transaction == null) { + sb.append("token:"); + if (this.token == null) { sb.append("null"); } else { - sb.append(this.transaction); + sb.append(this.token); } first = false; if (!first) sb.append(", "); @@ -686106,8 +692169,8 @@ public void validate() throws org.apache.thrift.TException { if (creds != null) { creds.validate(); } - if (transaction != null) { - transaction.validate(); + if (token != null) { + token.validate(); } } @@ -686127,17 +692190,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findOrInsertCclJson_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class timePhrase_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrInsertCclJson_argsStandardScheme getScheme() { - return new findOrInsertCclJson_argsStandardScheme(); + public timePhrase_argsStandardScheme getScheme() { + return new timePhrase_argsStandardScheme(); } } - private static class findOrInsertCclJson_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class timePhrase_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -686147,23 +692210,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson break; } switch (schemeField.id) { - case 1: // CCL - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // JSON + case 1: // PHRASE if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.json = iprot.readString(); - struct.setJsonIsSet(true); + struct.phrase = iprot.readString(); + struct.setPhraseIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -686172,16 +692227,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TOKEN if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.transaction.read(iprot); - struct.setTransactionIsSet(true); + struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.token.read(iprot); + struct.setTokenIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -686201,18 +692256,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCclJson_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, timePhrase_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.ccl != null) { - oprot.writeFieldBegin(CCL_FIELD_DESC); - oprot.writeString(struct.ccl); - oprot.writeFieldEnd(); - } - if (struct.json != null) { - oprot.writeFieldBegin(JSON_FIELD_DESC); - oprot.writeString(struct.json); + if (struct.phrase != null) { + oprot.writeFieldBegin(PHRASE_FIELD_DESC); + oprot.writeString(struct.phrase); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -686220,9 +692270,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCclJso struct.creds.write(oprot); oprot.writeFieldEnd(); } - if (struct.transaction != null) { - oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); - struct.transaction.write(oprot); + if (struct.token != null) { + oprot.writeFieldBegin(TOKEN_FIELD_DESC); + struct.token.write(oprot); oprot.writeFieldEnd(); } if (struct.environment != null) { @@ -686236,46 +692286,40 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCclJso } - private static class findOrInsertCclJson_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class timePhrase_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrInsertCclJson_argsTupleScheme getScheme() { - return new findOrInsertCclJson_argsTupleScheme(); + public timePhrase_argsTupleScheme getScheme() { + return new timePhrase_argsTupleScheme(); } } - private static class findOrInsertCclJson_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class timePhrase_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, timePhrase_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCcl()) { + if (struct.isSetPhrase()) { optionals.set(0); } - if (struct.isSetJson()) { + if (struct.isSetCreds()) { optionals.set(1); } - if (struct.isSetCreds()) { + if (struct.isSetToken()) { optionals.set(2); } - if (struct.isSetTransaction()) { - optionals.set(3); - } if (struct.isSetEnvironment()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetCcl()) { - oprot.writeString(struct.ccl); + optionals.set(3); } - if (struct.isSetJson()) { - oprot.writeString(struct.json); + oprot.writeBitSet(optionals, 4); + if (struct.isSetPhrase()) { + oprot.writeString(struct.phrase); } if (struct.isSetCreds()) { struct.creds.write(oprot); } - if (struct.isSetTransaction()) { - struct.transaction.write(oprot); + if (struct.isSetToken()) { + struct.token.write(oprot); } if (struct.isSetEnvironment()) { oprot.writeString(struct.environment); @@ -686283,28 +692327,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, timePhrase_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.ccl = iprot.readString(); - struct.setCclIsSet(true); + struct.phrase = iprot.readString(); + struct.setPhraseIsSet(true); } if (incoming.get(1)) { - struct.json = iprot.readString(); - struct.setJsonIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { - struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.transaction.read(iprot); - struct.setTransactionIsSet(true); + if (incoming.get(2)) { + struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.token.read(iprot); + struct.setTokenIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -686316,25 +692356,23 @@ private static S scheme(org.apache. } } - public static class findOrInsertCclJson_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("findOrInsertCclJson_result"); + public static class timePhrase_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("timePhrase_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new findOrInsertCclJson_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new findOrInsertCclJson_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new timePhrase_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new timePhrase_resultTupleSchemeFactory(); public long success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex4; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // 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 { @@ -686342,8 +692380,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { EX((short)1, "ex"), EX2((short)2, "ex2"), EX3((short)3, "ex3"), - EX4((short)4, "ex4"), - EX5((short)5, "ex5"); + EX4((short)4, "ex4"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -686369,8 +692406,6 @@ public static _Fields findByThriftId(int fieldId) { return EX3; case 4: // EX4 return EX4; - case 5: // EX5 - return EX5; default: return null; } @@ -686428,23 +692463,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.DuplicateEntryException.class))); - tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findOrInsertCclJson_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(timePhrase_result.class, metaDataMap); } - public findOrInsertCclJson_result() { + public timePhrase_result() { } - public findOrInsertCclJson_result( + public timePhrase_result( long success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.DuplicateEntryException ex4, - com.cinchapi.concourse.thrift.PermissionException ex5) + com.cinchapi.concourse.thrift.PermissionException ex4) { this(); this.success = success; @@ -686453,13 +692485,12 @@ public findOrInsertCclJson_result( this.ex2 = ex2; this.ex3 = ex3; this.ex4 = ex4; - this.ex5 = ex5; } /** * Performs a deep copy on other. */ - public findOrInsertCclJson_result(findOrInsertCclJson_result other) { + public timePhrase_result(timePhrase_result other) { __isset_bitfield = other.__isset_bitfield; this.success = other.success; if (other.isSetEx()) { @@ -686472,16 +692503,13 @@ public findOrInsertCclJson_result(findOrInsertCclJson_result other) { this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); } if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.DuplicateEntryException(other.ex4); - } - if (other.isSetEx5()) { - this.ex5 = new com.cinchapi.concourse.thrift.PermissionException(other.ex5); + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); } } @Override - public findOrInsertCclJson_result deepCopy() { - return new findOrInsertCclJson_result(this); + public timePhrase_result deepCopy() { + return new timePhrase_result(this); } @Override @@ -686492,14 +692520,13 @@ public void clear() { this.ex2 = null; this.ex3 = null; this.ex4 = null; - this.ex5 = null; } public long getSuccess() { return this.success; } - public findOrInsertCclJson_result setSuccess(long success) { + public timePhrase_result setSuccess(long success) { this.success = success; setSuccessIsSet(true); return this; @@ -686523,7 +692550,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public findOrInsertCclJson_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public timePhrase_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -686548,7 +692575,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public findOrInsertCclJson_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public timePhrase_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -686573,7 +692600,7 @@ public com.cinchapi.concourse.thrift.ParseException getEx3() { return this.ex3; } - public findOrInsertCclJson_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public timePhrase_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { this.ex3 = ex3; return this; } @@ -686594,11 +692621,11 @@ public void setEx3IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.DuplicateEntryException getEx4() { + public com.cinchapi.concourse.thrift.PermissionException getEx4() { return this.ex4; } - public findOrInsertCclJson_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.DuplicateEntryException ex4) { + public timePhrase_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { this.ex4 = ex4; return this; } @@ -686618,31 +692645,6 @@ public void setEx4IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx5() { - return this.ex5; - } - - public findOrInsertCclJson_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex5) { - this.ex5 = ex5; - return this; - } - - public void unsetEx5() { - this.ex5 = null; - } - - /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx5() { - return this.ex5 != null; - } - - public void setEx5IsSet(boolean value) { - if (!value) { - this.ex5 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -686682,15 +692684,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx4(); } else { - setEx4((com.cinchapi.concourse.thrift.DuplicateEntryException)value); - } - break; - - case EX5: - if (value == null) { - unsetEx5(); - } else { - setEx5((com.cinchapi.concourse.thrift.PermissionException)value); + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -686716,9 +692710,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX4: return getEx4(); - case EX5: - return getEx5(); - } throw new java.lang.IllegalStateException(); } @@ -686741,20 +692732,18 @@ public boolean isSet(_Fields field) { return isSetEx3(); case EX4: return isSetEx4(); - case EX5: - return isSetEx5(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof findOrInsertCclJson_result) - return this.equals((findOrInsertCclJson_result)that); + if (that instanceof timePhrase_result) + return this.equals((timePhrase_result)that); return false; } - public boolean equals(findOrInsertCclJson_result that) { + public boolean equals(timePhrase_result that) { if (that == null) return false; if (this == that) @@ -686805,15 +692794,6 @@ public boolean equals(findOrInsertCclJson_result that) { return false; } - boolean this_present_ex5 = true && this.isSetEx5(); - boolean that_present_ex5 = true && that.isSetEx5(); - if (this_present_ex5 || that_present_ex5) { - if (!(this_present_ex5 && that_present_ex5)) - return false; - if (!this.ex5.equals(that.ex5)) - return false; - } - return true; } @@ -686839,15 +692819,11 @@ public int hashCode() { if (isSetEx4()) hashCode = hashCode * 8191 + ex4.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); - if (isSetEx5()) - hashCode = hashCode * 8191 + ex5.hashCode(); - return hashCode; } @Override - public int compareTo(findOrInsertCclJson_result other) { + public int compareTo(timePhrase_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -686904,16 +692880,6 @@ public int compareTo(findOrInsertCclJson_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx5(), other.isSetEx5()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx5()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex5, other.ex5); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -686934,7 +692900,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("findOrInsertCclJson_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("timePhrase_result("); boolean first = true; sb.append("success:"); @@ -686972,14 +692938,6 @@ public java.lang.String toString() { sb.append(this.ex4); } first = false; - if (!first) sb.append(", "); - sb.append("ex5:"); - if (this.ex5 == null) { - sb.append("null"); - } else { - sb.append(this.ex5); - } - first = false; sb.append(")"); return sb.toString(); } @@ -687007,17 +692965,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class findOrInsertCclJson_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class timePhrase_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrInsertCclJson_resultStandardScheme getScheme() { - return new findOrInsertCclJson_resultStandardScheme(); + public timePhrase_resultStandardScheme getScheme() { + return new timePhrase_resultStandardScheme(); } } - private static class findOrInsertCclJson_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class timePhrase_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -687064,22 +693022,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson break; case 4: // EX4 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.DuplicateEntryException(); + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex4.read(iprot); struct.setEx4IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // EX5 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex5 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex5.read(iprot); - struct.setEx5IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -687092,7 +693041,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, findOrInsertCclJson } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCclJson_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, timePhrase_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -687121,28 +693070,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, findOrInsertCclJso struct.ex4.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex5 != null) { - oprot.writeFieldBegin(EX5_FIELD_DESC); - struct.ex5.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class findOrInsertCclJson_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class timePhrase_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public findOrInsertCclJson_resultTupleScheme getScheme() { - return new findOrInsertCclJson_resultTupleScheme(); + public timePhrase_resultTupleScheme getScheme() { + return new timePhrase_resultTupleScheme(); } } - private static class findOrInsertCclJson_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class timePhrase_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, timePhrase_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -687160,10 +693104,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson if (struct.isSetEx4()) { optionals.set(4); } - if (struct.isSetEx5()) { - optionals.set(5); - } - oprot.writeBitSet(optionals, 6); + oprot.writeBitSet(optionals, 5); if (struct.isSetSuccess()) { oprot.writeI64(struct.success); } @@ -687179,15 +693120,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson if (struct.isSetEx4()) { struct.ex4.write(oprot); } - if (struct.isSetEx5()) { - struct.ex5.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, timePhrase_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(6); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { struct.success = iprot.readI64(); struct.setSuccessIsSet(true); @@ -687208,15 +693146,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, findOrInsertCclJson_ struct.setEx3IsSet(true); } if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.DuplicateEntryException(); + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex4.read(iprot); struct.setEx4IsSet(true); } - if (incoming.get(5)) { - struct.ex5 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex5.read(iprot); - struct.setEx5IsSet(true); - } } } @@ -687225,25 +693158,28 @@ private static S scheme(org.apache. } } - public static class getServerEnvironment_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getServerEnvironment_args"); + public static class traceRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecord_args"); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getServerEnvironment_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getServerEnvironment_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecord_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecord_argsTupleSchemeFactory(); + public long record; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CREDS((short)1, "creds"), - TOKEN((short)2, "token"), - ENVIRONMENT((short)3, "environment"); + RECORD((short)1, "record"), + CREDS((short)2, "creds"), + TRANSACTION((short)3, "transaction"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -687259,11 +693195,13 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CREDS + case 1: // RECORD + return RECORD; + case 2: // CREDS return CREDS; - case 2: // TOKEN - return TOKEN; - case 3: // ENVIRONMENT + case 3: // TRANSACTION + return TRANSACTION; + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -687308,42 +693246,51 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); - tmpMap.put(_Fields.TOKEN, new org.apache.thrift.meta_data.FieldMetaData("token", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getServerEnvironment_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecord_args.class, metaDataMap); } - public getServerEnvironment_args() { + public traceRecord_args() { } - public getServerEnvironment_args( + public traceRecord_args( + long record, com.cinchapi.concourse.thrift.AccessToken creds, - com.cinchapi.concourse.thrift.TransactionToken token, + com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); + this.record = record; + setRecordIsSet(true); this.creds = creds; - this.token = token; + this.transaction = transaction; this.environment = environment; } /** * Performs a deep copy on other. */ - public getServerEnvironment_args(getServerEnvironment_args other) { + public traceRecord_args(traceRecord_args other) { + __isset_bitfield = other.__isset_bitfield; + this.record = other.record; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } - if (other.isSetToken()) { - this.token = new com.cinchapi.concourse.thrift.TransactionToken(other.token); + if (other.isSetTransaction()) { + this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); } if (other.isSetEnvironment()) { this.environment = other.environment; @@ -687351,23 +693298,48 @@ public getServerEnvironment_args(getServerEnvironment_args other) { } @Override - public getServerEnvironment_args deepCopy() { - return new getServerEnvironment_args(this); + public traceRecord_args deepCopy() { + return new traceRecord_args(this); } @Override public void clear() { + setRecordIsSet(false); + this.record = 0; this.creds = null; - this.token = null; + this.transaction = null; this.environment = null; } + public long getRecord() { + return this.record; + } + + public traceRecord_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public getServerEnvironment_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public traceRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -687388,27 +693360,27 @@ public void setCredsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionToken getToken() { - return this.token; + public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { + return this.transaction; } - public getServerEnvironment_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token) { - this.token = token; + public traceRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + this.transaction = transaction; return this; } - public void unsetToken() { - this.token = null; + public void unsetTransaction() { + this.transaction = null; } - /** Returns true if field token is set (has been assigned a value) and false otherwise */ - public boolean isSetToken() { - return this.token != null; + /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ + public boolean isSetTransaction() { + return this.transaction != null; } - public void setTokenIsSet(boolean value) { + public void setTransactionIsSet(boolean value) { if (!value) { - this.token = null; + this.transaction = null; } } @@ -687417,7 +693389,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public getServerEnvironment_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public traceRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -687440,6 +693412,14 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -687448,11 +693428,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TOKEN: + case TRANSACTION: if (value == null) { - unsetToken(); + unsetTransaction(); } else { - setToken((com.cinchapi.concourse.thrift.TransactionToken)value); + setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); } break; @@ -687471,11 +693451,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case RECORD: + return getRecord(); + case CREDS: return getCreds(); - case TOKEN: - return getToken(); + case TRANSACTION: + return getTransaction(); case ENVIRONMENT: return getEnvironment(); @@ -687492,10 +693475,12 @@ public boolean isSet(_Fields field) { } switch (field) { + case RECORD: + return isSetRecord(); case CREDS: return isSetCreds(); - case TOKEN: - return isSetToken(); + case TRANSACTION: + return isSetTransaction(); case ENVIRONMENT: return isSetEnvironment(); } @@ -687504,17 +693489,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getServerEnvironment_args) - return this.equals((getServerEnvironment_args)that); + if (that instanceof traceRecord_args) + return this.equals((traceRecord_args)that); return false; } - public boolean equals(getServerEnvironment_args that) { + public boolean equals(traceRecord_args that) { if (that == null) return false; if (this == that) return true; + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -687524,12 +693518,12 @@ public boolean equals(getServerEnvironment_args that) { return false; } - boolean this_present_token = true && this.isSetToken(); - boolean that_present_token = true && that.isSetToken(); - if (this_present_token || that_present_token) { - if (!(this_present_token && that_present_token)) + boolean this_present_transaction = true && this.isSetTransaction(); + boolean that_present_transaction = true && that.isSetTransaction(); + if (this_present_transaction || that_present_transaction) { + if (!(this_present_transaction && that_present_transaction)) return false; - if (!this.token.equals(that.token)) + if (!this.transaction.equals(that.transaction)) return false; } @@ -687549,13 +693543,15 @@ public boolean equals(getServerEnvironment_args that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); - hashCode = hashCode * 8191 + ((isSetToken()) ? 131071 : 524287); - if (isSetToken()) - hashCode = hashCode * 8191 + token.hashCode(); + hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); + if (isSetTransaction()) + hashCode = hashCode * 8191 + transaction.hashCode(); hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); if (isSetEnvironment()) @@ -687565,13 +693561,23 @@ public int hashCode() { } @Override - public int compareTo(getServerEnvironment_args other) { + public int compareTo(traceRecord_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -687582,12 +693588,12 @@ public int compareTo(getServerEnvironment_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetToken(), other.isSetToken()); + lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); if (lastComparison != 0) { return lastComparison; } - if (isSetToken()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.token, other.token); + if (isSetTransaction()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); if (lastComparison != 0) { return lastComparison; } @@ -687623,9 +693629,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getServerEnvironment_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecord_args("); boolean first = true; + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -687634,11 +693644,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("token:"); - if (this.token == null) { + sb.append("transaction:"); + if (this.transaction == null) { sb.append("null"); } else { - sb.append(this.token); + sb.append(this.transaction); } first = false; if (!first) sb.append(", "); @@ -687659,8 +693669,8 @@ public void validate() throws org.apache.thrift.TException { if (creds != null) { creds.validate(); } - if (token != null) { - token.validate(); + if (transaction != null) { + transaction.validate(); } } @@ -687674,23 +693684,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getServerEnvironment_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getServerEnvironment_argsStandardScheme getScheme() { - return new getServerEnvironment_argsStandardScheme(); + public traceRecord_argsStandardScheme getScheme() { + return new traceRecord_argsStandardScheme(); } } - private static class getServerEnvironment_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironment_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -687700,7 +693712,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironmen break; } switch (schemeField.id) { - case 1: // CREDS + case 1: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -687709,16 +693729,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironmen org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TOKEN + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.token.read(iprot); - struct.setTokenIsSet(true); + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -687738,18 +693758,21 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironmen } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getServerEnvironment_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecord_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); oprot.writeFieldEnd(); } - if (struct.token != null) { - oprot.writeFieldBegin(TOKEN_FIELD_DESC); - struct.token.write(oprot); + if (struct.transaction != null) { + oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); + struct.transaction.write(oprot); oprot.writeFieldEnd(); } if (struct.environment != null) { @@ -687763,34 +693786,40 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getServerEnvironme } - private static class getServerEnvironment_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getServerEnvironment_argsTupleScheme getScheme() { - return new getServerEnvironment_argsTupleScheme(); + public traceRecord_argsTupleScheme getScheme() { + return new traceRecord_argsTupleScheme(); } } - private static class getServerEnvironment_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getServerEnvironment_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCreds()) { + if (struct.isSetRecord()) { optionals.set(0); } - if (struct.isSetToken()) { + if (struct.isSetCreds()) { optionals.set(1); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetEnvironment()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } - if (struct.isSetToken()) { - struct.token.write(oprot); + if (struct.isSetTransaction()) { + struct.transaction.write(oprot); } if (struct.isSetEnvironment()) { oprot.writeString(struct.environment); @@ -687798,20 +693827,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getServerEnvironmen } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getServerEnvironment_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecord_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(1)) { - struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.token.read(iprot); - struct.setTokenIsSet(true); - } if (incoming.get(2)) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -687823,18 +693856,18 @@ private static S scheme(org.apache. } } - public static class getServerEnvironment_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getServerEnvironment_result"); + public static class traceRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecord_result"); - 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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getServerEnvironment_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getServerEnvironment_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecord_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecord_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -687915,7 +693948,10 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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.STRING))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -687923,14 +693959,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getServerEnvironment_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecord_result.class, metaDataMap); } - public getServerEnvironment_result() { + public traceRecord_result() { } - public getServerEnvironment_result( - java.lang.String success, + public traceRecord_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -687945,9 +693981,21 @@ public getServerEnvironment_result( /** * Performs a deep copy on other. */ - public getServerEnvironment_result(getServerEnvironment_result other) { + public traceRecord_result(traceRecord_result other) { if (other.isSetSuccess()) { - this.success = other.success; + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { + + java.lang.String other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); + + java.lang.String __this__success_copy_key = other_element_key; + + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); + + __this__success.put(__this__success_copy_key, __this__success_copy_value); + } + this.success = __this__success; } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); @@ -687961,8 +694009,8 @@ public getServerEnvironment_result(getServerEnvironment_result other) { } @Override - public getServerEnvironment_result deepCopy() { - return new getServerEnvironment_result(this); + public traceRecord_result deepCopy() { + return new traceRecord_result(this); } @Override @@ -687973,12 +694021,23 @@ public void clear() { this.ex3 = null; } + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(java.lang.String key, java.util.Set val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap>(); + } + this.success.put(key, val); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public getServerEnvironment_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String success) { + public traceRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -688003,7 +694062,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getServerEnvironment_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public traceRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -688028,7 +694087,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getServerEnvironment_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public traceRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -688053,7 +694112,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getServerEnvironment_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public traceRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -688080,7 +694139,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.String)value); + setSuccess((java.util.Map>)value); } break; @@ -688153,12 +694212,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getServerEnvironment_result) - return this.equals((getServerEnvironment_result)that); + if (that instanceof traceRecord_result) + return this.equals((traceRecord_result)that); return false; } - public boolean equals(getServerEnvironment_result that) { + public boolean equals(traceRecord_result that) { if (that == null) return false; if (this == that) @@ -688227,7 +694286,7 @@ public int hashCode() { } @Override - public int compareTo(getServerEnvironment_result other) { + public int compareTo(traceRecord_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -688294,7 +694353,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getServerEnvironment_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecord_result("); boolean first = true; sb.append("success:"); @@ -688353,17 +694412,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getServerEnvironment_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getServerEnvironment_resultStandardScheme getScheme() { - return new getServerEnvironment_resultStandardScheme(); + public traceRecord_resultStandardScheme getScheme() { + return new traceRecord_resultStandardScheme(); } } - private static class getServerEnvironment_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironment_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -688374,8 +694433,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironmen } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.success = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map7040 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map7040.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7041; + @org.apache.thrift.annotation.Nullable java.util.Set _val7042; + for (int _i7043 = 0; _i7043 < _map7040.size; ++_i7043) + { + _key7041 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7044 = iprot.readSetBegin(); + _val7042 = new java.util.LinkedHashSet(2*_set7044.size); + long _elem7045; + for (int _i7046 = 0; _i7046 < _set7044.size; ++_i7046) + { + _elem7045 = iprot.readI64(); + _val7042.add(_elem7045); + } + iprot.readSetEnd(); + } + struct.success.put(_key7041, _val7042); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -688420,13 +694501,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerEnvironmen } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getServerEnvironment_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecord_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeString(struct.success); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter7047 : struct.success.entrySet()) + { + oprot.writeString(_iter7047.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7047.getValue().size())); + for (long _iter7048 : _iter7047.getValue()) + { + oprot.writeI64(_iter7048); + } + oprot.writeSetEnd(); + } + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -688450,17 +694546,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getServerEnvironme } - private static class getServerEnvironment_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getServerEnvironment_resultTupleScheme getScheme() { - return new getServerEnvironment_resultTupleScheme(); + public traceRecord_resultTupleScheme getScheme() { + return new traceRecord_resultTupleScheme(); } } - private static class getServerEnvironment_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getServerEnvironment_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -688477,7 +694573,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getServerEnvironmen } oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { - oprot.writeString(struct.success); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry> _iter7049 : struct.success.entrySet()) + { + oprot.writeString(_iter7049.getKey()); + { + oprot.writeI32(_iter7049.getValue().size()); + for (long _iter7050 : _iter7049.getValue()) + { + oprot.writeI64(_iter7050); + } + } + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -688491,11 +694600,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getServerEnvironmen } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getServerEnvironment_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecord_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.success = iprot.readString(); + { + org.apache.thrift.protocol.TMap _map7051 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map7051.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7052; + @org.apache.thrift.annotation.Nullable java.util.Set _val7053; + for (int _i7054 = 0; _i7054 < _map7051.size; ++_i7054) + { + _key7052 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7055 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val7053 = new java.util.LinkedHashSet(2*_set7055.size); + long _elem7056; + for (int _i7057 = 0; _i7057 < _set7055.size; ++_i7057) + { + _elem7056 = iprot.readI64(); + _val7053.add(_elem7056); + } + } + struct.success.put(_key7052, _val7053); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -688521,17 +694650,31 @@ private static S scheme(org.apache. } } - public static class getServerVersion_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getServerVersion_args"); + public static class traceRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordTime_args"); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getServerVersion_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getServerVersion_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordTime_argsTupleSchemeFactory(); + public long record; // required + public long timestamp; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required + public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { -; + RECORD((short)1, "record"), + TIMESTAMP((short)2, "timestamp"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -688547,6 +694690,16 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 1: // RECORD + return RECORD; + case 2: // TIMESTAMP + return TIMESTAMP; + case 3: // CREDS + return CREDS; + case 4: // TRANSACTION + return TRANSACTION; + case 5: // ENVIRONMENT + return ENVIRONMENT; default: return null; } @@ -688588,34 +694741,246 @@ public java.lang.String getFieldName() { return _fieldName; } } + + // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 1; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); + tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); + tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getServerVersion_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordTime_args.class, metaDataMap); } - public getServerVersion_args() { + public traceRecordTime_args() { + } + + public traceRecordTime_args( + long record, + long timestamp, + com.cinchapi.concourse.thrift.AccessToken creds, + com.cinchapi.concourse.thrift.TransactionToken transaction, + java.lang.String environment) + { + this(); + this.record = record; + setRecordIsSet(true); + this.timestamp = timestamp; + setTimestampIsSet(true); + this.creds = creds; + this.transaction = transaction; + this.environment = environment; } /** * Performs a deep copy on other. */ - public getServerVersion_args(getServerVersion_args other) { + public traceRecordTime_args(traceRecordTime_args other) { + __isset_bitfield = other.__isset_bitfield; + this.record = other.record; + this.timestamp = other.timestamp; + if (other.isSetCreds()) { + this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); + } + if (other.isSetTransaction()) { + this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); + } + if (other.isSetEnvironment()) { + this.environment = other.environment; + } } @Override - public getServerVersion_args deepCopy() { - return new getServerVersion_args(this); + public traceRecordTime_args deepCopy() { + return new traceRecordTime_args(this); } @Override public void clear() { + setRecordIsSet(false); + this.record = 0; + setTimestampIsSet(false); + this.timestamp = 0; + this.creds = null; + this.transaction = null; + this.environment = null; + } + + public long getRecord() { + return this.record; + } + + public traceRecordTime_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + + public long getTimestamp() { + return this.timestamp; + } + + public traceRecordTime_args setTimestamp(long timestamp) { + this.timestamp = timestamp; + setTimestampIsSet(true); + return this; + } + + public void unsetTimestamp() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + } + + public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.AccessToken getCreds() { + return this.creds; + } + + public traceRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + this.creds = creds; + return this; + } + + public void unsetCreds() { + this.creds = null; + } + + /** Returns true if field creds is set (has been assigned a value) and false otherwise */ + public boolean isSetCreds() { + return this.creds != null; + } + + public void setCredsIsSet(boolean value) { + if (!value) { + this.creds = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { + return this.transaction; + } + + public traceRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + this.transaction = transaction; + return this; + } + + public void unsetTransaction() { + this.transaction = null; + } + + /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ + public boolean isSetTransaction() { + return this.transaction != null; + } + + public void setTransactionIsSet(boolean value) { + if (!value) { + this.transaction = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getEnvironment() { + return this.environment; + } + + public traceRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + this.environment = environment; + return this; + } + + public void unsetEnvironment() { + this.environment = null; + } + + /** Returns true if field environment is set (has been assigned a value) and false otherwise */ + public boolean isSetEnvironment() { + return this.environment != null; + } + + public void setEnvironmentIsSet(boolean value) { + if (!value) { + this.environment = null; + } } @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.Long)value); + } + break; + + case CREDS: + if (value == null) { + unsetCreds(); + } else { + setCreds((com.cinchapi.concourse.thrift.AccessToken)value); + } + break; + + case TRANSACTION: + if (value == null) { + unsetTransaction(); + } else { + setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); + } + break; + + case ENVIRONMENT: + if (value == null) { + unsetEnvironment(); + } else { + setEnvironment((java.lang.String)value); + } + break; + } } @@ -688623,6 +694988,21 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case RECORD: + return getRecord(); + + case TIMESTAMP: + return getTimestamp(); + + case CREDS: + return getCreds(); + + case TRANSACTION: + return getTransaction(); + + case ENVIRONMENT: + return getEnvironment(); + } throw new java.lang.IllegalStateException(); } @@ -688635,23 +695015,78 @@ public boolean isSet(_Fields field) { } switch (field) { + case RECORD: + return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); + case CREDS: + return isSetCreds(); + case TRANSACTION: + return isSetTransaction(); + case ENVIRONMENT: + return isSetEnvironment(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getServerVersion_args) - return this.equals((getServerVersion_args)that); + if (that instanceof traceRecordTime_args) + return this.equals((traceRecordTime_args)that); return false; } - public boolean equals(getServerVersion_args that) { + public boolean equals(traceRecordTime_args that) { if (that == null) return false; if (this == that) return true; + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (this.timestamp != that.timestamp) + return false; + } + + boolean this_present_creds = true && this.isSetCreds(); + boolean that_present_creds = true && that.isSetCreds(); + if (this_present_creds || that_present_creds) { + if (!(this_present_creds && that_present_creds)) + return false; + if (!this.creds.equals(that.creds)) + return false; + } + + boolean this_present_transaction = true && this.isSetTransaction(); + boolean that_present_transaction = true && that.isSetTransaction(); + if (this_present_transaction || that_present_transaction) { + if (!(this_present_transaction && that_present_transaction)) + return false; + if (!this.transaction.equals(that.transaction)) + return false; + } + + boolean this_present_environment = true && this.isSetEnvironment(); + boolean that_present_environment = true && that.isSetEnvironment(); + if (this_present_environment || that_present_environment) { + if (!(this_present_environment && that_present_environment)) + return false; + if (!this.environment.equals(that.environment)) + return false; + } + return true; } @@ -688659,17 +695094,83 @@ public boolean equals(getServerVersion_args that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); + if (isSetCreds()) + hashCode = hashCode * 8191 + creds.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); + if (isSetTransaction()) + hashCode = hashCode * 8191 + transaction.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); + if (isSetEnvironment()) + hashCode = hashCode * 8191 + environment.hashCode(); + return hashCode; } @Override - public int compareTo(getServerVersion_args other) { + public int compareTo(traceRecordTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCreds()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.creds, other.creds); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTransaction()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEnvironment(), other.isSetEnvironment()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEnvironment()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.environment, other.environment); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -688691,9 +695192,40 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getServerVersion_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordTime_args("); boolean first = true; + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + sb.append(this.timestamp); + first = false; + if (!first) sb.append(", "); + sb.append("creds:"); + if (this.creds == null) { + sb.append("null"); + } else { + sb.append(this.creds); + } + first = false; + if (!first) sb.append(", "); + sb.append("transaction:"); + if (this.transaction == null) { + sb.append("null"); + } else { + sb.append(this.transaction); + } + first = false; + if (!first) sb.append(", "); + sb.append("environment:"); + if (this.environment == null) { + sb.append("null"); + } else { + sb.append(this.environment); + } + first = false; sb.append(")"); return sb.toString(); } @@ -688701,6 +695233,12 @@ public java.lang.String toString() { public void validate() throws org.apache.thrift.TException { // check for required fields // check for sub-struct validity + if (creds != null) { + creds.validate(); + } + if (transaction != null) { + transaction.validate(); + } } private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { @@ -688713,23 +695251,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 getServerVersion_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getServerVersion_argsStandardScheme getScheme() { - return new getServerVersion_argsStandardScheme(); + public traceRecordTime_argsStandardScheme getScheme() { + return new traceRecordTime_argsStandardScheme(); } } - private static class getServerVersion_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getServerVersion_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -688739,6 +695279,48 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerVersion_ar break; } switch (schemeField.id) { + case 1: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // CREDS + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // TRANSACTION + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // ENVIRONMENT + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -688751,33 +695333,109 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerVersion_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getServerVersion_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + if (struct.creds != null) { + oprot.writeFieldBegin(CREDS_FIELD_DESC); + struct.creds.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.transaction != null) { + oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); + struct.transaction.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.environment != null) { + oprot.writeFieldBegin(ENVIRONMENT_FIELD_DESC); + oprot.writeString(struct.environment); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getServerVersion_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getServerVersion_argsTupleScheme getScheme() { - return new getServerVersion_argsTupleScheme(); + public traceRecordTime_argsTupleScheme getScheme() { + return new traceRecordTime_argsTupleScheme(); } } - private static class getServerVersion_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getServerVersion_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetRecord()) { + optionals.set(0); + } + if (struct.isSetTimestamp()) { + optionals.set(1); + } + if (struct.isSetCreds()) { + optionals.set(2); + } + if (struct.isSetTransaction()) { + optionals.set(3); + } + if (struct.isSetEnvironment()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetTimestamp()) { + oprot.writeI64(struct.timestamp); + } + if (struct.isSetCreds()) { + struct.creds.write(oprot); + } + if (struct.isSetTransaction()) { + struct.transaction.write(oprot); + } + if (struct.isSetEnvironment()) { + oprot.writeString(struct.environment); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getServerVersion_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(5); + if (incoming.get(0)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(1)) { + struct.timestamp = iprot.readI64(); + struct.setTimestampIsSet(true); + } + if (incoming.get(2)) { + struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); + struct.creds.read(iprot); + struct.setCredsIsSet(true); + } + if (incoming.get(3)) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); + } + if (incoming.get(4)) { + struct.environment = iprot.readString(); + struct.setEnvironmentIsSet(true); + } } } @@ -688786,18 +695444,18 @@ private static S scheme(org.apache. } } - public static class getServerVersion_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getServerVersion_result"); + public static class traceRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordTime_result"); - 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 SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getServerVersion_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getServerVersion_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordTime_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -688878,7 +695536,10 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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.STRING))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -688886,14 +695547,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getServerVersion_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordTime_result.class, metaDataMap); } - public getServerVersion_result() { + public traceRecordTime_result() { } - public getServerVersion_result( - java.lang.String success, + public traceRecordTime_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -688908,9 +695569,21 @@ public getServerVersion_result( /** * Performs a deep copy on other. */ - public getServerVersion_result(getServerVersion_result other) { + public traceRecordTime_result(traceRecordTime_result other) { if (other.isSetSuccess()) { - this.success = other.success; + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { + + java.lang.String other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); + + java.lang.String __this__success_copy_key = other_element_key; + + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); + + __this__success.put(__this__success_copy_key, __this__success_copy_value); + } + this.success = __this__success; } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); @@ -688924,8 +695597,8 @@ public getServerVersion_result(getServerVersion_result other) { } @Override - public getServerVersion_result deepCopy() { - return new getServerVersion_result(this); + public traceRecordTime_result deepCopy() { + return new traceRecordTime_result(this); } @Override @@ -688936,12 +695609,23 @@ public void clear() { this.ex3 = null; } + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(java.lang.String key, java.util.Set val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap>(); + } + this.success.put(key, val); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getSuccess() { + public java.util.Map> getSuccess() { return this.success; } - public getServerVersion_result setSuccess(@org.apache.thrift.annotation.Nullable java.lang.String success) { + public traceRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; return this; } @@ -688966,7 +695650,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public getServerVersion_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public traceRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -688991,7 +695675,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public getServerVersion_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public traceRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -689016,7 +695700,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public getServerVersion_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public traceRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -689043,7 +695727,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.String)value); + setSuccess((java.util.Map>)value); } break; @@ -689116,12 +695800,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getServerVersion_result) - return this.equals((getServerVersion_result)that); + if (that instanceof traceRecordTime_result) + return this.equals((traceRecordTime_result)that); return false; } - public boolean equals(getServerVersion_result that) { + public boolean equals(traceRecordTime_result that) { if (that == null) return false; if (this == that) @@ -689190,7 +695874,7 @@ public int hashCode() { } @Override - public int compareTo(getServerVersion_result other) { + public int compareTo(traceRecordTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -689257,7 +695941,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getServerVersion_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordTime_result("); boolean first = true; sb.append("success:"); @@ -689316,17 +696000,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getServerVersion_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getServerVersion_resultStandardScheme getScheme() { - return new getServerVersion_resultStandardScheme(); + public traceRecordTime_resultStandardScheme getScheme() { + return new traceRecordTime_resultStandardScheme(); } } - private static class getServerVersion_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, getServerVersion_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -689337,8 +696021,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerVersion_re } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.success = iprot.readString(); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map7058 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map7058.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7059; + @org.apache.thrift.annotation.Nullable java.util.Set _val7060; + for (int _i7061 = 0; _i7061 < _map7058.size; ++_i7061) + { + _key7059 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7062 = iprot.readSetBegin(); + _val7060 = new java.util.LinkedHashSet(2*_set7062.size); + long _elem7063; + for (int _i7064 = 0; _i7064 < _set7062.size; ++_i7064) + { + _elem7063 = iprot.readI64(); + _val7060.add(_elem7063); + } + iprot.readSetEnd(); + } + struct.success.put(_key7059, _val7060); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -689383,13 +696089,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getServerVersion_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, getServerVersion_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeString(struct.success); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter7065 : struct.success.entrySet()) + { + oprot.writeString(_iter7065.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7065.getValue().size())); + for (long _iter7066 : _iter7065.getValue()) + { + oprot.writeI64(_iter7066); + } + oprot.writeSetEnd(); + } + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -689413,17 +696134,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getServerVersion_r } - private static class getServerVersion_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public getServerVersion_resultTupleScheme getScheme() { - return new getServerVersion_resultTupleScheme(); + public traceRecordTime_resultTupleScheme getScheme() { + return new traceRecordTime_resultTupleScheme(); } } - private static class getServerVersion_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getServerVersion_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -689440,7 +696161,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getServerVersion_re } oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { - oprot.writeString(struct.success); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry> _iter7067 : struct.success.entrySet()) + { + oprot.writeString(_iter7067.getKey()); + { + oprot.writeI32(_iter7067.getValue().size()); + for (long _iter7068 : _iter7067.getValue()) + { + oprot.writeI64(_iter7068); + } + } + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -689454,11 +696188,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getServerVersion_re } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getServerVersion_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.success = iprot.readString(); + { + org.apache.thrift.protocol.TMap _map7069 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map7069.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7070; + @org.apache.thrift.annotation.Nullable java.util.Set _val7071; + for (int _i7072 = 0; _i7072 < _map7069.size; ++_i7072) + { + _key7070 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7073 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val7071 = new java.util.LinkedHashSet(2*_set7073.size); + long _elem7074; + for (int _i7075 = 0; _i7075 < _set7073.size; ++_i7075) + { + _elem7074 = iprot.readI64(); + _val7071.add(_elem7074); + } + } + struct.success.put(_key7070, _val7071); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -689484,25 +696238,31 @@ private static S scheme(org.apache. } } - public static class time_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("time_args"); + public static class traceRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordTimestr_args"); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new time_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new time_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordTimestr_argsTupleSchemeFactory(); + public long record; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - CREDS((short)1, "creds"), - TOKEN((short)2, "token"), - ENVIRONMENT((short)3, "environment"); + RECORD((short)1, "record"), + TIMESTAMP((short)2, "timestamp"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -689518,11 +696278,15 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // CREDS + case 1: // RECORD + return RECORD; + case 2: // TIMESTAMP + return TIMESTAMP; + case 3: // CREDS return CREDS; - case 2: // TOKEN - return TOKEN; - case 3: // ENVIRONMENT + case 4: // TRANSACTION + return TRANSACTION; + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -689567,42 +696331,58 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __RECORD_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); - tmpMap.put(_Fields.TOKEN, new org.apache.thrift.meta_data.FieldMetaData("token", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(time_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordTimestr_args.class, metaDataMap); } - public time_args() { + public traceRecordTimestr_args() { } - public time_args( + public traceRecordTimestr_args( + long record, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, - com.cinchapi.concourse.thrift.TransactionToken token, + com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); + this.record = record; + setRecordIsSet(true); + this.timestamp = timestamp; this.creds = creds; - this.token = token; + this.transaction = transaction; this.environment = environment; } /** * Performs a deep copy on other. */ - public time_args(time_args other) { + public traceRecordTimestr_args(traceRecordTimestr_args other) { + __isset_bitfield = other.__isset_bitfield; + this.record = other.record; + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } - if (other.isSetToken()) { - this.token = new com.cinchapi.concourse.thrift.TransactionToken(other.token); + if (other.isSetTransaction()) { + this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); } if (other.isSetEnvironment()) { this.environment = other.environment; @@ -689610,23 +696390,74 @@ public time_args(time_args other) { } @Override - public time_args deepCopy() { - return new time_args(this); + public traceRecordTimestr_args deepCopy() { + return new traceRecordTimestr_args(this); } @Override public void clear() { + setRecordIsSet(false); + this.record = 0; + this.timestamp = null; this.creds = null; - this.token = null; + this.transaction = null; this.environment = null; } + public long getRecord() { + return this.record; + } + + public traceRecordTimestr_args setRecord(long record) { + this.record = record; + setRecordIsSet(true); + return this; + } + + public void unsetRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + /** Returns true if field record is set (has been assigned a value) and false otherwise */ + public boolean isSetRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + } + + public void setRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { + return this.timestamp; + } + + public traceRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { + this.timestamp = timestamp; + return this; + } + + public void unsetTimestamp() { + this.timestamp = null; + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return this.timestamp != null; + } + + public void setTimestampIsSet(boolean value) { + if (!value) { + this.timestamp = null; + } + } + @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public time_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public traceRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -689647,27 +696478,27 @@ public void setCredsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionToken getToken() { - return this.token; + public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { + return this.transaction; } - public time_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token) { - this.token = token; + public traceRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + this.transaction = transaction; return this; } - public void unsetToken() { - this.token = null; + public void unsetTransaction() { + this.transaction = null; } - /** Returns true if field token is set (has been assigned a value) and false otherwise */ - public boolean isSetToken() { - return this.token != null; + /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ + public boolean isSetTransaction() { + return this.transaction != null; } - public void setTokenIsSet(boolean value) { + public void setTransactionIsSet(boolean value) { if (!value) { - this.token = null; + this.transaction = null; } } @@ -689676,7 +696507,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public time_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public traceRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -689699,6 +696530,22 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case RECORD: + if (value == null) { + unsetRecord(); + } else { + setRecord((java.lang.Long)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.String)value); + } + break; + case CREDS: if (value == null) { unsetCreds(); @@ -689707,11 +696554,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TOKEN: + case TRANSACTION: if (value == null) { - unsetToken(); + unsetTransaction(); } else { - setToken((com.cinchapi.concourse.thrift.TransactionToken)value); + setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); } break; @@ -689730,11 +696577,17 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case RECORD: + return getRecord(); + + case TIMESTAMP: + return getTimestamp(); + case CREDS: return getCreds(); - case TOKEN: - return getToken(); + case TRANSACTION: + return getTransaction(); case ENVIRONMENT: return getEnvironment(); @@ -689751,10 +696604,14 @@ public boolean isSet(_Fields field) { } switch (field) { + case RECORD: + return isSetRecord(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); - case TOKEN: - return isSetToken(); + case TRANSACTION: + return isSetTransaction(); case ENVIRONMENT: return isSetEnvironment(); } @@ -689763,17 +696620,35 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof time_args) - return this.equals((time_args)that); + if (that instanceof traceRecordTimestr_args) + return this.equals((traceRecordTimestr_args)that); return false; } - public boolean equals(time_args that) { + public boolean equals(traceRecordTimestr_args that) { if (that == null) return false; if (this == that) return true; + boolean this_present_record = true; + boolean that_present_record = true; + if (this_present_record || that_present_record) { + if (!(this_present_record && that_present_record)) + return false; + if (this.record != that.record) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (!this.timestamp.equals(that.timestamp)) + return false; + } + boolean this_present_creds = true && this.isSetCreds(); boolean that_present_creds = true && that.isSetCreds(); if (this_present_creds || that_present_creds) { @@ -689783,12 +696658,12 @@ public boolean equals(time_args that) { return false; } - boolean this_present_token = true && this.isSetToken(); - boolean that_present_token = true && that.isSetToken(); - if (this_present_token || that_present_token) { - if (!(this_present_token && that_present_token)) + boolean this_present_transaction = true && this.isSetTransaction(); + boolean that_present_transaction = true && that.isSetTransaction(); + if (this_present_transaction || that_present_transaction) { + if (!(this_present_transaction && that_present_transaction)) return false; - if (!this.token.equals(that.token)) + if (!this.transaction.equals(that.transaction)) return false; } @@ -689808,13 +696683,19 @@ public boolean equals(time_args that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); - hashCode = hashCode * 8191 + ((isSetToken()) ? 131071 : 524287); - if (isSetToken()) - hashCode = hashCode * 8191 + token.hashCode(); + hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); + if (isSetTransaction()) + hashCode = hashCode * 8191 + transaction.hashCode(); hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); if (isSetEnvironment()) @@ -689824,13 +696705,33 @@ public int hashCode() { } @Override - public int compareTo(time_args other) { + public int compareTo(traceRecordTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetRecord()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetCreds(), other.isSetCreds()); if (lastComparison != 0) { return lastComparison; @@ -689841,12 +696742,12 @@ public int compareTo(time_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetToken(), other.isSetToken()); + lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); if (lastComparison != 0) { return lastComparison; } - if (isSetToken()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.token, other.token); + if (isSetTransaction()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); if (lastComparison != 0) { return lastComparison; } @@ -689882,9 +696783,21 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("time_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordTimestr_args("); boolean first = true; + sb.append("record:"); + sb.append(this.record); + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } + first = false; + if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -689893,11 +696806,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("token:"); - if (this.token == null) { + sb.append("transaction:"); + if (this.transaction == null) { sb.append("null"); } else { - sb.append(this.token); + sb.append(this.transaction); } first = false; if (!first) sb.append(", "); @@ -689918,8 +696831,8 @@ public void validate() throws org.apache.thrift.TException { if (creds != null) { creds.validate(); } - if (token != null) { - token.validate(); + if (transaction != null) { + transaction.validate(); } } @@ -689933,23 +696846,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 time_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public time_argsStandardScheme getScheme() { - return new time_argsStandardScheme(); + public traceRecordTimestr_argsStandardScheme getScheme() { + return new traceRecordTimestr_argsStandardScheme(); } } - private static class time_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, time_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -689959,7 +696874,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, time_args struct) t break; } switch (schemeField.id) { - case 1: // CREDS + case 1: // RECORD + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // TIMESTAMP + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -689968,16 +696899,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, time_args struct) t org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // TOKEN + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.token.read(iprot); - struct.setTokenIsSet(true); + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -689997,18 +696928,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, time_args struct) t } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, time_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + oprot.writeFieldBegin(RECORD_FIELD_DESC); + oprot.writeI64(struct.record); + oprot.writeFieldEnd(); + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); oprot.writeFieldEnd(); } - if (struct.token != null) { - oprot.writeFieldBegin(TOKEN_FIELD_DESC); - struct.token.write(oprot); + if (struct.transaction != null) { + oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); + struct.transaction.write(oprot); oprot.writeFieldEnd(); } if (struct.environment != null) { @@ -690022,34 +696961,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, time_args struct) } - private static class time_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public time_argsTupleScheme getScheme() { - return new time_argsTupleScheme(); + public traceRecordTimestr_argsTupleScheme getScheme() { + return new traceRecordTimestr_argsTupleScheme(); } } - private static class time_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, time_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetCreds()) { + if (struct.isSetRecord()) { optionals.set(0); } - if (struct.isSetToken()) { + if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetEnvironment()) { + if (struct.isSetCreds()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetTransaction()) { + optionals.set(3); + } + if (struct.isSetEnvironment()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetRecord()) { + oprot.writeI64(struct.record); + } + if (struct.isSetTimestamp()) { + oprot.writeString(struct.timestamp); + } if (struct.isSetCreds()) { struct.creds.write(oprot); } - if (struct.isSetToken()) { - struct.token.write(oprot); + if (struct.isSetTransaction()) { + struct.transaction.write(oprot); } if (struct.isSetEnvironment()) { oprot.writeString(struct.environment); @@ -690057,20 +697008,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, time_args struct) t } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, time_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(3); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { + struct.record = iprot.readI64(); + struct.setRecordIsSet(true); + } + if (incoming.get(1)) { + struct.timestamp = iprot.readString(); + struct.setTimestampIsSet(true); + } + if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(1)) { - struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.token.read(iprot); - struct.setTokenIsSet(true); + if (incoming.get(3)) { + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -690082,18 +697041,18 @@ private static S scheme(org.apache. } } - public static class time_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("time_result"); + public static class traceRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordTimestr_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new time_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new time_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordTimestr_resultTupleSchemeFactory(); - public long success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -690170,13 +697129,14 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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.I64))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -690184,21 +697144,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(time_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordTimestr_result.class, metaDataMap); } - public time_result() { + public traceRecordTimestr_result() { } - public time_result( - long success, + public traceRecordTimestr_result( + java.util.Map> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -690207,9 +697166,22 @@ public time_result( /** * Performs a deep copy on other. */ - public time_result(time_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public traceRecordTimestr_result(traceRecordTimestr_result other) { + if (other.isSetSuccess()) { + java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); + for (java.util.Map.Entry> other_element : other.success.entrySet()) { + + java.lang.String other_element_key = other_element.getKey(); + java.util.Set other_element_value = other_element.getValue(); + + java.lang.String __this__success_copy_key = other_element_key; + + java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); + + __this__success.put(__this__success_copy_key, __this__success_copy_value); + } + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -690222,40 +697194,52 @@ public time_result(time_result other) { } @Override - public time_result deepCopy() { - return new time_result(this); + public traceRecordTimestr_result deepCopy() { + return new traceRecordTimestr_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = 0; + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; } - public long getSuccess() { + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(java.lang.String key, java.util.Set val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap>(); + } + this.success.put(key, val); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Map> getSuccess() { return this.success; } - public time_result setSuccess(long success) { + public traceRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { this.success = success; - setSuccessIsSet(true); return this; } public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + this.success = null; } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + return this.success != null; } public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + if (!value) { + this.success = null; + } } @org.apache.thrift.annotation.Nullable @@ -690263,7 +697247,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public time_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public traceRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -690288,7 +697272,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public time_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public traceRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -690313,7 +697297,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public time_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public traceRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -690340,7 +697324,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.Long)value); + setSuccess((java.util.Map>)value); } break; @@ -690413,23 +697397,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof time_result) - return this.equals((time_result)that); + if (that instanceof traceRecordTimestr_result) + return this.equals((traceRecordTimestr_result)that); return false; } - public boolean equals(time_result that) { + public boolean equals(traceRecordTimestr_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; + 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 != that.success) + if (!this.success.equals(that.success)) return false; } @@ -690467,7 +697451,9 @@ public boolean equals(time_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -690485,7 +697471,7 @@ public int hashCode() { } @Override - public int compareTo(time_result other) { + public int compareTo(traceRecordTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -690552,11 +697538,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("time_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordTimestr_result("); boolean first = true; sb.append("success:"); - sb.append(this.success); + if (this.success == null) { + sb.append("null"); + } else { + sb.append(this.success); + } first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -690601,25 +697591,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 time_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public time_resultStandardScheme getScheme() { - return new time_resultStandardScheme(); + public traceRecordTimestr_resultStandardScheme getScheme() { + return new traceRecordTimestr_resultStandardScheme(); } } - private static class time_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, time_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -690630,8 +697618,30 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, time_result struct) } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.success = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map7076 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>(2*_map7076.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7077; + @org.apache.thrift.annotation.Nullable java.util.Set _val7078; + for (int _i7079 = 0; _i7079 < _map7076.size; ++_i7079) + { + _key7077 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7080 = iprot.readSetBegin(); + _val7078 = new java.util.LinkedHashSet(2*_set7080.size); + long _elem7081; + for (int _i7082 = 0; _i7082 < _set7080.size; ++_i7082) + { + _elem7081 = iprot.readI64(); + _val7078.add(_elem7081); + } + iprot.readSetEnd(); + } + struct.success.put(_key7077, _val7078); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -690676,13 +697686,28 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, time_result struct) } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, time_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { + if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeI64(struct.success); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); + for (java.util.Map.Entry> _iter7083 : struct.success.entrySet()) + { + oprot.writeString(_iter7083.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7083.getValue().size())); + for (long _iter7084 : _iter7083.getValue()) + { + oprot.writeI64(_iter7084); + } + oprot.writeSetEnd(); + } + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -690706,17 +697731,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, time_result struct } - private static class time_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public time_resultTupleScheme getScheme() { - return new time_resultTupleScheme(); + public traceRecordTimestr_resultTupleScheme getScheme() { + return new traceRecordTimestr_resultTupleScheme(); } } - private static class time_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, time_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -690733,7 +697758,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, time_result struct) } oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { - oprot.writeI64(struct.success); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry> _iter7085 : struct.success.entrySet()) + { + oprot.writeString(_iter7085.getKey()); + { + oprot.writeI32(_iter7085.getValue().size()); + for (long _iter7086 : _iter7085.getValue()) + { + oprot.writeI64(_iter7086); + } + } + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -690747,11 +697785,31 @@ public void write(org.apache.thrift.protocol.TProtocol prot, time_result struct) } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, time_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.success = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map7087 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + struct.success = new java.util.LinkedHashMap>(2*_map7087.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7088; + @org.apache.thrift.annotation.Nullable java.util.Set _val7089; + for (int _i7090 = 0; _i7090 < _map7087.size; ++_i7090) + { + _key7088 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7091 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val7089 = new java.util.LinkedHashSet(2*_set7091.size); + long _elem7092; + for (int _i7093 = 0; _i7093 < _set7091.size; ++_i7093) + { + _elem7092 = iprot.readI64(); + _val7089.add(_elem7092); + } + } + struct.success.put(_key7088, _val7089); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -690777,27 +697835,27 @@ private static S scheme(org.apache. } } - public static class timePhrase_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("timePhrase_args"); + public static class traceRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecords_args"); - private static final org.apache.thrift.protocol.TField PHRASE_FIELD_DESC = new org.apache.thrift.protocol.TField("phrase", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("token", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new timePhrase_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new timePhrase_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecords_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.lang.String phrase; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - PHRASE((short)1, "phrase"), + RECORDS((short)1, "records"), CREDS((short)2, "creds"), - TOKEN((short)3, "token"), + TRANSACTION((short)3, "transaction"), ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -690814,12 +697872,12 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // PHRASE - return PHRASE; + case 1: // RECORDS + return RECORDS; case 2: // CREDS return CREDS; - case 3: // TOKEN - return TOKEN; + case 3: // TRANSACTION + return TRANSACTION; case 4: // ENVIRONMENT return ENVIRONMENT; default: @@ -690868,46 +697926,48 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.PHRASE, new org.apache.thrift.meta_data.FieldMetaData("phrase", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); - tmpMap.put(_Fields.TOKEN, new org.apache.thrift.meta_data.FieldMetaData("token", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionToken.class))); tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(timePhrase_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecords_args.class, metaDataMap); } - public timePhrase_args() { + public traceRecords_args() { } - public timePhrase_args( - java.lang.String phrase, + public traceRecords_args( + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, - com.cinchapi.concourse.thrift.TransactionToken token, + com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.phrase = phrase; + this.records = records; this.creds = creds; - this.token = token; + this.transaction = transaction; this.environment = environment; } /** * Performs a deep copy on other. */ - public timePhrase_args(timePhrase_args other) { - if (other.isSetPhrase()) { - this.phrase = other.phrase; + public traceRecords_args(traceRecords_args other) { + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } - if (other.isSetToken()) { - this.token = new com.cinchapi.concourse.thrift.TransactionToken(other.token); + if (other.isSetTransaction()) { + this.transaction = new com.cinchapi.concourse.thrift.TransactionToken(other.transaction); } if (other.isSetEnvironment()) { this.environment = other.environment; @@ -690915,40 +697975,56 @@ public timePhrase_args(timePhrase_args other) { } @Override - public timePhrase_args deepCopy() { - return new timePhrase_args(this); + public traceRecords_args deepCopy() { + return new traceRecords_args(this); } @Override public void clear() { - this.phrase = null; + this.records = null; this.creds = null; - this.token = null; + this.transaction = null; this.environment = null; } + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); + } + @org.apache.thrift.annotation.Nullable - public java.lang.String getPhrase() { - return this.phrase; + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); } - public timePhrase_args setPhrase(@org.apache.thrift.annotation.Nullable java.lang.String phrase) { - this.phrase = phrase; + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public traceRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetPhrase() { - this.phrase = null; + public void unsetRecords() { + this.records = null; } - /** Returns true if field phrase is set (has been assigned a value) and false otherwise */ - public boolean isSetPhrase() { - return this.phrase != null; + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setPhraseIsSet(boolean value) { + public void setRecordsIsSet(boolean value) { if (!value) { - this.phrase = null; + this.records = null; } } @@ -690957,7 +698033,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public timePhrase_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public traceRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -690978,27 +698054,27 @@ public void setCredsIsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.TransactionToken getToken() { - return this.token; + public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { + return this.transaction; } - public timePhrase_args setToken(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken token) { - this.token = token; + public traceRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + this.transaction = transaction; return this; } - public void unsetToken() { - this.token = null; + public void unsetTransaction() { + this.transaction = null; } - /** Returns true if field token is set (has been assigned a value) and false otherwise */ - public boolean isSetToken() { - return this.token != null; + /** Returns true if field transaction is set (has been assigned a value) and false otherwise */ + public boolean isSetTransaction() { + return this.transaction != null; } - public void setTokenIsSet(boolean value) { + public void setTransactionIsSet(boolean value) { if (!value) { - this.token = null; + this.transaction = null; } } @@ -691007,7 +698083,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public timePhrase_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public traceRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -691030,11 +698106,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case PHRASE: + case RECORDS: if (value == null) { - unsetPhrase(); + unsetRecords(); } else { - setPhrase((java.lang.String)value); + setRecords((java.util.List)value); } break; @@ -691046,11 +698122,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable } break; - case TOKEN: + case TRANSACTION: if (value == null) { - unsetToken(); + unsetTransaction(); } else { - setToken((com.cinchapi.concourse.thrift.TransactionToken)value); + setTransaction((com.cinchapi.concourse.thrift.TransactionToken)value); } break; @@ -691069,14 +698145,14 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case PHRASE: - return getPhrase(); + case RECORDS: + return getRecords(); case CREDS: return getCreds(); - case TOKEN: - return getToken(); + case TRANSACTION: + return getTransaction(); case ENVIRONMENT: return getEnvironment(); @@ -691093,12 +698169,12 @@ public boolean isSet(_Fields field) { } switch (field) { - case PHRASE: - return isSetPhrase(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); - case TOKEN: - return isSetToken(); + case TRANSACTION: + return isSetTransaction(); case ENVIRONMENT: return isSetEnvironment(); } @@ -691107,23 +698183,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof timePhrase_args) - return this.equals((timePhrase_args)that); + if (that instanceof traceRecords_args) + return this.equals((traceRecords_args)that); return false; } - public boolean equals(timePhrase_args that) { + public boolean equals(traceRecords_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_phrase = true && this.isSetPhrase(); - boolean that_present_phrase = true && that.isSetPhrase(); - if (this_present_phrase || that_present_phrase) { - if (!(this_present_phrase && that_present_phrase)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (!this.phrase.equals(that.phrase)) + if (!this.records.equals(that.records)) return false; } @@ -691136,12 +698212,12 @@ public boolean equals(timePhrase_args that) { return false; } - boolean this_present_token = true && this.isSetToken(); - boolean that_present_token = true && that.isSetToken(); - if (this_present_token || that_present_token) { - if (!(this_present_token && that_present_token)) + boolean this_present_transaction = true && this.isSetTransaction(); + boolean that_present_transaction = true && that.isSetTransaction(); + if (this_present_transaction || that_present_transaction) { + if (!(this_present_transaction && that_present_transaction)) return false; - if (!this.token.equals(that.token)) + if (!this.transaction.equals(that.transaction)) return false; } @@ -691161,17 +698237,17 @@ public boolean equals(timePhrase_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetPhrase()) ? 131071 : 524287); - if (isSetPhrase()) - hashCode = hashCode * 8191 + phrase.hashCode(); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) hashCode = hashCode * 8191 + creds.hashCode(); - hashCode = hashCode * 8191 + ((isSetToken()) ? 131071 : 524287); - if (isSetToken()) - hashCode = hashCode * 8191 + token.hashCode(); + hashCode = hashCode * 8191 + ((isSetTransaction()) ? 131071 : 524287); + if (isSetTransaction()) + hashCode = hashCode * 8191 + transaction.hashCode(); hashCode = hashCode * 8191 + ((isSetEnvironment()) ? 131071 : 524287); if (isSetEnvironment()) @@ -691181,19 +698257,19 @@ public int hashCode() { } @Override - public int compareTo(timePhrase_args other) { + public int compareTo(traceRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetPhrase(), other.isSetPhrase()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetPhrase()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.phrase, other.phrase); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -691208,12 +698284,12 @@ public int compareTo(timePhrase_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetToken(), other.isSetToken()); + lastComparison = java.lang.Boolean.compare(isSetTransaction(), other.isSetTransaction()); if (lastComparison != 0) { return lastComparison; } - if (isSetToken()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.token, other.token); + if (isSetTransaction()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.transaction, other.transaction); if (lastComparison != 0) { return lastComparison; } @@ -691249,14 +698325,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("timePhrase_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecords_args("); boolean first = true; - sb.append("phrase:"); - if (this.phrase == null) { + sb.append("records:"); + if (this.records == null) { sb.append("null"); } else { - sb.append(this.phrase); + sb.append(this.records); } first = false; if (!first) sb.append(", "); @@ -691268,11 +698344,11 @@ public java.lang.String toString() { } first = false; if (!first) sb.append(", "); - sb.append("token:"); - if (this.token == null) { + sb.append("transaction:"); + if (this.transaction == null) { sb.append("null"); } else { - sb.append(this.token); + sb.append(this.transaction); } first = false; if (!first) sb.append(", "); @@ -691293,8 +698369,8 @@ public void validate() throws org.apache.thrift.TException { if (creds != null) { creds.validate(); } - if (token != null) { - token.validate(); + if (transaction != null) { + transaction.validate(); } } @@ -691314,17 +698390,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class timePhrase_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public timePhrase_argsStandardScheme getScheme() { - return new timePhrase_argsStandardScheme(); + public traceRecords_argsStandardScheme getScheme() { + return new traceRecords_argsStandardScheme(); } } - private static class timePhrase_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -691334,10 +698410,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_args str break; } switch (schemeField.id) { - case 1: // PHRASE - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.phrase = iprot.readString(); - struct.setPhraseIsSet(true); + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list7094 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list7094.size); + long _elem7095; + for (int _i7096 = 0; _i7096 < _list7094.size; ++_i7096) + { + _elem7095 = iprot.readI64(); + struct.records.add(_elem7095); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -691351,11 +698437,11 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_args str org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TOKEN + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.token.read(iprot); - struct.setTokenIsSet(true); + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -691380,13 +698466,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_args str } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, timePhrase_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.phrase != null) { - oprot.writeFieldBegin(PHRASE_FIELD_DESC); - oprot.writeString(struct.phrase); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter7097 : struct.records) + { + oprot.writeI64(_iter7097); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -691394,9 +698487,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, timePhrase_args st struct.creds.write(oprot); oprot.writeFieldEnd(); } - if (struct.token != null) { - oprot.writeFieldBegin(TOKEN_FIELD_DESC); - struct.token.write(oprot); + if (struct.transaction != null) { + oprot.writeFieldBegin(TRANSACTION_FIELD_DESC); + struct.transaction.write(oprot); oprot.writeFieldEnd(); } if (struct.environment != null) { @@ -691410,40 +698503,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, timePhrase_args st } - private static class timePhrase_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public timePhrase_argsTupleScheme getScheme() { - return new timePhrase_argsTupleScheme(); + public traceRecords_argsTupleScheme getScheme() { + return new traceRecords_argsTupleScheme(); } } - private static class timePhrase_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, timePhrase_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetPhrase()) { + if (struct.isSetRecords()) { optionals.set(0); } if (struct.isSetCreds()) { optionals.set(1); } - if (struct.isSetToken()) { + if (struct.isSetTransaction()) { optionals.set(2); } if (struct.isSetEnvironment()) { optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetPhrase()) { - oprot.writeString(struct.phrase); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter7098 : struct.records) + { + oprot.writeI64(_iter7098); + } + } } if (struct.isSetCreds()) { struct.creds.write(oprot); } - if (struct.isSetToken()) { - struct.token.write(oprot); + if (struct.isSetTransaction()) { + struct.transaction.write(oprot); } if (struct.isSetEnvironment()) { oprot.writeString(struct.environment); @@ -691451,12 +698550,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, timePhrase_args str } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, timePhrase_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.phrase = iprot.readString(); - struct.setPhraseIsSet(true); + { + org.apache.thrift.protocol.TList _list7099 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list7099.size); + long _elem7100; + for (int _i7101 = 0; _i7101 < _list7099.size; ++_i7101) + { + _elem7100 = iprot.readI64(); + struct.records.add(_elem7100); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -691464,9 +698572,9 @@ public void read(org.apache.thrift.protocol.TProtocol prot, timePhrase_args stru struct.setCredsIsSet(true); } if (incoming.get(2)) { - struct.token = new com.cinchapi.concourse.thrift.TransactionToken(); - struct.token.read(iprot); - struct.setTokenIsSet(true); + struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); + struct.transaction.read(iprot); + struct.setTransactionIsSet(true); } if (incoming.get(3)) { struct.environment = iprot.readString(); @@ -691480,31 +698588,28 @@ private static S scheme(org.apache. } } - public static class timePhrase_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("timePhrase_result"); + public static class traceRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecords_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.I64, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new timePhrase_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new timePhrase_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecords_resultTupleSchemeFactory(); - public long success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"), - EX4((short)4, "ex4"); + EX3((short)3, "ex3"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -691528,8 +698633,6 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; - case 4: // EX4 - return EX4; default: return null; } @@ -691573,50 +698676,72 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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.I64))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); - tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(timePhrase_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecords_result.class, metaDataMap); } - public timePhrase_result() { + public traceRecords_result() { } - public timePhrase_result( - long success, + public traceRecords_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.ParseException ex3, - com.cinchapi.concourse.thrift.PermissionException ex4) + com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; - this.ex4 = ex4; } /** * Performs a deep copy on other. */ - public timePhrase_result(timePhrase_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public traceRecords_result(traceRecords_result other) { + if (other.isSetSuccess()) { + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { + + java.lang.Long other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); + + java.lang.Long __this__success_copy_key = other_element_key; + + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } + + __this__success.put(__this__success_copy_key, __this__success_copy_value); + } + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -691624,49 +698749,57 @@ public timePhrase_result(timePhrase_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.ParseException(other.ex3); - } - if (other.isSetEx4()) { - this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); } } @Override - public timePhrase_result deepCopy() { - return new timePhrase_result(this); + public traceRecords_result deepCopy() { + return new traceRecords_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = 0; + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; - this.ex4 = null; } - public long getSuccess() { + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public void putToSuccess(long key, java.util.Map> val) { + if (this.success == null) { + this.success = new java.util.LinkedHashMap>>(); + } + this.success.put(key, val); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Map>> getSuccess() { return this.success; } - public timePhrase_result setSuccess(long success) { + public traceRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; - setSuccessIsSet(true); return this; } public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + this.success = null; } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + return this.success != null; } public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + if (!value) { + this.success = null; + } } @org.apache.thrift.annotation.Nullable @@ -691674,7 +698807,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public timePhrase_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public traceRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -691699,7 +698832,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public timePhrase_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public traceRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -691720,11 +698853,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.ParseException getEx3() { + public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public timePhrase_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex3) { + public traceRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -691744,31 +698877,6 @@ public void setEx3IsSet(boolean value) { } } - @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx4() { - return this.ex4; - } - - public timePhrase_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { - this.ex4 = ex4; - return this; - } - - public void unsetEx4() { - this.ex4 = null; - } - - /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx4() { - return this.ex4 != null; - } - - public void setEx4IsSet(boolean value) { - if (!value) { - this.ex4 = null; - } - } - @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -691776,7 +698884,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.Long)value); + setSuccess((java.util.Map>>)value); } break; @@ -691800,15 +698908,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.ParseException)value); - } - break; - - case EX4: - if (value == null) { - unsetEx4(); - } else { - setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.PermissionException)value); } break; @@ -691831,9 +698931,6 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); - case EX4: - return getEx4(); - } throw new java.lang.IllegalStateException(); } @@ -691854,31 +698951,29 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); - case EX4: - return isSetEx4(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof timePhrase_result) - return this.equals((timePhrase_result)that); + if (that instanceof traceRecords_result) + return this.equals((traceRecords_result)that); return false; } - public boolean equals(timePhrase_result that) { + public boolean equals(traceRecords_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; + 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 != that.success) + if (!this.success.equals(that.success)) return false; } @@ -691909,15 +699004,6 @@ public boolean equals(timePhrase_result that) { return false; } - boolean this_present_ex4 = true && this.isSetEx4(); - boolean that_present_ex4 = true && that.isSetEx4(); - if (this_present_ex4 || that_present_ex4) { - if (!(this_present_ex4 && that_present_ex4)) - return false; - if (!this.ex4.equals(that.ex4)) - return false; - } - return true; } @@ -691925,7 +699011,9 @@ public boolean equals(timePhrase_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(success); + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -691939,15 +699027,11 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); - hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); - if (isSetEx4()) - hashCode = hashCode * 8191 + ex4.hashCode(); - return hashCode; } @Override - public int compareTo(timePhrase_result other) { + public int compareTo(traceRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -691994,16 +699078,6 @@ public int compareTo(timePhrase_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx4()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -692024,11 +699098,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("timePhrase_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecords_result("); boolean first = true; sb.append("success:"); - sb.append(this.success); + if (this.success == null) { + sb.append("null"); + } else { + sb.append(this.success); + } first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -692054,14 +699132,6 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; - if (!first) sb.append(", "); - sb.append("ex4:"); - if (this.ex4 == null) { - sb.append("null"); - } else { - sb.append(this.ex4); - } - first = false; sb.append(")"); return sb.toString(); } @@ -692081,25 +699151,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 timePhrase_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public timePhrase_resultStandardScheme getScheme() { - return new timePhrase_resultStandardScheme(); + public traceRecords_resultStandardScheme getScheme() { + return new traceRecords_resultStandardScheme(); } } - private static class timePhrase_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -692110,8 +699178,42 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_result s } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.success = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + { + org.apache.thrift.protocol.TMap _map7102 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map7102.size); + long _key7103; + @org.apache.thrift.annotation.Nullable java.util.Map> _val7104; + for (int _i7105 = 0; _i7105 < _map7102.size; ++_i7105) + { + _key7103 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map7106 = iprot.readMapBegin(); + _val7104 = new java.util.LinkedHashMap>(2*_map7106.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7107; + @org.apache.thrift.annotation.Nullable java.util.Set _val7108; + for (int _i7109 = 0; _i7109 < _map7106.size; ++_i7109) + { + _key7107 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7110 = iprot.readSetBegin(); + _val7108 = new java.util.LinkedHashSet(2*_set7110.size); + long _elem7111; + for (int _i7112 = 0; _i7112 < _set7110.size; ++_i7112) + { + _elem7111 = iprot.readI64(); + _val7108.add(_elem7111); + } + iprot.readSetEnd(); + } + _val7104.put(_key7107, _val7108); + } + iprot.readMapEnd(); + } + struct.success.put(_key7103, _val7104); + } + iprot.readMapEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -692137,22 +699239,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_result s break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // EX4 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -692165,13 +699258,36 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, timePhrase_result s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, timePhrase_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { + if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeI64(struct.success); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter7113 : struct.success.entrySet()) + { + oprot.writeI64(_iter7113.getKey()); + { + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter7113.getValue().size())); + for (java.util.Map.Entry> _iter7114 : _iter7113.getValue().entrySet()) + { + oprot.writeString(_iter7114.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7114.getValue().size())); + for (long _iter7115 : _iter7114.getValue()) + { + oprot.writeI64(_iter7115); + } + oprot.writeSetEnd(); + } + } + oprot.writeMapEnd(); + } + } + oprot.writeMapEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -692189,28 +699305,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, timePhrase_result struct.ex3.write(oprot); oprot.writeFieldEnd(); } - if (struct.ex4 != null) { - oprot.writeFieldBegin(EX4_FIELD_DESC); - struct.ex4.write(oprot); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class timePhrase_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public timePhrase_resultTupleScheme getScheme() { - return new timePhrase_resultTupleScheme(); + public traceRecords_resultTupleScheme getScheme() { + return new traceRecords_resultTupleScheme(); } } - private static class timePhrase_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, timePhrase_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -692225,12 +699336,29 @@ public void write(org.apache.thrift.protocol.TProtocol prot, timePhrase_result s if (struct.isSetEx3()) { optionals.set(3); } - if (struct.isSetEx4()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); + oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { - oprot.writeI64(struct.success); + { + oprot.writeI32(struct.success.size()); + for (java.util.Map.Entry>> _iter7116 : struct.success.entrySet()) + { + oprot.writeI64(_iter7116.getKey()); + { + oprot.writeI32(_iter7116.getValue().size()); + for (java.util.Map.Entry> _iter7117 : _iter7116.getValue().entrySet()) + { + oprot.writeString(_iter7117.getKey()); + { + oprot.writeI32(_iter7117.getValue().size()); + for (long _iter7118 : _iter7117.getValue()) + { + oprot.writeI64(_iter7118); + } + } + } + } + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -692241,17 +699369,45 @@ public void write(org.apache.thrift.protocol.TProtocol prot, timePhrase_result s if (struct.isSetEx3()) { struct.ex3.write(oprot); } - if (struct.isSetEx4()) { - struct.ex4.write(oprot); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, timePhrase_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.success = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map7119 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map7119.size); + long _key7120; + @org.apache.thrift.annotation.Nullable java.util.Map> _val7121; + for (int _i7122 = 0; _i7122 < _map7119.size; ++_i7122) + { + _key7120 = iprot.readI64(); + { + org.apache.thrift.protocol.TMap _map7123 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val7121 = new java.util.LinkedHashMap>(2*_map7123.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7124; + @org.apache.thrift.annotation.Nullable java.util.Set _val7125; + for (int _i7126 = 0; _i7126 < _map7123.size; ++_i7126) + { + _key7124 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7127 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val7125 = new java.util.LinkedHashSet(2*_set7127.size); + long _elem7128; + for (int _i7129 = 0; _i7129 < _set7127.size; ++_i7129) + { + _elem7128 = iprot.readI64(); + _val7125.add(_elem7128); + } + } + _val7121.put(_key7124, _val7125); + } + } + struct.success.put(_key7120, _val7121); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -692265,15 +699421,10 @@ public void read(org.apache.thrift.protocol.TProtocol prot, timePhrase_result st struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } - if (incoming.get(4)) { - struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); - struct.ex4.read(iprot); - struct.setEx4IsSet(true); - } } } @@ -692282,28 +699433,31 @@ private static S scheme(org.apache. } } - public static class traceRecord_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecord_args"); + public static class traceRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordsTime_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecord_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecord_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordsTime_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordsTime_argsTupleSchemeFactory(); - public long record; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public long timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), - CREDS((short)2, "creds"), - TRANSACTION((short)3, "transaction"), - ENVIRONMENT((short)4, "environment"); + RECORDS((short)1, "records"), + TIMESTAMP((short)2, "timestamp"), + CREDS((short)3, "creds"), + TRANSACTION((short)4, "transaction"), + ENVIRONMENT((short)5, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -692319,13 +699473,15 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; - case 2: // CREDS + case 1: // RECORDS + return RECORDS; + case 2: // TIMESTAMP + return TIMESTAMP; + case 3: // CREDS return CREDS; - case 3: // TRANSACTION + case 4: // TRANSACTION return TRANSACTION; - case 4: // ENVIRONMENT + case 5: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -692370,12 +699526,15 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; + private static final int __TIMESTAMP_ISSET_ID = 0; private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); @@ -692384,21 +699543,23 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecord_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordsTime_args.class, metaDataMap); } - public traceRecord_args() { + public traceRecordsTime_args() { } - public traceRecord_args( - long record, + public traceRecordsTime_args( + java.util.List records, + long timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); + this.records = records; + this.timestamp = timestamp; + setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -692407,9 +699568,13 @@ public traceRecord_args( /** * Performs a deep copy on other. */ - public traceRecord_args(traceRecord_args other) { + public traceRecordsTime_args(traceRecordsTime_args other) { __isset_bitfield = other.__isset_bitfield; - this.record = other.record; + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -692422,40 +699587,82 @@ public traceRecord_args(traceRecord_args other) { } @Override - public traceRecord_args deepCopy() { - return new traceRecord_args(this); + public traceRecordsTime_args deepCopy() { + return new traceRecordsTime_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; + this.records = null; + setTimestampIsSet(false); + this.timestamp = 0; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - public traceRecord_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public traceRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } + } + + public long getTimestamp() { + return this.timestamp; + } + + public traceRecordsTime_args setTimestamp(long timestamp) { + this.timestamp = timestamp; + setTimestampIsSet(true); + return this; + } + + public void unsetTimestamp() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + } + + /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ + public boolean isSetTimestamp() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + } + + public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -692463,7 +699670,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public traceRecord_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public traceRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -692488,7 +699695,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public traceRecord_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public traceRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -692513,7 +699720,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public traceRecord_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public traceRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -692536,11 +699743,19 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); + } + break; + + case TIMESTAMP: + if (value == null) { + unsetTimestamp(); + } else { + setTimestamp((java.lang.Long)value); } break; @@ -692575,8 +699790,11 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); + + case TIMESTAMP: + return getTimestamp(); case CREDS: return getCreds(); @@ -692599,8 +699817,10 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); + case RECORDS: + return isSetRecords(); + case TIMESTAMP: + return isSetTimestamp(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -692613,23 +699833,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecord_args) - return this.equals((traceRecord_args)that); + if (that instanceof traceRecordsTime_args) + return this.equals((traceRecordsTime_args)that); return false; } - public boolean equals(traceRecord_args that) { + public boolean equals(traceRecordsTime_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) + return false; + } + + boolean this_present_timestamp = true; + boolean that_present_timestamp = true; + if (this_present_timestamp || that_present_timestamp) { + if (!(this_present_timestamp && that_present_timestamp)) + return false; + if (this.timestamp != that.timestamp) return false; } @@ -692667,7 +699896,11 @@ public boolean equals(traceRecord_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); + + hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -692685,19 +699918,29 @@ public int hashCode() { } @Override - public int compareTo(traceRecord_args other) { + public int compareTo(traceRecordsTime_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); if (lastComparison != 0) { return lastComparison; } @@ -692753,11 +699996,19 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecord_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordsTime_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } + first = false; + if (!first) sb.append(", "); + sb.append("timestamp:"); + sb.append(this.timestamp); first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -692816,17 +700067,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class traceRecord_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecord_argsStandardScheme getScheme() { - return new traceRecord_argsStandardScheme(); + public traceRecordsTime_argsStandardScheme getScheme() { + return new traceRecordsTime_argsStandardScheme(); } } - private static class traceRecord_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -692836,15 +700087,33 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_args st break; } switch (schemeField.id) { - case 1: // RECORD + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list7130 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list7130.size); + long _elem7131; + for (int _i7132 = 0; _i7132 < _list7130.size; ++_i7132) + { + _elem7131 = iprot.readI64(); + struct.records.add(_elem7131); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // TIMESTAMP if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + struct.timestamp = iprot.readI64(); + struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // CREDS + case 3: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -692853,7 +700122,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TRANSACTION + case 4: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -692862,7 +700131,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_args st org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // ENVIRONMENT + case 5: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -692882,12 +700151,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_args st } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTime_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter7133 : struct.records) + { + oprot.writeI64(_iter7133); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); @@ -692910,34 +700191,46 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecord_args s } - private static class traceRecord_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecord_argsTupleScheme getScheme() { - return new traceRecord_argsTupleScheme(); + public traceRecordsTime_argsTupleScheme getScheme() { + return new traceRecordsTime_argsTupleScheme(); } } - private static class traceRecord_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecord_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetCreds()) { + if (struct.isSetTimestamp()) { optionals.set(1); } - if (struct.isSetTransaction()) { + if (struct.isSetCreds()) { optionals.set(2); } - if (struct.isSetEnvironment()) { + if (struct.isSetTransaction()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetEnvironment()) { + optionals.set(4); + } + oprot.writeBitSet(optionals, 5); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter7134 : struct.records) + { + oprot.writeI64(_iter7134); + } + } + } + if (struct.isSetTimestamp()) { + oprot.writeI64(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -692951,24 +700244,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecord_args st } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecord_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list7135 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list7135.size); + long _elem7136; + for (int _i7137 = 0; _i7137 < _list7135.size; ++_i7137) + { + _elem7136 = iprot.readI64(); + struct.records.add(_elem7136); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { + struct.timestamp = iprot.readI64(); + struct.setTimestampIsSet(true); + } + if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(2)) { + if (incoming.get(3)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(4)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -692980,18 +700286,18 @@ private static S scheme(org.apache. } } - public static class traceRecord_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecord_result"); + public static class traceRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordsTime_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecord_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecord_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordsTime_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordsTime_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -693073,9 +700379,11 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -693083,14 +700391,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecord_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordsTime_result.class, metaDataMap); } - public traceRecord_result() { + public traceRecordsTime_result() { } - public traceRecord_result( - java.util.Map> success, + public traceRecordsTime_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -693105,17 +700413,28 @@ public traceRecord_result( /** * Performs a deep copy on other. */ - public traceRecord_result(traceRecord_result other) { + public traceRecordsTime_result(traceRecordsTime_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - java.lang.String other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); + java.lang.Long other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); - java.lang.String __this__success_copy_key = other_element_key; + java.lang.Long __this__success_copy_key = other_element_key; - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -693133,8 +700452,8 @@ public traceRecord_result(traceRecord_result other) { } @Override - public traceRecord_result deepCopy() { - return new traceRecord_result(this); + public traceRecordsTime_result deepCopy() { + return new traceRecordsTime_result(this); } @Override @@ -693149,19 +700468,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.lang.String key, java.util.Set val) { + public void putToSuccess(long key, java.util.Map> val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap>>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public traceRecord_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public traceRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -693186,7 +700505,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public traceRecord_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public traceRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -693211,7 +700530,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public traceRecord_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public traceRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -693236,7 +700555,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public traceRecord_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public traceRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -693263,7 +700582,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map>>)value); } break; @@ -693336,12 +700655,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecord_result) - return this.equals((traceRecord_result)that); + if (that instanceof traceRecordsTime_result) + return this.equals((traceRecordsTime_result)that); return false; } - public boolean equals(traceRecord_result that) { + public boolean equals(traceRecordsTime_result that) { if (that == null) return false; if (this == that) @@ -693410,7 +700729,7 @@ public int hashCode() { } @Override - public int compareTo(traceRecord_result other) { + public int compareTo(traceRecordsTime_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -693477,7 +700796,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecord_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordsTime_result("); boolean first = true; sb.append("success:"); @@ -693536,17 +700855,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class traceRecord_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecord_resultStandardScheme getScheme() { - return new traceRecord_resultStandardScheme(); + public traceRecordsTime_resultStandardScheme getScheme() { + return new traceRecordsTime_resultStandardScheme(); } } - private static class traceRecord_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -693559,25 +700878,37 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map7040 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map7040.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7041; - @org.apache.thrift.annotation.Nullable java.util.Set _val7042; - for (int _i7043 = 0; _i7043 < _map7040.size; ++_i7043) + org.apache.thrift.protocol.TMap _map7138 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map7138.size); + long _key7139; + @org.apache.thrift.annotation.Nullable java.util.Map> _val7140; + for (int _i7141 = 0; _i7141 < _map7138.size; ++_i7141) { - _key7041 = iprot.readString(); + _key7139 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set7044 = iprot.readSetBegin(); - _val7042 = new java.util.LinkedHashSet(2*_set7044.size); - long _elem7045; - for (int _i7046 = 0; _i7046 < _set7044.size; ++_i7046) + org.apache.thrift.protocol.TMap _map7142 = iprot.readMapBegin(); + _val7140 = new java.util.LinkedHashMap>(2*_map7142.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7143; + @org.apache.thrift.annotation.Nullable java.util.Set _val7144; + for (int _i7145 = 0; _i7145 < _map7142.size; ++_i7145) { - _elem7045 = iprot.readI64(); - _val7042.add(_elem7045); + _key7143 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7146 = iprot.readSetBegin(); + _val7144 = new java.util.LinkedHashSet(2*_set7146.size); + long _elem7147; + for (int _i7148 = 0; _i7148 < _set7146.size; ++_i7148) + { + _elem7147 = iprot.readI64(); + _val7144.add(_elem7147); + } + iprot.readSetEnd(); + } + _val7140.put(_key7143, _val7144); } - iprot.readSetEnd(); + iprot.readMapEnd(); } - struct.success.put(_key7041, _val7042); + struct.success.put(_key7139, _val7140); } iprot.readMapEnd(); } @@ -693625,24 +700956,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecord_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTime_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter7047 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter7149 : struct.success.entrySet()) { - oprot.writeString(_iter7047.getKey()); + oprot.writeI64(_iter7149.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7047.getValue().size())); - for (long _iter7048 : _iter7047.getValue()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter7149.getValue().size())); + for (java.util.Map.Entry> _iter7150 : _iter7149.getValue().entrySet()) { - oprot.writeI64(_iter7048); + oprot.writeString(_iter7150.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7150.getValue().size())); + for (long _iter7151 : _iter7150.getValue()) + { + oprot.writeI64(_iter7151); + } + oprot.writeSetEnd(); + } } - oprot.writeSetEnd(); + oprot.writeMapEnd(); } } oprot.writeMapEnd(); @@ -693670,17 +701009,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecord_result } - private static class traceRecord_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecord_resultTupleScheme getScheme() { - return new traceRecord_resultTupleScheme(); + public traceRecordsTime_resultTupleScheme getScheme() { + return new traceRecordsTime_resultTupleScheme(); } } - private static class traceRecord_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecord_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -693699,14 +701038,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecord_result if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter7049 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter7152 : struct.success.entrySet()) { - oprot.writeString(_iter7049.getKey()); + oprot.writeI64(_iter7152.getKey()); { - oprot.writeI32(_iter7049.getValue().size()); - for (long _iter7050 : _iter7049.getValue()) + oprot.writeI32(_iter7152.getValue().size()); + for (java.util.Map.Entry> _iter7153 : _iter7152.getValue().entrySet()) { - oprot.writeI64(_iter7050); + oprot.writeString(_iter7153.getKey()); + { + oprot.writeI32(_iter7153.getValue().size()); + for (long _iter7154 : _iter7153.getValue()) + { + oprot.writeI64(_iter7154); + } + } } } } @@ -693724,29 +701070,40 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecord_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecord_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map7051 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map7051.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7052; - @org.apache.thrift.annotation.Nullable java.util.Set _val7053; - for (int _i7054 = 0; _i7054 < _map7051.size; ++_i7054) + org.apache.thrift.protocol.TMap _map7155 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map7155.size); + long _key7156; + @org.apache.thrift.annotation.Nullable java.util.Map> _val7157; + for (int _i7158 = 0; _i7158 < _map7155.size; ++_i7158) { - _key7052 = iprot.readString(); + _key7156 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set7055 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val7053 = new java.util.LinkedHashSet(2*_set7055.size); - long _elem7056; - for (int _i7057 = 0; _i7057 < _set7055.size; ++_i7057) + org.apache.thrift.protocol.TMap _map7159 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val7157 = new java.util.LinkedHashMap>(2*_map7159.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7160; + @org.apache.thrift.annotation.Nullable java.util.Set _val7161; + for (int _i7162 = 0; _i7162 < _map7159.size; ++_i7162) { - _elem7056 = iprot.readI64(); - _val7053.add(_elem7056); + _key7160 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7163 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val7161 = new java.util.LinkedHashSet(2*_set7163.size); + long _elem7164; + for (int _i7165 = 0; _i7165 < _set7163.size; ++_i7165) + { + _elem7164 = iprot.readI64(); + _val7161.add(_elem7164); + } + } + _val7157.put(_key7160, _val7161); } } - struct.success.put(_key7052, _val7053); + struct.success.put(_key7156, _val7157); } } struct.setSuccessIsSet(true); @@ -693774,27 +701131,27 @@ private static S scheme(org.apache. } } - public static class traceRecordTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordTime_args"); + public static class traceRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordsTimestr_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordsTimestr_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordsTimestr_argsTupleSchemeFactory(); - public long record; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), + RECORDS((short)1, "records"), TIMESTAMP((short)2, "timestamp"), CREDS((short)3, "creds"), TRANSACTION((short)4, "transaction"), @@ -693814,8 +701171,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; + case 1: // RECORDS + return RECORDS; case 2: // TIMESTAMP return TIMESTAMP; case 3: // CREDS @@ -693867,16 +701224,14 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private static final int __TIMESTAMP_ISSET_ID = 1; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -693884,24 +701239,22 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordsTimestr_args.class, metaDataMap); } - public traceRecordTime_args() { + public traceRecordsTimestr_args() { } - public traceRecordTime_args( - long record, - long timestamp, + public traceRecordsTimestr_args( + java.util.List records, + java.lang.String timestamp, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); + this.records = records; this.timestamp = timestamp; - setTimestampIsSet(true); this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -693910,10 +701263,14 @@ public traceRecordTime_args( /** * Performs a deep copy on other. */ - public traceRecordTime_args(traceRecordTime_args other) { - __isset_bitfield = other.__isset_bitfield; - this.record = other.record; - this.timestamp = other.timestamp; + public traceRecordsTimestr_args(traceRecordsTimestr_args other) { + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; + } + if (other.isSetTimestamp()) { + this.timestamp = other.timestamp; + } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -693926,65 +701283,83 @@ public traceRecordTime_args(traceRecordTime_args other) { } @Override - public traceRecordTime_args deepCopy() { - return new traceRecordTime_args(this); + public traceRecordsTimestr_args deepCopy() { + return new traceRecordsTimestr_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; - setTimestampIsSet(false); - this.timestamp = 0; + this.records = null; + this.timestamp = null; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - public traceRecordTime_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public traceRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public void unsetRecords() { + this.records = null; } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void setRecordsIsSet(boolean value) { + if (!value) { + this.records = null; + } } - public long getTimestamp() { + @org.apache.thrift.annotation.Nullable + public java.lang.String getTimestamp() { return this.timestamp; } - public traceRecordTime_args setTimestamp(long timestamp) { + public traceRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { this.timestamp = timestamp; - setTimestampIsSet(true); return this; } public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + this.timestamp = null; } /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + return this.timestamp != null; } public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + if (!value) { + this.timestamp = null; + } } @org.apache.thrift.annotation.Nullable @@ -693992,7 +701367,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public traceRecordTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public traceRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -694017,7 +701392,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public traceRecordTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public traceRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -694042,7 +701417,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public traceRecordTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public traceRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -694065,11 +701440,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: + case RECORDS: if (value == null) { - unsetRecord(); + unsetRecords(); } else { - setRecord((java.lang.Long)value); + setRecords((java.util.List)value); } break; @@ -694077,7 +701452,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetTimestamp(); } else { - setTimestamp((java.lang.Long)value); + setTimestamp((java.lang.String)value); } break; @@ -694112,8 +701487,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); + case RECORDS: + return getRecords(); case TIMESTAMP: return getTimestamp(); @@ -694139,8 +701514,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); + case RECORDS: + return isSetRecords(); case TIMESTAMP: return isSetTimestamp(); case CREDS: @@ -694155,32 +701530,32 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecordTime_args) - return this.equals((traceRecordTime_args)that); + if (that instanceof traceRecordsTimestr_args) + return this.equals((traceRecordsTimestr_args)that); return false; } - public boolean equals(traceRecordTime_args that) { + public boolean equals(traceRecordsTimestr_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (this.record != that.record) + if (!this.records.equals(that.records)) return false; } - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); if (this_present_timestamp || that_present_timestamp) { if (!(this_present_timestamp && that_present_timestamp)) return false; - if (this.timestamp != that.timestamp) + if (!this.timestamp.equals(that.timestamp)) return false; } @@ -694218,9 +701593,13 @@ public boolean equals(traceRecordTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if (isSetTimestamp()) + hashCode = hashCode * 8191 + timestamp.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -694238,19 +701617,19 @@ public int hashCode() { } @Override - public int compareTo(traceRecordTime_args other) { + public int compareTo(traceRecordsTimestr_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -694316,15 +701695,23 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordsTimestr_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); + sb.append("records:"); + if (this.records == null) { + sb.append("null"); + } else { + sb.append(this.records); + } first = false; if (!first) sb.append(", "); sb.append("timestamp:"); - sb.append(this.timestamp); + if (this.timestamp == null) { + sb.append("null"); + } else { + sb.append(this.timestamp); + } first = false; if (!first) sb.append(", "); sb.append("creds:"); @@ -694375,25 +701762,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 traceRecordTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordTime_argsStandardScheme getScheme() { - return new traceRecordTime_argsStandardScheme(); + public traceRecordsTimestr_argsStandardScheme getScheme() { + return new traceRecordsTimestr_argsStandardScheme(); } } - private static class traceRecordTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -694403,17 +701788,27 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTime_arg break; } switch (schemeField.id) { - case 1: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list7166 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list7166.size); + long _elem7167; + for (int _i7168 = 0; _i7168 < _list7166.size; ++_i7168) + { + _elem7167 = iprot.readI64(); + struct.records.add(_elem7167); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -694457,16 +701852,27 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTime_arg } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTimestr_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter7169 : struct.records) + { + oprot.writeI64(_iter7169); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.timestamp != null) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeString(struct.timestamp); + oprot.writeFieldEnd(); + } if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -694488,20 +701894,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTime_ar } - private static class traceRecordTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordTime_argsTupleScheme getScheme() { - return new traceRecordTime_argsTupleScheme(); + public traceRecordsTimestr_argsTupleScheme getScheme() { + return new traceRecordsTimestr_argsTupleScheme(); } } - private static class traceRecordTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(0); } if (struct.isSetTimestamp()) { @@ -694517,11 +701923,17 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_arg optionals.set(4); } oprot.writeBitSet(optionals, 5); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter7170 : struct.records) + { + oprot.writeI64(_iter7170); + } + } } if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); + oprot.writeString(struct.timestamp); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -694535,15 +701947,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_arg } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list7171 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list7171.size); + long _elem7172; + for (int _i7173 = 0; _i7173 < _list7171.size; ++_i7173) + { + _elem7172 = iprot.readI64(); + struct.records.add(_elem7172); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); + struct.timestamp = iprot.readString(); struct.setTimestampIsSet(true); } if (incoming.get(2)) { @@ -694568,18 +701989,18 @@ private static S scheme(org.apache. } } - public static class traceRecordTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordTime_result"); + public static class traceRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordsTimestr_result"); private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); 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 org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordsTimestr_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordsTimestr_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -694661,9 +702082,11 @@ public java.lang.String getFieldName() { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.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.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), + new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -694671,14 +702094,14 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordsTimestr_result.class, metaDataMap); } - public traceRecordTime_result() { + public traceRecordsTimestr_result() { } - public traceRecordTime_result( - java.util.Map> success, + public traceRecordsTimestr_result( + java.util.Map>> success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) @@ -694693,17 +702116,28 @@ public traceRecordTime_result( /** * Performs a deep copy on other. */ - public traceRecordTime_result(traceRecordTime_result other) { + public traceRecordsTimestr_result(traceRecordsTimestr_result other) { if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { + java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); + for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - java.lang.String other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); + java.lang.Long other_element_key = other_element.getKey(); + java.util.Map> other_element_value = other_element.getValue(); - java.lang.String __this__success_copy_key = other_element_key; + java.lang.Long __this__success_copy_key = other_element_key; - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); + java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); + for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { + + java.lang.String other_element_value_element_key = other_element_value_element.getKey(); + java.util.Set other_element_value_element_value = other_element_value_element.getValue(); + + java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; + + java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); + + __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); + } __this__success.put(__this__success_copy_key, __this__success_copy_value); } @@ -694721,8 +702155,8 @@ public traceRecordTime_result(traceRecordTime_result other) { } @Override - public traceRecordTime_result deepCopy() { - return new traceRecordTime_result(this); + public traceRecordsTimestr_result deepCopy() { + return new traceRecordsTimestr_result(this); } @Override @@ -694737,19 +702171,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.lang.String key, java.util.Set val) { + public void putToSuccess(long key, java.util.Map> val) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); + this.success = new java.util.LinkedHashMap>>(); } this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public java.util.Map>> getSuccess() { return this.success; } - public traceRecordTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public traceRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { this.success = success; return this; } @@ -694774,7 +702208,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public traceRecordTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public traceRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -694799,7 +702233,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public traceRecordTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public traceRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -694824,7 +702258,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public traceRecordTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public traceRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -694851,7 +702285,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.util.Map>>)value); } break; @@ -694924,12 +702358,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecordTime_result) - return this.equals((traceRecordTime_result)that); + if (that instanceof traceRecordsTimestr_result) + return this.equals((traceRecordsTimestr_result)that); return false; } - public boolean equals(traceRecordTime_result that) { + public boolean equals(traceRecordsTimestr_result that) { if (that == null) return false; if (this == that) @@ -694998,7 +702432,7 @@ public int hashCode() { } @Override - public int compareTo(traceRecordTime_result other) { + public int compareTo(traceRecordsTimestr_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -695065,7 +702499,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordsTimestr_result("); boolean first = true; sb.append("success:"); @@ -695124,17 +702558,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class traceRecordTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordTime_resultStandardScheme getScheme() { - return new traceRecordTime_resultStandardScheme(); + public traceRecordsTimestr_resultStandardScheme getScheme() { + return new traceRecordsTimestr_resultStandardScheme(); } } - private static class traceRecordTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class traceRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -695147,25 +702581,37 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTime_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map7058 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map7058.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7059; - @org.apache.thrift.annotation.Nullable java.util.Set _val7060; - for (int _i7061 = 0; _i7061 < _map7058.size; ++_i7061) + org.apache.thrift.protocol.TMap _map7174 = iprot.readMapBegin(); + struct.success = new java.util.LinkedHashMap>>(2*_map7174.size); + long _key7175; + @org.apache.thrift.annotation.Nullable java.util.Map> _val7176; + for (int _i7177 = 0; _i7177 < _map7174.size; ++_i7177) { - _key7059 = iprot.readString(); + _key7175 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set7062 = iprot.readSetBegin(); - _val7060 = new java.util.LinkedHashSet(2*_set7062.size); - long _elem7063; - for (int _i7064 = 0; _i7064 < _set7062.size; ++_i7064) + org.apache.thrift.protocol.TMap _map7178 = iprot.readMapBegin(); + _val7176 = new java.util.LinkedHashMap>(2*_map7178.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7179; + @org.apache.thrift.annotation.Nullable java.util.Set _val7180; + for (int _i7181 = 0; _i7181 < _map7178.size; ++_i7181) { - _elem7063 = iprot.readI64(); - _val7060.add(_elem7063); + _key7179 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7182 = iprot.readSetBegin(); + _val7180 = new java.util.LinkedHashSet(2*_set7182.size); + long _elem7183; + for (int _i7184 = 0; _i7184 < _set7182.size; ++_i7184) + { + _elem7183 = iprot.readI64(); + _val7180.add(_elem7183); + } + iprot.readSetEnd(); + } + _val7176.put(_key7179, _val7180); } - iprot.readSetEnd(); + iprot.readMapEnd(); } - struct.success.put(_key7059, _val7060); + struct.success.put(_key7175, _val7176); } iprot.readMapEnd(); } @@ -695213,24 +702659,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTime_res } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTimestr_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter7065 : struct.success.entrySet()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); + for (java.util.Map.Entry>> _iter7185 : struct.success.entrySet()) { - oprot.writeString(_iter7065.getKey()); + oprot.writeI64(_iter7185.getKey()); { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7065.getValue().size())); - for (long _iter7066 : _iter7065.getValue()) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter7185.getValue().size())); + for (java.util.Map.Entry> _iter7186 : _iter7185.getValue().entrySet()) { - oprot.writeI64(_iter7066); + oprot.writeString(_iter7186.getKey()); + { + oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7186.getValue().size())); + for (long _iter7187 : _iter7186.getValue()) + { + oprot.writeI64(_iter7187); + } + oprot.writeSetEnd(); + } } - oprot.writeSetEnd(); + oprot.writeMapEnd(); } } oprot.writeMapEnd(); @@ -695258,17 +702712,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTime_re } - private static class traceRecordTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class traceRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordTime_resultTupleScheme getScheme() { - return new traceRecordTime_resultTupleScheme(); + public traceRecordsTimestr_resultTupleScheme getScheme() { + return new traceRecordsTimestr_resultTupleScheme(); } } - private static class traceRecordTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class traceRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -695287,14 +702741,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter7067 : struct.success.entrySet()) + for (java.util.Map.Entry>> _iter7188 : struct.success.entrySet()) { - oprot.writeString(_iter7067.getKey()); + oprot.writeI64(_iter7188.getKey()); { - oprot.writeI32(_iter7067.getValue().size()); - for (long _iter7068 : _iter7067.getValue()) + oprot.writeI32(_iter7188.getValue().size()); + for (java.util.Map.Entry> _iter7189 : _iter7188.getValue().entrySet()) { - oprot.writeI64(_iter7068); + oprot.writeString(_iter7189.getKey()); + { + oprot.writeI32(_iter7189.getValue().size()); + for (long _iter7190 : _iter7189.getValue()) + { + oprot.writeI64(_iter7190); + } + } } } } @@ -695312,29 +702773,40 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_res } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map7069 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map7069.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7070; - @org.apache.thrift.annotation.Nullable java.util.Set _val7071; - for (int _i7072 = 0; _i7072 < _map7069.size; ++_i7072) + org.apache.thrift.protocol.TMap _map7191 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); + struct.success = new java.util.LinkedHashMap>>(2*_map7191.size); + long _key7192; + @org.apache.thrift.annotation.Nullable java.util.Map> _val7193; + for (int _i7194 = 0; _i7194 < _map7191.size; ++_i7194) { - _key7070 = iprot.readString(); + _key7192 = iprot.readI64(); { - org.apache.thrift.protocol.TSet _set7073 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val7071 = new java.util.LinkedHashSet(2*_set7073.size); - long _elem7074; - for (int _i7075 = 0; _i7075 < _set7073.size; ++_i7075) + org.apache.thrift.protocol.TMap _map7195 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); + _val7193 = new java.util.LinkedHashMap>(2*_map7195.size); + @org.apache.thrift.annotation.Nullable java.lang.String _key7196; + @org.apache.thrift.annotation.Nullable java.util.Set _val7197; + for (int _i7198 = 0; _i7198 < _map7195.size; ++_i7198) { - _elem7074 = iprot.readI64(); - _val7071.add(_elem7074); + _key7196 = iprot.readString(); + { + org.apache.thrift.protocol.TSet _set7199 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); + _val7197 = new java.util.LinkedHashSet(2*_set7199.size); + long _elem7200; + for (int _i7201 = 0; _i7201 < _set7199.size; ++_i7201) + { + _elem7200 = iprot.readI64(); + _val7197.add(_elem7200); + } + } + _val7193.put(_key7196, _val7197); } } - struct.success.put(_key7070, _val7071); + struct.success.put(_key7192, _val7193); } } struct.setSuccessIsSet(true); @@ -695362,31 +702834,28 @@ private static S scheme(org.apache. } } - public static class traceRecordTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordTimestr_args"); + public static class consolidateRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("consolidateRecords_args"); - private static final org.apache.thrift.protocol.TField RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField("record", org.apache.thrift.protocol.TType.I64, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new consolidateRecords_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new consolidateRecords_argsTupleSchemeFactory(); - public long record; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable java.util.List records; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORD((short)1, "record"), - TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + RECORDS((short)1, "records"), + CREDS((short)2, "creds"), + TRANSACTION((short)3, "transaction"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -695402,15 +702871,13 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORD - return RECORD; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // CREDS + case 1: // RECORDS + return RECORDS; + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -695455,15 +702922,12 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __RECORD_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORD, new org.apache.thrift.meta_data.FieldMetaData("record", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -695471,23 +702935,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(consolidateRecords_args.class, metaDataMap); } - public traceRecordTimestr_args() { + public consolidateRecords_args() { } - public traceRecordTimestr_args( - long record, - java.lang.String timestamp, + public consolidateRecords_args( + java.util.List records, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.record = record; - setRecordIsSet(true); - this.timestamp = timestamp; + this.records = records; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -695496,11 +702957,10 @@ public traceRecordTimestr_args( /** * Performs a deep copy on other. */ - public traceRecordTimestr_args(traceRecordTimestr_args other) { - __isset_bitfield = other.__isset_bitfield; - this.record = other.record; - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + public consolidateRecords_args(consolidateRecords_args other) { + if (other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList(other.records); + this.records = __this__records; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -695514,65 +702974,56 @@ public traceRecordTimestr_args(traceRecordTimestr_args other) { } @Override - public traceRecordTimestr_args deepCopy() { - return new traceRecordTimestr_args(this); + public consolidateRecords_args deepCopy() { + return new consolidateRecords_args(this); } @Override public void clear() { - setRecordIsSet(false); - this.record = 0; - this.timestamp = null; + this.records = null; this.creds = null; this.transaction = null; this.environment = null; } - public long getRecord() { - return this.record; - } - - public traceRecordTimestr_args setRecord(long record) { - this.record = record; - setRecordIsSet(true); - return this; - } - - public void unsetRecord() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __RECORD_ISSET_ID); + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); } - /** Returns true if field record is set (has been assigned a value) and false otherwise */ - public boolean isSetRecord() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __RECORD_ISSET_ID); + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); } - public void setRecordIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __RECORD_ISSET_ID, value); + public void addToRecords(long elem) { + if (this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); } @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { - return this.timestamp; + public java.util.List getRecords() { + return this.records; } - public traceRecordTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { - this.timestamp = timestamp; + public consolidateRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; return this; } - public void unsetTimestamp() { - this.timestamp = null; + public void unsetRecords() { + this.records = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return this.timestamp != null; + /** Returns true if field records is set (has been assigned a value) and false otherwise */ + public boolean isSetRecords() { + return this.records != null; } - public void setTimestampIsSet(boolean value) { + public void setRecordsIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.records = null; } } @@ -695581,7 +703032,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public traceRecordTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public consolidateRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -695606,7 +703057,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public traceRecordTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public consolidateRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -695631,7 +703082,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public traceRecordTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public consolidateRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -695654,19 +703105,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORD: - if (value == null) { - unsetRecord(); - } else { - setRecord((java.lang.Long)value); - } - break; - - case TIMESTAMP: + case RECORDS: if (value == null) { - unsetTimestamp(); + unsetRecords(); } else { - setTimestamp((java.lang.String)value); + setRecords((java.util.List)value); } break; @@ -695701,11 +703144,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORD: - return getRecord(); - - case TIMESTAMP: - return getTimestamp(); + case RECORDS: + return getRecords(); case CREDS: return getCreds(); @@ -695728,10 +703168,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORD: - return isSetRecord(); - case TIMESTAMP: - return isSetTimestamp(); + case RECORDS: + return isSetRecords(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -695744,32 +703182,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecordTimestr_args) - return this.equals((traceRecordTimestr_args)that); + if (that instanceof consolidateRecords_args) + return this.equals((consolidateRecords_args)that); return false; } - public boolean equals(traceRecordTimestr_args that) { + public boolean equals(consolidateRecords_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_record = true; - boolean that_present_record = true; - if (this_present_record || that_present_record) { - if (!(this_present_record && that_present_record)) - return false; - if (this.record != that.record) - return false; - } - - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if (this_present_records || that_present_records) { + if (!(this_present_records && that_present_records)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (!this.records.equals(that.records)) return false; } @@ -695807,11 +703236,9 @@ public boolean equals(traceRecordTimestr_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(record); - - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if (isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -695829,29 +703256,19 @@ public int hashCode() { } @Override - public int compareTo(traceRecordTimestr_args other) { + public int compareTo(consolidateRecords_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecord(), other.isSetRecord()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetRecord()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.record, other.record); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); if (lastComparison != 0) { return lastComparison; } @@ -695907,18 +703324,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("consolidateRecords_args("); boolean first = true; - sb.append("record:"); - sb.append(this.record); - first = false; - if (!first) sb.append(", "); - sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append("records:"); + if (this.records == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.records); } first = false; if (!first) sb.append(", "); @@ -695970,25 +703383,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 traceRecordTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class consolidateRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordTimestr_argsStandardScheme getScheme() { - return new traceRecordTimestr_argsStandardScheme(); + public consolidateRecords_argsStandardScheme getScheme() { + return new consolidateRecords_argsStandardScheme(); } } - private static class traceRecordTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class consolidateRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -695998,23 +703409,25 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_ break; } switch (schemeField.id) { - case 1: // RECORD - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); - struct.setTimestampIsSet(true); + case 1: // RECORDS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list7202 = iprot.readListBegin(); + struct.records = new java.util.ArrayList(_list7202.size); + long _elem7203; + for (int _i7204 = 0; _i7204 < _list7202.size; ++_i7204) + { + _elem7203 = iprot.readI64(); + struct.records.add(_elem7203); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -696023,7 +703436,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -696032,7 +703445,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -696052,16 +703465,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, consolidateRecords_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - oprot.writeFieldBegin(RECORD_FIELD_DESC); - oprot.writeI64(struct.record); - oprot.writeFieldEnd(); - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + if (struct.records != null) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); + for (long _iter7205 : struct.records) + { + oprot.writeI64(_iter7205); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -696085,40 +703502,40 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTimestr } - private static class traceRecordTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class consolidateRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordTimestr_argsTupleScheme getScheme() { - return new traceRecordTimestr_argsTupleScheme(); + public consolidateRecords_argsTupleScheme getScheme() { + return new consolidateRecords_argsTupleScheme(); } } - private static class traceRecordTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class consolidateRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecord()) { + if (struct.isSetRecords()) { optionals.set(0); } - if (struct.isSetTimestamp()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetRecord()) { - oprot.writeI64(struct.record); + optionals.set(3); } - if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeBitSet(optionals, 4); + if (struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter7206 : struct.records) + { + oprot.writeI64(_iter7206); + } + } } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -696132,28 +703549,33 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - struct.record = iprot.readI64(); - struct.setRecordIsSet(true); + { + org.apache.thrift.protocol.TList _list7207 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList(_list7207.size); + long _elem7208; + for (int _i7209 = 0; _i7209 < _list7207.size; ++_i7209) + { + _elem7208 = iprot.readI64(); + struct.records.add(_elem7208); + } + } + struct.setRecordsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); - struct.setTimestampIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -696165,18 +703587,18 @@ private static S scheme(org.apache. } } - public static class traceRecordTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordTimestr_result"); + public static class consolidateRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("consolidateRecords_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new consolidateRecords_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new consolidateRecords_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map> success; // required + public boolean success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required @@ -696253,14 +703675,13 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))))); + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -696268,20 +703689,21 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(consolidateRecords_result.class, metaDataMap); } - public traceRecordTimestr_result() { + public consolidateRecords_result() { } - public traceRecordTimestr_result( - java.util.Map> success, + public consolidateRecords_result( + boolean success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, com.cinchapi.concourse.thrift.PermissionException ex3) { this(); this.success = success; + setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; @@ -696290,22 +703712,9 @@ public traceRecordTimestr_result( /** * Performs a deep copy on other. */ - public traceRecordTimestr_result(traceRecordTimestr_result other) { - if (other.isSetSuccess()) { - java.util.Map> __this__success = new java.util.LinkedHashMap>(other.success.size()); - for (java.util.Map.Entry> other_element : other.success.entrySet()) { - - java.lang.String other_element_key = other_element.getKey(); - java.util.Set other_element_value = other_element.getValue(); - - java.lang.String __this__success_copy_key = other_element_key; - - java.util.Set __this__success_copy_value = new java.util.LinkedHashSet(other_element_value); - - __this__success.put(__this__success_copy_key, __this__success_copy_value); - } - this.success = __this__success; - } + public consolidateRecords_result(consolidateRecords_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -696318,52 +703727,40 @@ public traceRecordTimestr_result(traceRecordTimestr_result other) { } @Override - public traceRecordTimestr_result deepCopy() { - return new traceRecordTimestr_result(this); + public consolidateRecords_result deepCopy() { + return new consolidateRecords_result(this); } @Override public void clear() { - this.success = null; + setSuccessIsSet(false); + this.success = false; this.ex = null; this.ex2 = null; this.ex3 = null; } - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - public void putToSuccess(java.lang.String key, java.util.Set val) { - if (this.success == null) { - this.success = new java.util.LinkedHashMap>(); - } - this.success.put(key, val); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Map> getSuccess() { + public boolean isSuccess() { return this.success; } - public traceRecordTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map> success) { + public consolidateRecords_result setSuccess(boolean success) { this.success = success; + setSuccessIsSet(true); return this; } public void unsetSuccess() { - this.success = null; + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return this.success != null; + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); } public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } @org.apache.thrift.annotation.Nullable @@ -696371,7 +703768,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public traceRecordTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public consolidateRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -696396,7 +703793,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public traceRecordTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public consolidateRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -696421,7 +703818,7 @@ public com.cinchapi.concourse.thrift.PermissionException getEx3() { return this.ex3; } - public traceRecordTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public consolidateRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { this.ex3 = ex3; return this; } @@ -696448,7 +703845,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>)value); + setSuccess((java.lang.Boolean)value); } break; @@ -696484,7 +703881,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return getSuccess(); + return isSuccess(); case EX: return getEx(); @@ -696521,23 +703918,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecordTimestr_result) - return this.equals((traceRecordTimestr_result)that); + if (that instanceof consolidateRecords_result) + return this.equals((consolidateRecords_result)that); return false; } - public boolean equals(traceRecordTimestr_result that) { + public boolean equals(consolidateRecords_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true && this.isSetSuccess(); - boolean that_present_success = true && that.isSetSuccess(); + boolean this_present_success = true; + boolean that_present_success = true; if (this_present_success || that_present_success) { if (!(this_present_success && that_present_success)) return false; - if (!this.success.equals(that.success)) + if (this.success != that.success) return false; } @@ -696575,9 +703972,7 @@ public boolean equals(traceRecordTimestr_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -696595,7 +703990,7 @@ public int hashCode() { } @Override - public int compareTo(traceRecordTimestr_result other) { + public int compareTo(consolidateRecords_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -696662,15 +704057,11 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("consolidateRecords_result("); boolean first = true; sb.append("success:"); - if (this.success == null) { - sb.append("null"); - } else { - sb.append(this.success); - } + sb.append(this.success); first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -696715,23 +704106,25 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 traceRecordTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class consolidateRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordTimestr_resultStandardScheme getScheme() { - return new traceRecordTimestr_resultStandardScheme(); + public consolidateRecords_resultStandardScheme getScheme() { + return new consolidateRecords_resultStandardScheme(); } } - private static class traceRecordTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class consolidateRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -696742,30 +704135,8 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_ } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { - { - org.apache.thrift.protocol.TMap _map7076 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>(2*_map7076.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7077; - @org.apache.thrift.annotation.Nullable java.util.Set _val7078; - for (int _i7079 = 0; _i7079 < _map7076.size; ++_i7079) - { - _key7077 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set7080 = iprot.readSetBegin(); - _val7078 = new java.util.LinkedHashSet(2*_set7080.size); - long _elem7081; - for (int _i7082 = 0; _i7082 < _set7080.size; ++_i7082) - { - _elem7081 = iprot.readI64(); - _val7078.add(_elem7081); - } - iprot.readSetEnd(); - } - struct.success.put(_key7077, _val7078); - } - iprot.readMapEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -696810,28 +704181,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordTimestr_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, consolidateRecords_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { + if (struct.isSetSuccess()) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, struct.success.size())); - for (java.util.Map.Entry> _iter7083 : struct.success.entrySet()) - { - oprot.writeString(_iter7083.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7083.getValue().size())); - for (long _iter7084 : _iter7083.getValue()) - { - oprot.writeI64(_iter7084); - } - oprot.writeSetEnd(); - } - } - oprot.writeMapEnd(); - } + oprot.writeBool(struct.success); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -696855,17 +704211,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordTimestr } - private static class traceRecordTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class consolidateRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordTimestr_resultTupleScheme getScheme() { - return new traceRecordTimestr_resultTupleScheme(); + public consolidateRecords_resultTupleScheme getScheme() { + return new consolidateRecords_resultTupleScheme(); } } - private static class traceRecordTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class consolidateRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -696882,20 +704238,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_ } oprot.writeBitSet(optionals, 4); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry> _iter7085 : struct.success.entrySet()) - { - oprot.writeString(_iter7085.getKey()); - { - oprot.writeI32(_iter7085.getValue().size()); - for (long _iter7086 : _iter7085.getValue()) - { - oprot.writeI64(_iter7086); - } - } - } - } + oprot.writeBool(struct.success); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -696909,31 +704252,11 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TMap _map7087 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - struct.success = new java.util.LinkedHashMap>(2*_map7087.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7088; - @org.apache.thrift.annotation.Nullable java.util.Set _val7089; - for (int _i7090 = 0; _i7090 < _map7087.size; ++_i7090) - { - _key7088 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set7091 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val7089 = new java.util.LinkedHashSet(2*_set7091.size); - long _elem7092; - for (int _i7093 = 0; _i7093 < _set7091.size; ++_i7093) - { - _elem7092 = iprot.readI64(); - _val7089.add(_elem7092); - } - } - struct.success.put(_key7088, _val7089); - } - } + struct.success = iprot.readBool(); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -696959,25 +704282,25 @@ private static S scheme(org.apache. } } - public static class traceRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecords_args"); + public static class exec_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("exec_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField COMMANDS_FIELD_DESC = new org.apache.thrift.protocol.TField("commands", org.apache.thrift.protocol.TType.LIST, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new exec_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new exec_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.util.List commands; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), + COMMANDS((short)1, "commands"), CREDS((short)2, "creds"), TRANSACTION((short)3, "transaction"), ENVIRONMENT((short)4, "environment"); @@ -696996,8 +704319,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; + case 1: // COMMANDS + return COMMANDS; case 2: // CREDS return CREDS; case 3: // TRANSACTION @@ -697050,9 +704373,9 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.COMMANDS, new org.apache.thrift.meta_data.FieldMetaData("commands", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCommand.class)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -697060,20 +704383,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(exec_args.class, metaDataMap); } - public traceRecords_args() { + public exec_args() { } - public traceRecords_args( - java.util.List records, + public exec_args( + java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; + this.commands = commands; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -697082,10 +704405,13 @@ public traceRecords_args( /** * Performs a deep copy on other. */ - public traceRecords_args(traceRecords_args other) { - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + public exec_args(exec_args other) { + if (other.isSetCommands()) { + java.util.List __this__commands = new java.util.ArrayList(other.commands.size()); + for (com.cinchapi.concourse.thrift.TCommand other_element : other.commands) { + __this__commands.add(new com.cinchapi.concourse.thrift.TCommand(other_element)); + } + this.commands = __this__commands; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -697099,56 +704425,56 @@ public traceRecords_args(traceRecords_args other) { } @Override - public traceRecords_args deepCopy() { - return new traceRecords_args(this); + public exec_args deepCopy() { + return new exec_args(this); } @Override public void clear() { - this.records = null; + this.commands = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + public int getCommandsSize() { + return (this.commands == null) ? 0 : this.commands.size(); } @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + public java.util.Iterator getCommandsIterator() { + return (this.commands == null) ? null : this.commands.iterator(); } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); + public void addToCommands(com.cinchapi.concourse.thrift.TCommand elem) { + if (this.commands == null) { + this.commands = new java.util.ArrayList(); } - this.records.add(elem); + this.commands.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public java.util.List getCommands() { + return this.commands; } - public traceRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public exec_args setCommands(@org.apache.thrift.annotation.Nullable java.util.List commands) { + this.commands = commands; return this; } - public void unsetRecords() { - this.records = null; + public void unsetCommands() { + this.commands = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field commands is set (has been assigned a value) and false otherwise */ + public boolean isSetCommands() { + return this.commands != null; } - public void setRecordsIsSet(boolean value) { + public void setCommandsIsSet(boolean value) { if (!value) { - this.records = null; + this.commands = null; } } @@ -697157,7 +704483,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public traceRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public exec_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -697182,7 +704508,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public traceRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public exec_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -697207,7 +704533,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public traceRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public exec_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -697230,11 +704556,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case COMMANDS: if (value == null) { - unsetRecords(); + unsetCommands(); } else { - setRecords((java.util.List)value); + setCommands((java.util.List)value); } break; @@ -697269,8 +704595,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); + case COMMANDS: + return getCommands(); case CREDS: return getCreds(); @@ -697293,8 +704619,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); + case COMMANDS: + return isSetCommands(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -697307,23 +704633,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecords_args) - return this.equals((traceRecords_args)that); + if (that instanceof exec_args) + return this.equals((exec_args)that); return false; } - public boolean equals(traceRecords_args that) { + public boolean equals(exec_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_commands = true && this.isSetCommands(); + boolean that_present_commands = true && that.isSetCommands(); + if (this_present_commands || that_present_commands) { + if (!(this_present_commands && that_present_commands)) return false; - if (!this.records.equals(that.records)) + if (!this.commands.equals(that.commands)) return false; } @@ -697361,9 +704687,9 @@ public boolean equals(traceRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + ((isSetCommands()) ? 131071 : 524287); + if (isSetCommands()) + hashCode = hashCode * 8191 + commands.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -697381,19 +704707,19 @@ public int hashCode() { } @Override - public int compareTo(traceRecords_args other) { + public int compareTo(exec_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetCommands(), other.isSetCommands()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetCommands()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.commands, other.commands); if (lastComparison != 0) { return lastComparison; } @@ -697449,14 +704775,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("exec_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { + sb.append("commands:"); + if (this.commands == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.commands); } first = false; if (!first) sb.append(", "); @@ -697514,17 +704840,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class traceRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class exec_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecords_argsStandardScheme getScheme() { - return new traceRecords_argsStandardScheme(); + public exec_argsStandardScheme getScheme() { + return new exec_argsStandardScheme(); } } - private static class traceRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class exec_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, exec_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -697534,20 +704860,21 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_args s break; } switch (schemeField.id) { - case 1: // RECORDS + case 1: // COMMANDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list7094 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list7094.size); - long _elem7095; - for (int _i7096 = 0; _i7096 < _list7094.size; ++_i7096) + org.apache.thrift.protocol.TList _list7210 = iprot.readListBegin(); + struct.commands = new java.util.ArrayList(_list7210.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCommand _elem7211; + for (int _i7212 = 0; _i7212 < _list7210.size; ++_i7212) { - _elem7095 = iprot.readI64(); - struct.records.add(_elem7095); + _elem7211 = new com.cinchapi.concourse.thrift.TCommand(); + _elem7211.read(iprot); + struct.commands.add(_elem7211); } iprot.readListEnd(); } - struct.setRecordsIsSet(true); + struct.setCommandsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -697590,17 +704917,17 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_args s } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, exec_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); + if (struct.commands != null) { + oprot.writeFieldBegin(COMMANDS_FIELD_DESC); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter7097 : struct.records) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.commands.size())); + for (com.cinchapi.concourse.thrift.TCommand _iter7213 : struct.commands) { - oprot.writeI64(_iter7097); + _iter7213.write(oprot); } oprot.writeListEnd(); } @@ -697627,20 +704954,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecords_args } - private static class traceRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class exec_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecords_argsTupleScheme getScheme() { - return new traceRecords_argsTupleScheme(); + public exec_argsTupleScheme getScheme() { + return new exec_argsTupleScheme(); } } - private static class traceRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class exec_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, exec_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetCommands()) { optionals.set(0); } if (struct.isSetCreds()) { @@ -697653,12 +704980,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecords_args s optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetRecords()) { + if (struct.isSetCommands()) { { - oprot.writeI32(struct.records.size()); - for (long _iter7098 : struct.records) + oprot.writeI32(struct.commands.size()); + for (com.cinchapi.concourse.thrift.TCommand _iter7214 : struct.commands) { - oprot.writeI64(_iter7098); + _iter7214.write(oprot); } } } @@ -697674,21 +705001,22 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecords_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, exec_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list7099 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list7099.size); - long _elem7100; - for (int _i7101 = 0; _i7101 < _list7099.size; ++_i7101) + org.apache.thrift.protocol.TList _list7215 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.commands = new java.util.ArrayList(_list7215.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCommand _elem7216; + for (int _i7217 = 0; _i7217 < _list7215.size; ++_i7217) { - _elem7100 = iprot.readI64(); - struct.records.add(_elem7100); + _elem7216 = new com.cinchapi.concourse.thrift.TCommand(); + _elem7216.read(iprot); + struct.commands.add(_elem7216); } } - struct.setRecordsIsSet(true); + struct.setCommandsIsSet(true); } if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -697712,28 +705040,34 @@ private static S scheme(org.apache. } } - public static class traceRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecords_result"); + public static class exec_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("exec_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new exec_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new exec_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex5; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"), + EX5((short)5, "ex5"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -697757,6 +705091,10 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; + case 5: // EX5 + return EX5; default: return null; } @@ -697804,67 +705142,47 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ComplexTObject.class))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(exec_result.class, metaDataMap); } - public traceRecords_result() { + public exec_result() { } - public traceRecords_result( - java.util.Map>> success, + public exec_result( + com.cinchapi.concourse.thrift.ComplexTObject success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4, + com.cinchapi.concourse.thrift.ParseException ex5) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; + this.ex5 = ex5; } /** * Performs a deep copy on other. */ - public traceRecords_result(traceRecords_result other) { + public exec_result(exec_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); - - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; - - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); - - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } - - __this__success.put(__this__success_copy_key, __this__success_copy_value); - } - this.success = __this__success; + this.success = new com.cinchapi.concourse.thrift.ComplexTObject(other.success); } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); @@ -697873,13 +705191,19 @@ public traceRecords_result(traceRecords_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + } + if (other.isSetEx5()) { + this.ex5 = new com.cinchapi.concourse.thrift.ParseException(other.ex5); } } @Override - public traceRecords_result deepCopy() { - return new traceRecords_result(this); + public exec_result deepCopy() { + return new exec_result(this); } @Override @@ -697888,25 +705212,16 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - } - - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - public void putToSuccess(long key, java.util.Map> val) { - if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); - } - this.success.put(key, val); + this.ex4 = null; + this.ex5 = null; } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public com.cinchapi.concourse.thrift.ComplexTObject getSuccess() { return this.success; } - public traceRecords_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public exec_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject success) { this.success = success; return this; } @@ -697931,7 +705246,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public traceRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public exec_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -697956,7 +705271,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public traceRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public exec_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -697977,11 +705292,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public traceRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public exec_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -698001,6 +705316,56 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public exec_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.ParseException getEx5() { + return this.ex5; + } + + public exec_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex5) { + this.ex5 = ex5; + return this; + } + + public void unsetEx5() { + this.ex5 = null; + } + + /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx5() { + return this.ex5 != null; + } + + public void setEx5IsSet(boolean value) { + if (!value) { + this.ex5 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -698008,7 +705373,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((com.cinchapi.concourse.thrift.ComplexTObject)value); } break; @@ -698032,7 +705397,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + case EX5: + if (value == null) { + unsetEx5(); + } else { + setEx5((com.cinchapi.concourse.thrift.ParseException)value); } break; @@ -698055,6 +705436,12 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + + case EX5: + return getEx5(); + } throw new java.lang.IllegalStateException(); } @@ -698075,18 +705462,22 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); + case EX5: + return isSetEx5(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecords_result) - return this.equals((traceRecords_result)that); + if (that instanceof exec_result) + return this.equals((exec_result)that); return false; } - public boolean equals(traceRecords_result that) { + public boolean equals(exec_result that) { if (that == null) return false; if (this == that) @@ -698128,6 +705519,24 @@ public boolean equals(traceRecords_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + + boolean this_present_ex5 = true && this.isSetEx5(); + boolean that_present_ex5 = true && that.isSetEx5(); + if (this_present_ex5 || that_present_ex5) { + if (!(this_present_ex5 && that_present_ex5)) + return false; + if (!this.ex5.equals(that.ex5)) + return false; + } + return true; } @@ -698151,11 +705560,19 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); + if (isSetEx5()) + hashCode = hashCode * 8191 + ex5.hashCode(); + return hashCode; } @Override - public int compareTo(traceRecords_result other) { + public int compareTo(exec_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -698202,6 +705619,26 @@ public int compareTo(traceRecords_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx5(), other.isSetEx5()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx5()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex5, other.ex5); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -698222,7 +705659,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("exec_result("); boolean first = true; sb.append("success:"); @@ -698256,6 +705693,22 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex5:"); + if (this.ex5 == null) { + sb.append("null"); + } else { + sb.append(this.ex5); + } + first = false; sb.append(")"); return sb.toString(); } @@ -698263,6 +705716,9 @@ public java.lang.String 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 { @@ -698281,17 +705737,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class traceRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class exec_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecords_resultStandardScheme getScheme() { - return new traceRecords_resultStandardScheme(); + public exec_resultStandardScheme getScheme() { + return new exec_resultStandardScheme(); } } - private static class traceRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class exec_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, exec_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -698302,42 +705758,9 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_result } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { - { - org.apache.thrift.protocol.TMap _map7102 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map7102.size); - long _key7103; - @org.apache.thrift.annotation.Nullable java.util.Map> _val7104; - for (int _i7105 = 0; _i7105 < _map7102.size; ++_i7105) - { - _key7103 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map7106 = iprot.readMapBegin(); - _val7104 = new java.util.LinkedHashMap>(2*_map7106.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7107; - @org.apache.thrift.annotation.Nullable java.util.Set _val7108; - for (int _i7109 = 0; _i7109 < _map7106.size; ++_i7109) - { - _key7107 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set7110 = iprot.readSetBegin(); - _val7108 = new java.util.LinkedHashSet(2*_set7110.size); - long _elem7111; - for (int _i7112 = 0; _i7112 < _set7110.size; ++_i7112) - { - _elem7111 = iprot.readI64(); - _val7108.add(_elem7111); - } - iprot.readSetEnd(); - } - _val7104.put(_key7107, _val7108); - } - iprot.readMapEnd(); - } - struct.success.put(_key7103, _val7104); - } - iprot.readMapEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.success = new com.cinchapi.concourse.thrift.ComplexTObject(); + struct.success.read(iprot); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -698363,13 +705786,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_result break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // EX5 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex5 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -698382,36 +705823,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecords_result } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, exec_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter7113 : struct.success.entrySet()) - { - oprot.writeI64(_iter7113.getKey()); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter7113.getValue().size())); - for (java.util.Map.Entry> _iter7114 : _iter7113.getValue().entrySet()) - { - oprot.writeString(_iter7114.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7114.getValue().size())); - for (long _iter7115 : _iter7114.getValue()) - { - oprot.writeI64(_iter7115); - } - oprot.writeSetEnd(); - } - } - oprot.writeMapEnd(); - } - } - oprot.writeMapEnd(); - } + struct.success.write(oprot); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -698429,23 +705847,33 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecords_resul struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex5 != null) { + oprot.writeFieldBegin(EX5_FIELD_DESC); + struct.ex5.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class traceRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class exec_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecords_resultTupleScheme getScheme() { - return new traceRecords_resultTupleScheme(); + public exec_resultTupleScheme getScheme() { + return new exec_resultTupleScheme(); } } - private static class traceRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class exec_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, exec_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -698460,29 +705888,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecords_result if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + if (struct.isSetEx5()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter7116 : struct.success.entrySet()) - { - oprot.writeI64(_iter7116.getKey()); - { - oprot.writeI32(_iter7116.getValue().size()); - for (java.util.Map.Entry> _iter7117 : _iter7116.getValue().entrySet()) - { - oprot.writeString(_iter7117.getKey()); - { - oprot.writeI32(_iter7117.getValue().size()); - for (long _iter7118 : _iter7117.getValue()) - { - oprot.writeI64(_iter7118); - } - } - } - } - } - } + struct.success.write(oprot); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -698493,45 +705907,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecords_result if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } + if (struct.isSetEx5()) { + struct.ex5.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, exec_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TMap _map7119 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map7119.size); - long _key7120; - @org.apache.thrift.annotation.Nullable java.util.Map> _val7121; - for (int _i7122 = 0; _i7122 < _map7119.size; ++_i7122) - { - _key7120 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map7123 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val7121 = new java.util.LinkedHashMap>(2*_map7123.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7124; - @org.apache.thrift.annotation.Nullable java.util.Set _val7125; - for (int _i7126 = 0; _i7126 < _map7123.size; ++_i7126) - { - _key7124 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set7127 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val7125 = new java.util.LinkedHashSet(2*_set7127.size); - long _elem7128; - for (int _i7129 = 0; _i7129 < _set7127.size; ++_i7129) - { - _elem7128 = iprot.readI64(); - _val7125.add(_elem7128); - } - } - _val7121.put(_key7124, _val7125); - } - } - struct.success.put(_key7120, _val7121); - } - } + struct.success = new com.cinchapi.concourse.thrift.ComplexTObject(); + struct.success.read(iprot); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -698545,10 +705935,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, traceRecords_result struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } + if (incoming.get(5)) { + struct.ex5 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } } } @@ -698557,31 +705957,28 @@ private static S scheme(org.apache. } } - public static class traceRecordsTime_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordsTime_args"); + public static class submit_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("submit_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.I64, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField COMMANDS_FIELD_DESC = new org.apache.thrift.protocol.TField("commands", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordsTime_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordsTime_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new submit_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new submit_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public long timestamp; // required + public @org.apache.thrift.annotation.Nullable java.util.List commands; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), - TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + COMMANDS((short)1, "commands"), + CREDS((short)2, "creds"), + TRANSACTION((short)3, "transaction"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -698597,15 +705994,13 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // CREDS + case 1: // COMMANDS + return COMMANDS; + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -698650,16 +706045,12 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __TIMESTAMP_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.COMMANDS, new org.apache.thrift.meta_data.FieldMetaData("commands", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TCommand.class)))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -698667,23 +706058,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordsTime_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(submit_args.class, metaDataMap); } - public traceRecordsTime_args() { + public submit_args() { } - public traceRecordsTime_args( - java.util.List records, - long timestamp, + public submit_args( + java.util.List commands, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; - this.timestamp = timestamp; - setTimestampIsSet(true); + this.commands = commands; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -698692,13 +706080,14 @@ public traceRecordsTime_args( /** * Performs a deep copy on other. */ - public traceRecordsTime_args(traceRecordsTime_args other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + public submit_args(submit_args other) { + if (other.isSetCommands()) { + java.util.List __this__commands = new java.util.ArrayList(other.commands.size()); + for (com.cinchapi.concourse.thrift.TCommand other_element : other.commands) { + __this__commands.add(new com.cinchapi.concourse.thrift.TCommand(other_element)); + } + this.commands = __this__commands; } - this.timestamp = other.timestamp; if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); } @@ -698711,90 +706100,65 @@ public traceRecordsTime_args(traceRecordsTime_args other) { } @Override - public traceRecordsTime_args deepCopy() { - return new traceRecordsTime_args(this); + public submit_args deepCopy() { + return new submit_args(this); } @Override public void clear() { - this.records = null; - setTimestampIsSet(false); - this.timestamp = 0; + this.commands = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); + public int getCommandsSize() { + return (this.commands == null) ? 0 : this.commands.size(); } @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); + public java.util.Iterator getCommandsIterator() { + return (this.commands == null) ? null : this.commands.iterator(); } - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); + public void addToCommands(com.cinchapi.concourse.thrift.TCommand elem) { + if (this.commands == null) { + this.commands = new java.util.ArrayList(); } - this.records.add(elem); + this.commands.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public java.util.List getCommands() { + return this.commands; } - public traceRecordsTime_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public submit_args setCommands(@org.apache.thrift.annotation.Nullable java.util.List commands) { + this.commands = commands; return this; } - public void unsetRecords() { - this.records = null; + public void unsetCommands() { + this.commands = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field commands is set (has been assigned a value) and false otherwise */ + public boolean isSetCommands() { + return this.commands != null; } - public void setRecordsIsSet(boolean value) { + public void setCommandsIsSet(boolean value) { if (!value) { - this.records = null; + this.commands = null; } } - public long getTimestamp() { - return this.timestamp; - } - - public traceRecordsTime_args setTimestamp(long timestamp) { - this.timestamp = timestamp; - setTimestampIsSet(true); - return this; - } - - public void unsetTimestamp() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); - } - - public void setTimestampIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public traceRecordsTime_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public submit_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -698819,7 +706183,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public traceRecordsTime_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public submit_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -698844,7 +706208,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public traceRecordsTime_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public submit_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -698867,19 +706231,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case COMMANDS: if (value == null) { - unsetRecords(); + unsetCommands(); } else { - setRecords((java.util.List)value); - } - break; - - case TIMESTAMP: - if (value == null) { - unsetTimestamp(); - } else { - setTimestamp((java.lang.Long)value); + setCommands((java.util.List)value); } break; @@ -698914,11 +706270,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); - - case TIMESTAMP: - return getTimestamp(); + case COMMANDS: + return getCommands(); case CREDS: return getCreds(); @@ -698941,10 +706294,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); - case TIMESTAMP: - return isSetTimestamp(); + case COMMANDS: + return isSetCommands(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -698957,32 +706308,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecordsTime_args) - return this.equals((traceRecordsTime_args)that); + if (that instanceof submit_args) + return this.equals((submit_args)that); return false; } - public boolean equals(traceRecordsTime_args that) { + public boolean equals(submit_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) - return false; - if (!this.records.equals(that.records)) - return false; - } - - boolean this_present_timestamp = true; - boolean that_present_timestamp = true; - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_commands = true && this.isSetCommands(); + boolean that_present_commands = true && that.isSetCommands(); + if (this_present_commands || that_present_commands) { + if (!(this_present_commands && that_present_commands)) return false; - if (this.timestamp != that.timestamp) + if (!this.commands.equals(that.commands)) return false; } @@ -699020,11 +706362,9 @@ public boolean equals(traceRecordsTime_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); - - hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timestamp); + hashCode = hashCode * 8191 + ((isSetCommands()) ? 131071 : 524287); + if (isSetCommands()) + hashCode = hashCode * 8191 + commands.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -699042,29 +706382,19 @@ public int hashCode() { } @Override - public int compareTo(traceRecordsTime_args other) { + public int compareTo(submit_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetCommands(), other.isSetCommands()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetCommands()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.commands, other.commands); if (lastComparison != 0) { return lastComparison; } @@ -699120,21 +706450,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordsTime_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("submit_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { + sb.append("commands:"); + if (this.commands == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.commands); } first = false; if (!first) sb.append(", "); - sb.append("timestamp:"); - sb.append(this.timestamp); - first = false; - if (!first) sb.append(", "); sb.append("creds:"); if (this.creds == null) { sb.append("null"); @@ -699183,25 +706509,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 traceRecordsTime_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class submit_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordsTime_argsStandardScheme getScheme() { - return new traceRecordsTime_argsStandardScheme(); + public submit_argsStandardScheme getScheme() { + return new submit_argsStandardScheme(); } } - private static class traceRecordsTime_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class submit_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, submit_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -699211,33 +706535,26 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_ar break; } switch (schemeField.id) { - case 1: // RECORDS + case 1: // COMMANDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list7130 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list7130.size); - long _elem7131; - for (int _i7132 = 0; _i7132 < _list7130.size; ++_i7132) + org.apache.thrift.protocol.TList _list7218 = iprot.readListBegin(); + struct.commands = new java.util.ArrayList(_list7218.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCommand _elem7219; + for (int _i7220 = 0; _i7220 < _list7218.size; ++_i7220) { - _elem7131 = iprot.readI64(); - struct.records.add(_elem7131); + _elem7219 = new com.cinchapi.concourse.thrift.TCommand(); + _elem7219.read(iprot); + struct.commands.add(_elem7219); } iprot.readListEnd(); } - struct.setRecordsIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // TIMESTAMP - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); + struct.setCommandsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -699246,7 +706563,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -699255,7 +706572,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_ar org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -699275,25 +706592,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_ar } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, submit_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); + if (struct.commands != null) { + oprot.writeFieldBegin(COMMANDS_FIELD_DESC); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter7133 : struct.records) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.commands.size())); + for (com.cinchapi.concourse.thrift.TCommand _iter7221 : struct.commands) { - oprot.writeI64(_iter7133); + _iter7221.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeI64(struct.timestamp); - oprot.writeFieldEnd(); if (struct.creds != null) { oprot.writeFieldBegin(CREDS_FIELD_DESC); struct.creds.write(oprot); @@ -699315,47 +706629,41 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTime_a } - private static class traceRecordsTime_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class submit_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordsTime_argsTupleScheme getScheme() { - return new traceRecordsTime_argsTupleScheme(); + public submit_argsTupleScheme getScheme() { + return new submit_argsTupleScheme(); } } - private static class traceRecordsTime_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class submit_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, submit_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetCommands()) { optionals.set(0); } - if (struct.isSetTimestamp()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); + optionals.set(3); } - oprot.writeBitSet(optionals, 5); - if (struct.isSetRecords()) { + oprot.writeBitSet(optionals, 4); + if (struct.isSetCommands()) { { - oprot.writeI32(struct.records.size()); - for (long _iter7134 : struct.records) + oprot.writeI32(struct.commands.size()); + for (com.cinchapi.concourse.thrift.TCommand _iter7222 : struct.commands) { - oprot.writeI64(_iter7134); + _iter7222.write(oprot); } } } - if (struct.isSetTimestamp()) { - oprot.writeI64(struct.timestamp); - } if (struct.isSetCreds()) { struct.creds.write(oprot); } @@ -699368,37 +706676,34 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_ar } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, submit_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list7135 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list7135.size); - long _elem7136; - for (int _i7137 = 0; _i7137 < _list7135.size; ++_i7137) + org.apache.thrift.protocol.TList _list7223 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.commands = new java.util.ArrayList(_list7223.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TCommand _elem7224; + for (int _i7225 = 0; _i7225 < _list7223.size; ++_i7225) { - _elem7136 = iprot.readI64(); - struct.records.add(_elem7136); + _elem7224 = new com.cinchapi.concourse.thrift.TCommand(); + _elem7224.read(iprot); + struct.commands.add(_elem7224); } } - struct.setRecordsIsSet(true); + struct.setCommandsIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readI64(); - struct.setTimestampIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -699410,28 +706715,34 @@ private static S scheme(org.apache. } } - public static class traceRecordsTime_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordsTime_result"); + public static class submit_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("submit_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordsTime_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordsTime_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new submit_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new submit_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable java.util.List success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex5; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"), + EX5((short)5, "ex5"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -699455,6 +706766,10 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; + case 5: // EX5 + return EX5; default: return null; } @@ -699502,65 +706817,50 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ComplexTObject.class)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordsTime_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(submit_result.class, metaDataMap); } - public traceRecordsTime_result() { + public submit_result() { } - public traceRecordsTime_result( - java.util.Map>> success, + public submit_result( + java.util.List success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4, + com.cinchapi.concourse.thrift.ParseException ex5) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; + this.ex5 = ex5; } /** * Performs a deep copy on other. */ - public traceRecordsTime_result(traceRecordsTime_result other) { + public submit_result(submit_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); - - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; - - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); - - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } - - __this__success.put(__this__success_copy_key, __this__success_copy_value); + java.util.List __this__success = new java.util.ArrayList(other.success.size()); + for (com.cinchapi.concourse.thrift.ComplexTObject other_element : other.success) { + __this__success.add(new com.cinchapi.concourse.thrift.ComplexTObject(other_element)); } this.success = __this__success; } @@ -699571,13 +706871,19 @@ public traceRecordsTime_result(traceRecordsTime_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + } + if (other.isSetEx5()) { + this.ex5 = new com.cinchapi.concourse.thrift.ParseException(other.ex5); } } @Override - public traceRecordsTime_result deepCopy() { - return new traceRecordsTime_result(this); + public submit_result deepCopy() { + return new submit_result(this); } @Override @@ -699586,25 +706892,32 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; + this.ex5 = null; } public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(long key, java.util.Map> val) { + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(com.cinchapi.concourse.thrift.ComplexTObject elem) { if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); + this.success = new java.util.ArrayList(); } - this.success.put(key, val); + this.success.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public java.util.List getSuccess() { return this.success; } - public traceRecordsTime_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public submit_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.List success) { this.success = success; return this; } @@ -699629,7 +706942,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public traceRecordsTime_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public submit_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -699654,7 +706967,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public traceRecordsTime_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public submit_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -699675,11 +706988,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public traceRecordsTime_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public submit_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -699699,6 +707012,56 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public submit_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.ParseException getEx5() { + return this.ex5; + } + + public submit_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex5) { + this.ex5 = ex5; + return this; + } + + public void unsetEx5() { + this.ex5 = null; + } + + /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx5() { + return this.ex5 != null; + } + + public void setEx5IsSet(boolean value) { + if (!value) { + this.ex5 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -699706,7 +707069,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((java.util.List)value); } break; @@ -699730,7 +707093,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + case EX5: + if (value == null) { + unsetEx5(); + } else { + setEx5((com.cinchapi.concourse.thrift.ParseException)value); } break; @@ -699753,6 +707132,12 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + + case EX5: + return getEx5(); + } throw new java.lang.IllegalStateException(); } @@ -699773,18 +707158,22 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); + case EX5: + return isSetEx5(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecordsTime_result) - return this.equals((traceRecordsTime_result)that); + if (that instanceof submit_result) + return this.equals((submit_result)that); return false; } - public boolean equals(traceRecordsTime_result that) { + public boolean equals(submit_result that) { if (that == null) return false; if (this == that) @@ -699826,6 +707215,24 @@ public boolean equals(traceRecordsTime_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + + boolean this_present_ex5 = true && this.isSetEx5(); + boolean that_present_ex5 = true && that.isSetEx5(); + if (this_present_ex5 || that_present_ex5) { + if (!(this_present_ex5 && that_present_ex5)) + return false; + if (!this.ex5.equals(that.ex5)) + return false; + } + return true; } @@ -699849,11 +707256,19 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); + if (isSetEx5()) + hashCode = hashCode * 8191 + ex5.hashCode(); + return hashCode; } @Override - public int compareTo(traceRecordsTime_result other) { + public int compareTo(submit_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -699900,6 +707315,26 @@ public int compareTo(traceRecordsTime_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx5(), other.isSetEx5()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx5()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex5, other.ex5); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -699920,7 +707355,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordsTime_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("submit_result("); boolean first = true; sb.append("success:"); @@ -699954,6 +707389,22 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex5:"); + if (this.ex5 == null) { + sb.append("null"); + } else { + sb.append(this.ex5); + } + first = false; sb.append(")"); return sb.toString(); } @@ -699979,17 +707430,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class traceRecordsTime_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class submit_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordsTime_resultStandardScheme getScheme() { - return new traceRecordsTime_resultStandardScheme(); + public submit_resultStandardScheme getScheme() { + return new submit_resultStandardScheme(); } } - private static class traceRecordsTime_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class submit_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, submit_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -700000,41 +707451,18 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_re } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TMap _map7138 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map7138.size); - long _key7139; - @org.apache.thrift.annotation.Nullable java.util.Map> _val7140; - for (int _i7141 = 0; _i7141 < _map7138.size; ++_i7141) + org.apache.thrift.protocol.TList _list7226 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list7226.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem7227; + for (int _i7228 = 0; _i7228 < _list7226.size; ++_i7228) { - _key7139 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map7142 = iprot.readMapBegin(); - _val7140 = new java.util.LinkedHashMap>(2*_map7142.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7143; - @org.apache.thrift.annotation.Nullable java.util.Set _val7144; - for (int _i7145 = 0; _i7145 < _map7142.size; ++_i7145) - { - _key7143 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set7146 = iprot.readSetBegin(); - _val7144 = new java.util.LinkedHashSet(2*_set7146.size); - long _elem7147; - for (int _i7148 = 0; _i7148 < _set7146.size; ++_i7148) - { - _elem7147 = iprot.readI64(); - _val7144.add(_elem7147); - } - iprot.readSetEnd(); - } - _val7140.put(_key7143, _val7144); - } - iprot.readMapEnd(); - } - struct.success.put(_key7139, _val7140); + _elem7227 = new com.cinchapi.concourse.thrift.ComplexTObject(); + _elem7227.read(iprot); + struct.success.add(_elem7227); } - iprot.readMapEnd(); + iprot.readListEnd(); } struct.setSuccessIsSet(true); } else { @@ -700061,13 +707489,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_re break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // EX5 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex5 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -700080,35 +707526,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTime_re } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, submit_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter7149 : struct.success.entrySet()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); + for (com.cinchapi.concourse.thrift.ComplexTObject _iter7229 : struct.success) { - oprot.writeI64(_iter7149.getKey()); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter7149.getValue().size())); - for (java.util.Map.Entry> _iter7150 : _iter7149.getValue().entrySet()) - { - oprot.writeString(_iter7150.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7150.getValue().size())); - for (long _iter7151 : _iter7150.getValue()) - { - oprot.writeI64(_iter7151); - } - oprot.writeSetEnd(); - } - } - oprot.writeMapEnd(); - } + _iter7229.write(oprot); } - oprot.writeMapEnd(); + oprot.writeListEnd(); } oprot.writeFieldEnd(); } @@ -700127,23 +707557,33 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTime_r struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex5 != null) { + oprot.writeFieldBegin(EX5_FIELD_DESC); + struct.ex5.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class traceRecordsTime_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class submit_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordsTime_resultTupleScheme getScheme() { - return new traceRecordsTime_resultTupleScheme(); + public submit_resultTupleScheme getScheme() { + return new submit_resultTupleScheme(); } } - private static class traceRecordsTime_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class submit_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, submit_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -700158,27 +707598,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_re if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + if (struct.isSetEx5()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter7152 : struct.success.entrySet()) + for (com.cinchapi.concourse.thrift.ComplexTObject _iter7230 : struct.success) { - oprot.writeI64(_iter7152.getKey()); - { - oprot.writeI32(_iter7152.getValue().size()); - for (java.util.Map.Entry> _iter7153 : _iter7152.getValue().entrySet()) - { - oprot.writeString(_iter7153.getKey()); - { - oprot.writeI32(_iter7153.getValue().size()); - for (long _iter7154 : _iter7153.getValue()) - { - oprot.writeI64(_iter7154); - } - } - } - } + _iter7230.write(oprot); } } } @@ -700191,43 +707623,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_re if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } + if (struct.isSetEx5()) { + struct.ex5.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, submit_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map7155 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map7155.size); - long _key7156; - @org.apache.thrift.annotation.Nullable java.util.Map> _val7157; - for (int _i7158 = 0; _i7158 < _map7155.size; ++_i7158) + org.apache.thrift.protocol.TList _list7231 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list7231.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem7232; + for (int _i7233 = 0; _i7233 < _list7231.size; ++_i7233) { - _key7156 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map7159 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val7157 = new java.util.LinkedHashMap>(2*_map7159.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7160; - @org.apache.thrift.annotation.Nullable java.util.Set _val7161; - for (int _i7162 = 0; _i7162 < _map7159.size; ++_i7162) - { - _key7160 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set7163 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val7161 = new java.util.LinkedHashSet(2*_set7163.size); - long _elem7164; - for (int _i7165 = 0; _i7165 < _set7163.size; ++_i7165) - { - _elem7164 = iprot.readI64(); - _val7161.add(_elem7164); - } - } - _val7157.put(_key7160, _val7161); - } - } - struct.success.put(_key7156, _val7157); + _elem7232 = new com.cinchapi.concourse.thrift.ComplexTObject(); + _elem7232.read(iprot); + struct.success.add(_elem7232); } } struct.setSuccessIsSet(true); @@ -700243,10 +707660,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTime_res struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } + if (incoming.get(5)) { + struct.ex5 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } } } @@ -700255,31 +707682,28 @@ private static S scheme(org.apache. } } - public static class traceRecordsTimestr_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordsTimestr_args"); + public static class execCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("execCcl_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timestamp", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)3); - private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)4); - private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordsTimestr_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordsTimestr_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new execCcl_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new execCcl_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required - public @org.apache.thrift.annotation.Nullable java.lang.String timestamp; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), - TIMESTAMP((short)2, "timestamp"), - CREDS((short)3, "creds"), - TRANSACTION((short)4, "transaction"), - ENVIRONMENT((short)5, "environment"); + CCL((short)1, "ccl"), + CREDS((short)2, "creds"), + TRANSACTION((short)3, "transaction"), + ENVIRONMENT((short)4, "environment"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -700295,15 +707719,13 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; - case 2: // TIMESTAMP - return TIMESTAMP; - case 3: // CREDS + case 1: // CCL + return CCL; + case 2: // CREDS return CREDS; - case 4: // TRANSACTION + case 3: // TRANSACTION return TRANSACTION; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT return ENVIRONMENT; default: return null; @@ -700351,10 +707773,7 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); - tmpMap.put(_Fields.TIMESTAMP, new org.apache.thrift.meta_data.FieldMetaData("timestamp", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); @@ -700363,22 +707782,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordsTimestr_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(execCcl_args.class, metaDataMap); } - public traceRecordsTimestr_args() { + public execCcl_args() { } - public traceRecordsTimestr_args( - java.util.List records, - java.lang.String timestamp, + public execCcl_args( + java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; - this.timestamp = timestamp; + this.ccl = ccl; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -700387,13 +707804,9 @@ public traceRecordsTimestr_args( /** * Performs a deep copy on other. */ - public traceRecordsTimestr_args(traceRecordsTimestr_args other) { - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; - } - if (other.isSetTimestamp()) { - this.timestamp = other.timestamp; + public execCcl_args(execCcl_args other) { + if (other.isSetCcl()) { + this.ccl = other.ccl; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -700407,82 +707820,40 @@ public traceRecordsTimestr_args(traceRecordsTimestr_args other) { } @Override - public traceRecordsTimestr_args deepCopy() { - return new traceRecordsTimestr_args(this); + public execCcl_args deepCopy() { + return new execCcl_args(this); } @Override public void clear() { - this.records = null; - this.timestamp = null; + this.ccl = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; - } - - public traceRecordsTimestr_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; - return this; - } - - public void unsetRecords() { - this.records = null; - } - - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; - } - - public void setRecordsIsSet(boolean value) { - if (!value) { - this.records = null; - } - } - - @org.apache.thrift.annotation.Nullable - public java.lang.String getTimestamp() { - return this.timestamp; + public java.lang.String getCcl() { + return this.ccl; } - public traceRecordsTimestr_args setTimestamp(@org.apache.thrift.annotation.Nullable java.lang.String timestamp) { - this.timestamp = timestamp; + public execCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetTimestamp() { - this.timestamp = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field timestamp is set (has been assigned a value) and false otherwise */ - public boolean isSetTimestamp() { - return this.timestamp != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setTimestampIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.timestamp = null; + this.ccl = null; } } @@ -700491,7 +707862,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public traceRecordsTimestr_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public execCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -700516,7 +707887,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public traceRecordsTimestr_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public execCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -700541,7 +707912,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public traceRecordsTimestr_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public execCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -700564,19 +707935,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: - if (value == null) { - unsetRecords(); - } else { - setRecords((java.util.List)value); - } - break; - - case TIMESTAMP: + case CCL: if (value == null) { - unsetTimestamp(); + unsetCcl(); } else { - setTimestamp((java.lang.String)value); + setCcl((java.lang.String)value); } break; @@ -700611,11 +707974,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); - - case TIMESTAMP: - return getTimestamp(); + case CCL: + return getCcl(); case CREDS: return getCreds(); @@ -700638,10 +707998,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); - case TIMESTAMP: - return isSetTimestamp(); + case CCL: + return isSetCcl(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -700654,32 +708012,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecordsTimestr_args) - return this.equals((traceRecordsTimestr_args)that); + if (that instanceof execCcl_args) + return this.equals((execCcl_args)that); return false; } - public boolean equals(traceRecordsTimestr_args that) { + public boolean equals(execCcl_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) - return false; - if (!this.records.equals(that.records)) - return false; - } - - boolean this_present_timestamp = true && this.isSetTimestamp(); - boolean that_present_timestamp = true && that.isSetTimestamp(); - if (this_present_timestamp || that_present_timestamp) { - if (!(this_present_timestamp && that_present_timestamp)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.timestamp.equals(that.timestamp)) + if (!this.ccl.equals(that.ccl)) return false; } @@ -700717,13 +708066,9 @@ public boolean equals(traceRecordsTimestr_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); - - hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); - if (isSetTimestamp()) - hashCode = hashCode * 8191 + timestamp.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -700741,29 +708086,19 @@ public int hashCode() { } @Override - public int compareTo(traceRecordsTimestr_args other) { + public int compareTo(execCcl_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = java.lang.Boolean.compare(isSetTimestamp(), other.isSetTimestamp()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetTimestamp()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timestamp, other.timestamp); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } @@ -700819,22 +708154,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordsTimestr_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("execCcl_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { - sb.append("null"); - } else { - sb.append(this.records); - } - first = false; - if (!first) sb.append(", "); - sb.append("timestamp:"); - if (this.timestamp == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.timestamp); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); @@ -700892,17 +708219,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class traceRecordsTimestr_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class execCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordsTimestr_argsStandardScheme getScheme() { - return new traceRecordsTimestr_argsStandardScheme(); + public execCcl_argsStandardScheme getScheme() { + return new execCcl_argsStandardScheme(); } } - private static class traceRecordsTimestr_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class execCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, execCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -700912,33 +708239,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr break; } switch (schemeField.id) { - case 1: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list7166 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list7166.size); - long _elem7167; - for (int _i7168 = 0; _i7168 < _list7166.size; ++_i7168) - { - _elem7167 = iprot.readI64(); - struct.records.add(_elem7167); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // TIMESTAMP + case 1: // CCL if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.timestamp = iprot.readString(); - struct.setTimestampIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // CREDS + case 2: // CREDS if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); @@ -700947,7 +708256,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 4: // TRANSACTION + case 3: // TRANSACTION if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); @@ -700956,7 +708265,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 5: // ENVIRONMENT + case 4: // ENVIRONMENT if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); @@ -700976,25 +708285,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, execCcl_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter7169 : struct.records) - { - oprot.writeI64(_iter7169); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } - if (struct.timestamp != null) { - oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); - oprot.writeString(struct.timestamp); + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -701018,46 +708315,34 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTimest } - private static class traceRecordsTimestr_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class execCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordsTimestr_argsTupleScheme getScheme() { - return new traceRecordsTimestr_argsTupleScheme(); + public execCcl_argsTupleScheme getScheme() { + return new execCcl_argsTupleScheme(); } } - private static class traceRecordsTimestr_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class execCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, execCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetCcl()) { optionals.set(0); } - if (struct.isSetTimestamp()) { - optionals.set(1); - } if (struct.isSetCreds()) { - optionals.set(2); + optionals.set(1); } if (struct.isSetTransaction()) { - optionals.set(3); + optionals.set(2); } if (struct.isSetEnvironment()) { - optionals.set(4); - } - oprot.writeBitSet(optionals, 5); - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter7170 : struct.records) - { - oprot.writeI64(_iter7170); - } - } + optionals.set(3); } - if (struct.isSetTimestamp()) { - oprot.writeString(struct.timestamp); + oprot.writeBitSet(optionals, 4); + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -701071,37 +708356,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, execCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(5); + java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list7171 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list7171.size); - long _elem7172; - for (int _i7173 = 0; _i7173 < _list7171.size; ++_i7173) - { - _elem7172 = iprot.readI64(); - struct.records.add(_elem7172); - } - } - struct.setRecordsIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(1)) { - struct.timestamp = iprot.readString(); - struct.setTimestampIsSet(true); - } - if (incoming.get(2)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); struct.creds.read(iprot); struct.setCredsIsSet(true); } - if (incoming.get(3)) { + if (incoming.get(2)) { struct.transaction = new com.cinchapi.concourse.thrift.TransactionToken(); struct.transaction.read(iprot); struct.setTransactionIsSet(true); } - if (incoming.get(4)) { + if (incoming.get(3)) { struct.environment = iprot.readString(); struct.setEnvironmentIsSet(true); } @@ -701113,28 +708385,34 @@ private static S scheme(org.apache. } } - public static class traceRecordsTimestr_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("traceRecordsTimestr_result"); + public static class execCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("execCcl_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new traceRecordsTimestr_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new traceRecordsTimestr_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new execCcl_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new execCcl_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map>> success; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex5; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"), + EX5((short)5, "ex5"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -701158,6 +708436,10 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; + case 5: // EX5 + return EX5; default: return null; } @@ -701205,67 +708487,47 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64), - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), - new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))))); + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ComplexTObject.class))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(traceRecordsTimestr_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(execCcl_result.class, metaDataMap); } - public traceRecordsTimestr_result() { + public execCcl_result() { } - public traceRecordsTimestr_result( - java.util.Map>> success, + public execCcl_result( + com.cinchapi.concourse.thrift.ComplexTObject success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4, + com.cinchapi.concourse.thrift.ParseException ex5) { this(); this.success = success; this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; + this.ex5 = ex5; } /** * Performs a deep copy on other. */ - public traceRecordsTimestr_result(traceRecordsTimestr_result other) { + public execCcl_result(execCcl_result other) { if (other.isSetSuccess()) { - java.util.Map>> __this__success = new java.util.LinkedHashMap>>(other.success.size()); - for (java.util.Map.Entry>> other_element : other.success.entrySet()) { - - java.lang.Long other_element_key = other_element.getKey(); - java.util.Map> other_element_value = other_element.getValue(); - - java.lang.Long __this__success_copy_key = other_element_key; - - java.util.Map> __this__success_copy_value = new java.util.LinkedHashMap>(other_element_value.size()); - for (java.util.Map.Entry> other_element_value_element : other_element_value.entrySet()) { - - java.lang.String other_element_value_element_key = other_element_value_element.getKey(); - java.util.Set other_element_value_element_value = other_element_value_element.getValue(); - - java.lang.String __this__success_copy_value_copy_key = other_element_value_element_key; - - java.util.Set __this__success_copy_value_copy_value = new java.util.LinkedHashSet(other_element_value_element_value); - - __this__success_copy_value.put(__this__success_copy_value_copy_key, __this__success_copy_value_copy_value); - } - - __this__success.put(__this__success_copy_key, __this__success_copy_value); - } - this.success = __this__success; + this.success = new com.cinchapi.concourse.thrift.ComplexTObject(other.success); } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); @@ -701274,13 +708536,19 @@ public traceRecordsTimestr_result(traceRecordsTimestr_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + } + if (other.isSetEx5()) { + this.ex5 = new com.cinchapi.concourse.thrift.ParseException(other.ex5); } } @Override - public traceRecordsTimestr_result deepCopy() { - return new traceRecordsTimestr_result(this); + public execCcl_result deepCopy() { + return new execCcl_result(this); } @Override @@ -701289,25 +708557,16 @@ public void clear() { this.ex = null; this.ex2 = null; this.ex3 = null; - } - - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - public void putToSuccess(long key, java.util.Map> val) { - if (this.success == null) { - this.success = new java.util.LinkedHashMap>>(); - } - this.success.put(key, val); + this.ex4 = null; + this.ex5 = null; } @org.apache.thrift.annotation.Nullable - public java.util.Map>> getSuccess() { + public com.cinchapi.concourse.thrift.ComplexTObject getSuccess() { return this.success; } - public traceRecordsTimestr_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map>> success) { + public execCcl_result setSuccess(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject success) { this.success = success; return this; } @@ -701332,7 +708591,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public traceRecordsTimestr_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public execCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -701357,7 +708616,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public traceRecordsTimestr_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public execCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -701378,11 +708637,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public traceRecordsTimestr_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public execCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -701402,6 +708661,56 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public execCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.ParseException getEx5() { + return this.ex5; + } + + public execCcl_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex5) { + this.ex5 = ex5; + return this; + } + + public void unsetEx5() { + this.ex5 = null; + } + + /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx5() { + return this.ex5 != null; + } + + public void setEx5IsSet(boolean value) { + if (!value) { + this.ex5 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -701409,7 +708718,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map>>)value); + setSuccess((com.cinchapi.concourse.thrift.ComplexTObject)value); } break; @@ -701433,7 +708742,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + case EX5: + if (value == null) { + unsetEx5(); + } else { + setEx5((com.cinchapi.concourse.thrift.ParseException)value); } break; @@ -701456,6 +708781,12 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + + case EX5: + return getEx5(); + } throw new java.lang.IllegalStateException(); } @@ -701476,18 +708807,22 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); + case EX5: + return isSetEx5(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof traceRecordsTimestr_result) - return this.equals((traceRecordsTimestr_result)that); + if (that instanceof execCcl_result) + return this.equals((execCcl_result)that); return false; } - public boolean equals(traceRecordsTimestr_result that) { + public boolean equals(execCcl_result that) { if (that == null) return false; if (this == that) @@ -701529,6 +708864,24 @@ public boolean equals(traceRecordsTimestr_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + + boolean this_present_ex5 = true && this.isSetEx5(); + boolean that_present_ex5 = true && that.isSetEx5(); + if (this_present_ex5 || that_present_ex5) { + if (!(this_present_ex5 && that_present_ex5)) + return false; + if (!this.ex5.equals(that.ex5)) + return false; + } + return true; } @@ -701552,11 +708905,19 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); + if (isSetEx5()) + hashCode = hashCode * 8191 + ex5.hashCode(); + return hashCode; } @Override - public int compareTo(traceRecordsTimestr_result other) { + public int compareTo(execCcl_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -701603,6 +708964,26 @@ public int compareTo(traceRecordsTimestr_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx5(), other.isSetEx5()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx5()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex5, other.ex5); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -701623,7 +709004,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("traceRecordsTimestr_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("execCcl_result("); boolean first = true; sb.append("success:"); @@ -701657,6 +709038,22 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex5:"); + if (this.ex5 == null) { + sb.append("null"); + } else { + sb.append(this.ex5); + } + first = false; sb.append(")"); return sb.toString(); } @@ -701664,6 +709061,9 @@ public java.lang.String 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 { @@ -701682,17 +709082,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class traceRecordsTimestr_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class execCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordsTimestr_resultStandardScheme getScheme() { - return new traceRecordsTimestr_resultStandardScheme(); + public execCcl_resultStandardScheme getScheme() { + return new execCcl_resultStandardScheme(); } } - private static class traceRecordsTimestr_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class execCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, execCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -701703,42 +709103,9 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { - { - org.apache.thrift.protocol.TMap _map7174 = iprot.readMapBegin(); - struct.success = new java.util.LinkedHashMap>>(2*_map7174.size); - long _key7175; - @org.apache.thrift.annotation.Nullable java.util.Map> _val7176; - for (int _i7177 = 0; _i7177 < _map7174.size; ++_i7177) - { - _key7175 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map7178 = iprot.readMapBegin(); - _val7176 = new java.util.LinkedHashMap>(2*_map7178.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7179; - @org.apache.thrift.annotation.Nullable java.util.Set _val7180; - for (int _i7181 = 0; _i7181 < _map7178.size; ++_i7181) - { - _key7179 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set7182 = iprot.readSetBegin(); - _val7180 = new java.util.LinkedHashSet(2*_set7182.size); - long _elem7183; - for (int _i7184 = 0; _i7184 < _set7182.size; ++_i7184) - { - _elem7183 = iprot.readI64(); - _val7180.add(_elem7183); - } - iprot.readSetEnd(); - } - _val7176.put(_key7179, _val7180); - } - iprot.readMapEnd(); - } - struct.success.put(_key7175, _val7176); - } - iprot.readMapEnd(); - } + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.success = new com.cinchapi.concourse.thrift.ComplexTObject(); + struct.success.read(iprot); struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -701764,13 +709131,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // EX5 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex5 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -701783,36 +709168,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, traceRecordsTimestr } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, execCcl_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP, struct.success.size())); - for (java.util.Map.Entry>> _iter7185 : struct.success.entrySet()) - { - oprot.writeI64(_iter7185.getKey()); - { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET, _iter7185.getValue().size())); - for (java.util.Map.Entry> _iter7186 : _iter7185.getValue().entrySet()) - { - oprot.writeString(_iter7186.getKey()); - { - oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, _iter7186.getValue().size())); - for (long _iter7187 : _iter7186.getValue()) - { - oprot.writeI64(_iter7187); - } - oprot.writeSetEnd(); - } - } - oprot.writeMapEnd(); - } - } - oprot.writeMapEnd(); - } + struct.success.write(oprot); oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -701830,23 +709192,33 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, traceRecordsTimest struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex5 != null) { + oprot.writeFieldBegin(EX5_FIELD_DESC); + struct.ex5.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class traceRecordsTimestr_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class execCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public traceRecordsTimestr_resultTupleScheme getScheme() { - return new traceRecordsTimestr_resultTupleScheme(); + public execCcl_resultTupleScheme getScheme() { + return new execCcl_resultTupleScheme(); } } - private static class traceRecordsTimestr_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class execCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, execCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -701861,29 +709233,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + if (struct.isSetEx5()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry>> _iter7188 : struct.success.entrySet()) - { - oprot.writeI64(_iter7188.getKey()); - { - oprot.writeI32(_iter7188.getValue().size()); - for (java.util.Map.Entry> _iter7189 : _iter7188.getValue().entrySet()) - { - oprot.writeString(_iter7189.getKey()); - { - oprot.writeI32(_iter7189.getValue().size()); - for (long _iter7190 : _iter7189.getValue()) - { - oprot.writeI64(_iter7190); - } - } - } - } - } - } + struct.success.write(oprot); } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -701894,45 +709252,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } + if (struct.isSetEx5()) { + struct.ex5.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, execCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TMap _map7191 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.MAP); - struct.success = new java.util.LinkedHashMap>>(2*_map7191.size); - long _key7192; - @org.apache.thrift.annotation.Nullable java.util.Map> _val7193; - for (int _i7194 = 0; _i7194 < _map7191.size; ++_i7194) - { - _key7192 = iprot.readI64(); - { - org.apache.thrift.protocol.TMap _map7195 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.SET); - _val7193 = new java.util.LinkedHashMap>(2*_map7195.size); - @org.apache.thrift.annotation.Nullable java.lang.String _key7196; - @org.apache.thrift.annotation.Nullable java.util.Set _val7197; - for (int _i7198 = 0; _i7198 < _map7195.size; ++_i7198) - { - _key7196 = iprot.readString(); - { - org.apache.thrift.protocol.TSet _set7199 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); - _val7197 = new java.util.LinkedHashSet(2*_set7199.size); - long _elem7200; - for (int _i7201 = 0; _i7201 < _set7199.size; ++_i7201) - { - _elem7200 = iprot.readI64(); - _val7197.add(_elem7200); - } - } - _val7193.put(_key7196, _val7197); - } - } - struct.success.put(_key7192, _val7193); - } - } + struct.success = new com.cinchapi.concourse.thrift.ComplexTObject(); + struct.success.read(iprot); struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -701946,10 +709280,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, traceRecordsTimestr_ struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } + if (incoming.get(5)) { + struct.ex5 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } } } @@ -701958,25 +709302,25 @@ private static S scheme(org.apache. } } - public static class consolidateRecords_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("consolidateRecords_args"); + public static class submitCcl_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("submitCcl_args"); - private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField("records", org.apache.thrift.protocol.TType.LIST, (short)1); + private static final org.apache.thrift.protocol.TField CCL_FIELD_DESC = new org.apache.thrift.protocol.TField("ccl", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField CREDS_FIELD_DESC = new org.apache.thrift.protocol.TField("creds", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField TRANSACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("transaction", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final org.apache.thrift.protocol.TField ENVIRONMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("environment", org.apache.thrift.protocol.TType.STRING, (short)4); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new consolidateRecords_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new consolidateRecords_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new submitCcl_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new submitCcl_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List records; // required + public @org.apache.thrift.annotation.Nullable java.lang.String ccl; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction; // required public @org.apache.thrift.annotation.Nullable java.lang.String environment; // 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 { - RECORDS((short)1, "records"), + CCL((short)1, "ccl"), CREDS((short)2, "creds"), TRANSACTION((short)3, "transaction"), ENVIRONMENT((short)4, "environment"); @@ -701995,8 +709339,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // RECORDS - return RECORDS; + case 1: // CCL + return CCL; case 2: // CREDS return CREDS; case 3: // TRANSACTION @@ -702049,9 +709393,8 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.RECORDS, new org.apache.thrift.meta_data.FieldMetaData("records", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.CCL, new org.apache.thrift.meta_data.FieldMetaData("ccl", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.CREDS, new org.apache.thrift.meta_data.FieldMetaData("creds", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.AccessToken.class))); tmpMap.put(_Fields.TRANSACTION, new org.apache.thrift.meta_data.FieldMetaData("transaction", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -702059,20 +709402,20 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.ENVIRONMENT, new org.apache.thrift.meta_data.FieldMetaData("environment", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(consolidateRecords_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(submitCcl_args.class, metaDataMap); } - public consolidateRecords_args() { + public submitCcl_args() { } - public consolidateRecords_args( - java.util.List records, + public submitCcl_args( + java.lang.String ccl, com.cinchapi.concourse.thrift.AccessToken creds, com.cinchapi.concourse.thrift.TransactionToken transaction, java.lang.String environment) { this(); - this.records = records; + this.ccl = ccl; this.creds = creds; this.transaction = transaction; this.environment = environment; @@ -702081,10 +709424,9 @@ public consolidateRecords_args( /** * Performs a deep copy on other. */ - public consolidateRecords_args(consolidateRecords_args other) { - if (other.isSetRecords()) { - java.util.List __this__records = new java.util.ArrayList(other.records); - this.records = __this__records; + public submitCcl_args(submitCcl_args other) { + if (other.isSetCcl()) { + this.ccl = other.ccl; } if (other.isSetCreds()) { this.creds = new com.cinchapi.concourse.thrift.AccessToken(other.creds); @@ -702098,56 +709440,40 @@ public consolidateRecords_args(consolidateRecords_args other) { } @Override - public consolidateRecords_args deepCopy() { - return new consolidateRecords_args(this); + public submitCcl_args deepCopy() { + return new submitCcl_args(this); } @Override public void clear() { - this.records = null; + this.ccl = null; this.creds = null; this.transaction = null; this.environment = null; } - public int getRecordsSize() { - return (this.records == null) ? 0 : this.records.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getRecordsIterator() { - return (this.records == null) ? null : this.records.iterator(); - } - - public void addToRecords(long elem) { - if (this.records == null) { - this.records = new java.util.ArrayList(); - } - this.records.add(elem); - } - @org.apache.thrift.annotation.Nullable - public java.util.List getRecords() { - return this.records; + public java.lang.String getCcl() { + return this.ccl; } - public consolidateRecords_args setRecords(@org.apache.thrift.annotation.Nullable java.util.List records) { - this.records = records; + public submitCcl_args setCcl(@org.apache.thrift.annotation.Nullable java.lang.String ccl) { + this.ccl = ccl; return this; } - public void unsetRecords() { - this.records = null; + public void unsetCcl() { + this.ccl = null; } - /** Returns true if field records is set (has been assigned a value) and false otherwise */ - public boolean isSetRecords() { - return this.records != null; + /** Returns true if field ccl is set (has been assigned a value) and false otherwise */ + public boolean isSetCcl() { + return this.ccl != null; } - public void setRecordsIsSet(boolean value) { + public void setCclIsSet(boolean value) { if (!value) { - this.records = null; + this.ccl = null; } } @@ -702156,7 +709482,7 @@ public com.cinchapi.concourse.thrift.AccessToken getCreds() { return this.creds; } - public consolidateRecords_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { + public submitCcl_args setCreds(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.AccessToken creds) { this.creds = creds; return this; } @@ -702181,7 +709507,7 @@ public com.cinchapi.concourse.thrift.TransactionToken getTransaction() { return this.transaction; } - public consolidateRecords_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { + public submitCcl_args setTransaction(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionToken transaction) { this.transaction = transaction; return this; } @@ -702206,7 +709532,7 @@ public java.lang.String getEnvironment() { return this.environment; } - public consolidateRecords_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { + public submitCcl_args setEnvironment(@org.apache.thrift.annotation.Nullable java.lang.String environment) { this.environment = environment; return this; } @@ -702229,11 +709555,11 @@ public void setEnvironmentIsSet(boolean value) { @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case RECORDS: + case CCL: if (value == null) { - unsetRecords(); + unsetCcl(); } else { - setRecords((java.util.List)value); + setCcl((java.lang.String)value); } break; @@ -702268,8 +709594,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case RECORDS: - return getRecords(); + case CCL: + return getCcl(); case CREDS: return getCreds(); @@ -702292,8 +709618,8 @@ public boolean isSet(_Fields field) { } switch (field) { - case RECORDS: - return isSetRecords(); + case CCL: + return isSetCcl(); case CREDS: return isSetCreds(); case TRANSACTION: @@ -702306,23 +709632,23 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof consolidateRecords_args) - return this.equals((consolidateRecords_args)that); + if (that instanceof submitCcl_args) + return this.equals((submitCcl_args)that); return false; } - public boolean equals(consolidateRecords_args that) { + public boolean equals(submitCcl_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_records = true && this.isSetRecords(); - boolean that_present_records = true && that.isSetRecords(); - if (this_present_records || that_present_records) { - if (!(this_present_records && that_present_records)) + boolean this_present_ccl = true && this.isSetCcl(); + boolean that_present_ccl = true && that.isSetCcl(); + if (this_present_ccl || that_present_ccl) { + if (!(this_present_ccl && that_present_ccl)) return false; - if (!this.records.equals(that.records)) + if (!this.ccl.equals(that.ccl)) return false; } @@ -702360,9 +709686,9 @@ public boolean equals(consolidateRecords_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); - if (isSetRecords()) - hashCode = hashCode * 8191 + records.hashCode(); + hashCode = hashCode * 8191 + ((isSetCcl()) ? 131071 : 524287); + if (isSetCcl()) + hashCode = hashCode * 8191 + ccl.hashCode(); hashCode = hashCode * 8191 + ((isSetCreds()) ? 131071 : 524287); if (isSetCreds()) @@ -702380,19 +709706,19 @@ public int hashCode() { } @Override - public int compareTo(consolidateRecords_args other) { + public int compareTo(submitCcl_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetRecords(), other.isSetRecords()); + lastComparison = java.lang.Boolean.compare(isSetCcl(), other.isSetCcl()); if (lastComparison != 0) { return lastComparison; } - if (isSetRecords()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.records, other.records); + if (isSetCcl()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ccl, other.ccl); if (lastComparison != 0) { return lastComparison; } @@ -702448,14 +709774,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("consolidateRecords_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("submitCcl_args("); boolean first = true; - sb.append("records:"); - if (this.records == null) { + sb.append("ccl:"); + if (this.ccl == null) { sb.append("null"); } else { - sb.append(this.records); + sb.append(this.ccl); } first = false; if (!first) sb.append(", "); @@ -702513,17 +709839,17 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class consolidateRecords_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class submitCcl_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public consolidateRecords_argsStandardScheme getScheme() { - return new consolidateRecords_argsStandardScheme(); + public submitCcl_argsStandardScheme getScheme() { + return new submitCcl_argsStandardScheme(); } } - private static class consolidateRecords_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class submitCcl_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, submitCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -702533,20 +709859,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_ break; } switch (schemeField.id) { - case 1: // RECORDS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list7202 = iprot.readListBegin(); - struct.records = new java.util.ArrayList(_list7202.size); - long _elem7203; - for (int _i7204 = 0; _i7204 < _list7202.size; ++_i7204) - { - _elem7203 = iprot.readI64(); - struct.records.add(_elem7203); - } - iprot.readListEnd(); - } - struct.setRecordsIsSet(true); + case 1: // CCL + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -702589,20 +709905,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, consolidateRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, submitCcl_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.records != null) { - oprot.writeFieldBegin(RECORDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.records.size())); - for (long _iter7205 : struct.records) - { - oprot.writeI64(_iter7205); - } - oprot.writeListEnd(); - } + if (struct.ccl != null) { + oprot.writeFieldBegin(CCL_FIELD_DESC); + oprot.writeString(struct.ccl); oprot.writeFieldEnd(); } if (struct.creds != null) { @@ -702626,20 +709935,20 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, consolidateRecords } - private static class consolidateRecords_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class submitCcl_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public consolidateRecords_argsTupleScheme getScheme() { - return new consolidateRecords_argsTupleScheme(); + public submitCcl_argsTupleScheme getScheme() { + return new submitCcl_argsTupleScheme(); } } - private static class consolidateRecords_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class submitCcl_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, submitCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetRecords()) { + if (struct.isSetCcl()) { optionals.set(0); } if (struct.isSetCreds()) { @@ -702652,14 +709961,8 @@ public void write(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_ optionals.set(3); } oprot.writeBitSet(optionals, 4); - if (struct.isSetRecords()) { - { - oprot.writeI32(struct.records.size()); - for (long _iter7206 : struct.records) - { - oprot.writeI64(_iter7206); - } - } + if (struct.isSetCcl()) { + oprot.writeString(struct.ccl); } if (struct.isSetCreds()) { struct.creds.write(oprot); @@ -702673,21 +709976,12 @@ public void write(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_ } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, submitCcl_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list7207 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); - struct.records = new java.util.ArrayList(_list7207.size); - long _elem7208; - for (int _i7209 = 0; _i7209 < _list7207.size; ++_i7209) - { - _elem7208 = iprot.readI64(); - struct.records.add(_elem7208); - } - } - struct.setRecordsIsSet(true); + struct.ccl = iprot.readString(); + struct.setCclIsSet(true); } if (incoming.get(1)) { struct.creds = new com.cinchapi.concourse.thrift.AccessToken(); @@ -702711,28 +710005,34 @@ private static S scheme(org.apache. } } - public static class consolidateRecords_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("consolidateRecords_result"); + public static class submitCcl_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("submitCcl_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 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 EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField EX2_FIELD_DESC = new org.apache.thrift.protocol.TField("ex2", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField EX3_FIELD_DESC = new org.apache.thrift.protocol.TField("ex3", org.apache.thrift.protocol.TType.STRUCT, (short)3); + private static final org.apache.thrift.protocol.TField EX4_FIELD_DESC = new org.apache.thrift.protocol.TField("ex4", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField EX5_FIELD_DESC = new org.apache.thrift.protocol.TField("ex5", org.apache.thrift.protocol.TType.STRUCT, (short)5); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new consolidateRecords_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new consolidateRecords_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new submitCcl_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new submitCcl_resultTupleSchemeFactory(); - public boolean success; // required + public @org.apache.thrift.annotation.Nullable java.util.List success; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex; // required public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2; // required - public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4; // required + public @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex5; // 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"), EX((short)1, "ex"), EX2((short)2, "ex2"), - EX3((short)3, "ex3"); + EX3((short)3, "ex3"), + EX4((short)4, "ex4"), + EX5((short)5, "ex5"); private static final java.util.Map byName = new java.util.LinkedHashMap(); @@ -702756,6 +710056,10 @@ public static _Fields findByThriftId(int fieldId) { return EX2; case 3: // EX3 return EX3; + case 4: // EX4 + return EX4; + case 5: // EX5 + return EX5; default: return null; } @@ -702799,46 +710103,57 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); 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))); + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ComplexTObject.class)))); tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.SecurityException.class))); tmpMap.put(_Fields.EX2, new org.apache.thrift.meta_data.FieldMetaData("ex2", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.TransactionException.class))); tmpMap.put(_Fields.EX3, new org.apache.thrift.meta_data.FieldMetaData("ex3", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.InvalidArgumentException.class))); + tmpMap.put(_Fields.EX4, new org.apache.thrift.meta_data.FieldMetaData("ex4", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.PermissionException.class))); + tmpMap.put(_Fields.EX5, new org.apache.thrift.meta_data.FieldMetaData("ex5", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, com.cinchapi.concourse.thrift.ParseException.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(consolidateRecords_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(submitCcl_result.class, metaDataMap); } - public consolidateRecords_result() { + public submitCcl_result() { } - public consolidateRecords_result( - boolean success, + public submitCcl_result( + java.util.List success, com.cinchapi.concourse.thrift.SecurityException ex, com.cinchapi.concourse.thrift.TransactionException ex2, - com.cinchapi.concourse.thrift.PermissionException ex3) + com.cinchapi.concourse.thrift.InvalidArgumentException ex3, + com.cinchapi.concourse.thrift.PermissionException ex4, + com.cinchapi.concourse.thrift.ParseException ex5) { this(); this.success = success; - setSuccessIsSet(true); this.ex = ex; this.ex2 = ex2; this.ex3 = ex3; + this.ex4 = ex4; + this.ex5 = ex5; } /** * Performs a deep copy on other. */ - public consolidateRecords_result(consolidateRecords_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public submitCcl_result(submitCcl_result other) { + if (other.isSetSuccess()) { + java.util.List __this__success = new java.util.ArrayList(other.success.size()); + for (com.cinchapi.concourse.thrift.ComplexTObject other_element : other.success) { + __this__success.add(new com.cinchapi.concourse.thrift.ComplexTObject(other_element)); + } + this.success = __this__success; + } if (other.isSetEx()) { this.ex = new com.cinchapi.concourse.thrift.SecurityException(other.ex); } @@ -702846,45 +710161,70 @@ public consolidateRecords_result(consolidateRecords_result other) { this.ex2 = new com.cinchapi.concourse.thrift.TransactionException(other.ex2); } if (other.isSetEx3()) { - this.ex3 = new com.cinchapi.concourse.thrift.PermissionException(other.ex3); + this.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(other.ex3); + } + if (other.isSetEx4()) { + this.ex4 = new com.cinchapi.concourse.thrift.PermissionException(other.ex4); + } + if (other.isSetEx5()) { + this.ex5 = new com.cinchapi.concourse.thrift.ParseException(other.ex5); } } @Override - public consolidateRecords_result deepCopy() { - return new consolidateRecords_result(this); + public submitCcl_result deepCopy() { + return new submitCcl_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; + this.success = null; this.ex = null; this.ex2 = null; this.ex3 = null; + this.ex4 = null; + this.ex5 = null; } - public boolean isSuccess() { + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(com.cinchapi.concourse.thrift.ComplexTObject elem) { + if (this.success == null) { + this.success = new java.util.ArrayList(); + } + this.success.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getSuccess() { return this.success; } - public consolidateRecords_result setSuccess(boolean success) { + public submitCcl_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.List success) { this.success = success; - setSuccessIsSet(true); return this; } public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + this.success = null; } /** Returns true if field success is set (has been assigned a value) and false otherwise */ public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + return this.success != null; } public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + if (!value) { + this.success = null; + } } @org.apache.thrift.annotation.Nullable @@ -702892,7 +710232,7 @@ public com.cinchapi.concourse.thrift.SecurityException getEx() { return this.ex; } - public consolidateRecords_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { + public submitCcl_result setEx(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.SecurityException ex) { this.ex = ex; return this; } @@ -702917,7 +710257,7 @@ public com.cinchapi.concourse.thrift.TransactionException getEx2() { return this.ex2; } - public consolidateRecords_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { + public submitCcl_result setEx2(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.TransactionException ex2) { this.ex2 = ex2; return this; } @@ -702938,11 +710278,11 @@ public void setEx2IsSet(boolean value) { } @org.apache.thrift.annotation.Nullable - public com.cinchapi.concourse.thrift.PermissionException getEx3() { + public com.cinchapi.concourse.thrift.InvalidArgumentException getEx3() { return this.ex3; } - public consolidateRecords_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex3) { + public submitCcl_result setEx3(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.InvalidArgumentException ex3) { this.ex3 = ex3; return this; } @@ -702962,6 +710302,56 @@ public void setEx3IsSet(boolean value) { } } + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.PermissionException getEx4() { + return this.ex4; + } + + public submitCcl_result setEx4(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.PermissionException ex4) { + this.ex4 = ex4; + return this; + } + + public void unsetEx4() { + this.ex4 = null; + } + + /** Returns true if field ex4 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx4() { + return this.ex4 != null; + } + + public void setEx4IsSet(boolean value) { + if (!value) { + this.ex4 = null; + } + } + + @org.apache.thrift.annotation.Nullable + public com.cinchapi.concourse.thrift.ParseException getEx5() { + return this.ex5; + } + + public submitCcl_result setEx5(@org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ParseException ex5) { + this.ex5 = ex5; + return this; + } + + public void unsetEx5() { + this.ex5 = null; + } + + /** Returns true if field ex5 is set (has been assigned a value) and false otherwise */ + public boolean isSetEx5() { + return this.ex5 != null; + } + + public void setEx5IsSet(boolean value) { + if (!value) { + this.ex5 = null; + } + } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { @@ -702969,7 +710359,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.lang.Boolean)value); + setSuccess((java.util.List)value); } break; @@ -702993,7 +710383,23 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetEx3(); } else { - setEx3((com.cinchapi.concourse.thrift.PermissionException)value); + setEx3((com.cinchapi.concourse.thrift.InvalidArgumentException)value); + } + break; + + case EX4: + if (value == null) { + unsetEx4(); + } else { + setEx4((com.cinchapi.concourse.thrift.PermissionException)value); + } + break; + + case EX5: + if (value == null) { + unsetEx5(); + } else { + setEx5((com.cinchapi.concourse.thrift.ParseException)value); } break; @@ -703005,7 +710411,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: - return isSuccess(); + return getSuccess(); case EX: return getEx(); @@ -703016,6 +710422,12 @@ public java.lang.Object getFieldValue(_Fields field) { case EX3: return getEx3(); + case EX4: + return getEx4(); + + case EX5: + return getEx5(); + } throw new java.lang.IllegalStateException(); } @@ -703036,29 +710448,33 @@ public boolean isSet(_Fields field) { return isSetEx2(); case EX3: return isSetEx3(); + case EX4: + return isSetEx4(); + case EX5: + return isSetEx5(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof consolidateRecords_result) - return this.equals((consolidateRecords_result)that); + if (that instanceof submitCcl_result) + return this.equals((submitCcl_result)that); return false; } - public boolean equals(consolidateRecords_result that) { + public boolean equals(submitCcl_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; + 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 != that.success) + if (!this.success.equals(that.success)) return false; } @@ -703089,6 +710505,24 @@ public boolean equals(consolidateRecords_result that) { return false; } + boolean this_present_ex4 = true && this.isSetEx4(); + boolean that_present_ex4 = true && that.isSetEx4(); + if (this_present_ex4 || that_present_ex4) { + if (!(this_present_ex4 && that_present_ex4)) + return false; + if (!this.ex4.equals(that.ex4)) + return false; + } + + boolean this_present_ex5 = true && this.isSetEx5(); + boolean that_present_ex5 = true && that.isSetEx5(); + if (this_present_ex5 || that_present_ex5) { + if (!(this_present_ex5 && that_present_ex5)) + return false; + if (!this.ex5.equals(that.ex5)) + return false; + } + return true; } @@ -703096,7 +710530,9 @@ public boolean equals(consolidateRecords_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); hashCode = hashCode * 8191 + ((isSetEx()) ? 131071 : 524287); if (isSetEx()) @@ -703110,11 +710546,19 @@ public int hashCode() { if (isSetEx3()) hashCode = hashCode * 8191 + ex3.hashCode(); + hashCode = hashCode * 8191 + ((isSetEx4()) ? 131071 : 524287); + if (isSetEx4()) + hashCode = hashCode * 8191 + ex4.hashCode(); + + hashCode = hashCode * 8191 + ((isSetEx5()) ? 131071 : 524287); + if (isSetEx5()) + hashCode = hashCode * 8191 + ex5.hashCode(); + return hashCode; } @Override - public int compareTo(consolidateRecords_result other) { + public int compareTo(submitCcl_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -703161,6 +710605,26 @@ public int compareTo(consolidateRecords_result other) { return lastComparison; } } + lastComparison = java.lang.Boolean.compare(isSetEx4(), other.isSetEx4()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx4()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex4, other.ex4); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEx5(), other.isSetEx5()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetEx5()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex5, other.ex5); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -703181,11 +710645,15 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("consolidateRecords_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("submitCcl_result("); boolean first = true; sb.append("success:"); - sb.append(this.success); + if (this.success == null) { + sb.append("null"); + } else { + sb.append(this.success); + } first = false; if (!first) sb.append(", "); sb.append("ex:"); @@ -703211,6 +710679,22 @@ public java.lang.String toString() { sb.append(this.ex3); } first = false; + if (!first) sb.append(", "); + sb.append("ex4:"); + if (this.ex4 == null) { + sb.append("null"); + } else { + sb.append(this.ex4); + } + first = false; + if (!first) sb.append(", "); + sb.append("ex5:"); + if (this.ex5 == null) { + sb.append("null"); + } else { + sb.append(this.ex5); + } + first = false; sb.append(")"); return sb.toString(); } @@ -703230,25 +710714,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.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 consolidateRecords_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class submitCcl_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public consolidateRecords_resultStandardScheme getScheme() { - return new consolidateRecords_resultStandardScheme(); + public submitCcl_resultStandardScheme getScheme() { + return new submitCcl_resultStandardScheme(); } } - private static class consolidateRecords_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class submitCcl_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { @Override - public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, submitCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -703259,8 +710741,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_ } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list7234 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list7234.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem7235; + for (int _i7236 = 0; _i7236 < _list7234.size; ++_i7236) + { + _elem7235 = new com.cinchapi.concourse.thrift.ComplexTObject(); + _elem7235.read(iprot); + struct.success.add(_elem7235); + } + iprot.readListEnd(); + } struct.setSuccessIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); @@ -703286,13 +710779,31 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_ break; case 3: // EX3 if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // EX4 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // EX5 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ex5 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -703305,13 +710816,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, consolidateRecords_ } @Override - public void write(org.apache.thrift.protocol.TProtocol oprot, consolidateRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, submitCcl_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { + if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); + for (com.cinchapi.concourse.thrift.ComplexTObject _iter7237 : struct.success) + { + _iter7237.write(oprot); + } + oprot.writeListEnd(); + } oprot.writeFieldEnd(); } if (struct.ex != null) { @@ -703329,23 +710847,33 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, consolidateRecords struct.ex3.write(oprot); oprot.writeFieldEnd(); } + if (struct.ex4 != null) { + oprot.writeFieldBegin(EX4_FIELD_DESC); + struct.ex4.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ex5 != null) { + oprot.writeFieldBegin(EX5_FIELD_DESC); + struct.ex5.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class consolidateRecords_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + private static class submitCcl_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { @Override - public consolidateRecords_resultTupleScheme getScheme() { - return new consolidateRecords_resultTupleScheme(); + public submitCcl_resultTupleScheme getScheme() { + return new submitCcl_resultTupleScheme(); } } - private static class consolidateRecords_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class submitCcl_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, submitCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -703360,9 +710888,21 @@ public void write(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_ if (struct.isSetEx3()) { optionals.set(3); } - oprot.writeBitSet(optionals, 4); + if (struct.isSetEx4()) { + optionals.set(4); + } + if (struct.isSetEx5()) { + optionals.set(5); + } + oprot.writeBitSet(optionals, 6); if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + { + oprot.writeI32(struct.success.size()); + for (com.cinchapi.concourse.thrift.ComplexTObject _iter7238 : struct.success) + { + _iter7238.write(oprot); + } + } } if (struct.isSetEx()) { struct.ex.write(oprot); @@ -703373,14 +710913,30 @@ public void write(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_ if (struct.isSetEx3()) { struct.ex3.write(oprot); } + if (struct.isSetEx4()) { + struct.ex4.write(oprot); + } + if (struct.isSetEx5()) { + struct.ex5.write(oprot); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, submitCcl_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(4); + java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { - struct.success = iprot.readBool(); + { + org.apache.thrift.protocol.TList _list7239 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list7239.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem7240; + for (int _i7241 = 0; _i7241 < _list7239.size; ++_i7241) + { + _elem7240 = new com.cinchapi.concourse.thrift.ComplexTObject(); + _elem7240.read(iprot); + struct.success.add(_elem7240); + } + } struct.setSuccessIsSet(true); } if (incoming.get(1)) { @@ -703394,10 +710950,20 @@ public void read(org.apache.thrift.protocol.TProtocol prot, consolidateRecords_r struct.setEx2IsSet(true); } if (incoming.get(3)) { - struct.ex3 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex3 = new com.cinchapi.concourse.thrift.InvalidArgumentException(); struct.ex3.read(iprot); struct.setEx3IsSet(true); } + if (incoming.get(4)) { + struct.ex4 = new com.cinchapi.concourse.thrift.PermissionException(); + struct.ex4.read(iprot); + struct.setEx4IsSet(true); + } + if (incoming.get(5)) { + struct.ex5 = new com.cinchapi.concourse.thrift.ParseException(); + struct.ex5.read(iprot); + struct.setEx5IsSet(true); + } } } @@ -703910,14 +711476,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, invokeManagement_ar case 3: // PARAMS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list7210 = iprot.readListBegin(); - struct.params = new java.util.ArrayList(_list7210.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem7211; - for (int _i7212 = 0; _i7212 < _list7210.size; ++_i7212) + org.apache.thrift.protocol.TList _list7242 = iprot.readListBegin(); + struct.params = new java.util.ArrayList(_list7242.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem7243; + for (int _i7244 = 0; _i7244 < _list7242.size; ++_i7244) { - _elem7211 = new com.cinchapi.concourse.thrift.ComplexTObject(); - _elem7211.read(iprot); - struct.params.add(_elem7211); + _elem7243 = new com.cinchapi.concourse.thrift.ComplexTObject(); + _elem7243.read(iprot); + struct.params.add(_elem7243); } iprot.readListEnd(); } @@ -703960,9 +711526,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, invokeManagement_a oprot.writeFieldBegin(PARAMS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.params.size())); - for (com.cinchapi.concourse.thrift.ComplexTObject _iter7213 : struct.params) + for (com.cinchapi.concourse.thrift.ComplexTObject _iter7245 : struct.params) { - _iter7213.write(oprot); + _iter7245.write(oprot); } oprot.writeListEnd(); } @@ -704008,9 +711574,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, invokeManagement_ar if (struct.isSetParams()) { { oprot.writeI32(struct.params.size()); - for (com.cinchapi.concourse.thrift.ComplexTObject _iter7214 : struct.params) + for (com.cinchapi.concourse.thrift.ComplexTObject _iter7246 : struct.params) { - _iter7214.write(oprot); + _iter7246.write(oprot); } } } @@ -704029,14 +711595,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, invokeManagement_arg } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list7215 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.params = new java.util.ArrayList(_list7215.size); - @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem7216; - for (int _i7217 = 0; _i7217 < _list7215.size; ++_i7217) + org.apache.thrift.protocol.TList _list7247 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.params = new java.util.ArrayList(_list7247.size); + @org.apache.thrift.annotation.Nullable com.cinchapi.concourse.thrift.ComplexTObject _elem7248; + for (int _i7249 = 0; _i7249 < _list7247.size; ++_i7249) { - _elem7216 = new com.cinchapi.concourse.thrift.ComplexTObject(); - _elem7216.read(iprot); - struct.params.add(_elem7216); + _elem7248 = new com.cinchapi.concourse.thrift.ComplexTObject(); + _elem7248.read(iprot); + struct.params.add(_elem7248); } } struct.setParamsIsSet(true); diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/JavaThriftBridge.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/JavaThriftBridge.java index bee924186..9d817990e 100644 --- a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/JavaThriftBridge.java +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/JavaThriftBridge.java @@ -20,6 +20,8 @@ import com.cinchapi.ccl.util.NaturalLanguage; import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.command.Command; +import com.cinchapi.concourse.lang.command.CommandSerializer; import com.cinchapi.concourse.lang.paginate.Page; import com.cinchapi.concourse.lang.sort.Direction; import com.cinchapi.concourse.lang.sort.Order; @@ -150,6 +152,18 @@ public static Page convert(TPage tpage) { return Page.of(tpage.getSkip(), tpage.getLimit()); } + /** + * Convert a {@link List} of {@link Command Commands} to a {@link List} of + * {@link TCommand TCommands}. + * + * @param commands the {@link Command Commands} to convert + * @return the equivalent {@link TCommand TCommands} + */ + public static List convert(List commands) { + return commands.stream().map(CommandSerializer::toThrift) + .collect(Collectors.toList()); + } + private JavaThriftBridge() {/* no-init */} } diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/TCommand.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/TCommand.java new file mode 100644 index 000000000..65558dd29 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/TCommand.java @@ -0,0 +1,2494 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.thrift; + +/** + * A structured representation of a complete Concourse command that can be + * transmitted over the wire. Each command is identified by a required verb; the + * optional fields carry the parameters appropriate for that verb. + * + * Reuses existing types (TCriteria, TOrder, TPage, TObject) for condition, + * ordering, pagination, and values. + */ +@SuppressWarnings({ "cast", "rawtypes", "serial", "unchecked", "unused" }) +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-14") +public class TCommand implements + org.apache.thrift.TBase, + java.io.Serializable, + Cloneable, + Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct( + "TCommand"); + + private static final org.apache.thrift.protocol.TField VERB_FIELD_DESC = new org.apache.thrift.protocol.TField( + "verb", org.apache.thrift.protocol.TType.I32, (short) 1); + private static final org.apache.thrift.protocol.TField KEYS_FIELD_DESC = new org.apache.thrift.protocol.TField( + "keys", org.apache.thrift.protocol.TType.LIST, (short) 2); + private static final org.apache.thrift.protocol.TField RECORDS_FIELD_DESC = new org.apache.thrift.protocol.TField( + "records", org.apache.thrift.protocol.TType.LIST, (short) 3); + private static final org.apache.thrift.protocol.TField CRITERIA_FIELD_DESC = new org.apache.thrift.protocol.TField( + "criteria", org.apache.thrift.protocol.TType.STRUCT, (short) 4); + private static final org.apache.thrift.protocol.TField CONDITION_FIELD_DESC = new org.apache.thrift.protocol.TField( + "condition", org.apache.thrift.protocol.TType.STRING, (short) 5); + private static final org.apache.thrift.protocol.TField TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField( + "timestamp", org.apache.thrift.protocol.TType.I64, (short) 6); + private static final org.apache.thrift.protocol.TField END_TIMESTAMP_FIELD_DESC = new org.apache.thrift.protocol.TField( + "endTimestamp", org.apache.thrift.protocol.TType.I64, (short) 7); + private static final org.apache.thrift.protocol.TField ORDER_FIELD_DESC = new org.apache.thrift.protocol.TField( + "order", org.apache.thrift.protocol.TType.STRUCT, (short) 8); + private static final org.apache.thrift.protocol.TField PAGE_FIELD_DESC = new org.apache.thrift.protocol.TField( + "page", org.apache.thrift.protocol.TType.STRUCT, (short) 9); + private static final org.apache.thrift.protocol.TField VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField( + "value", org.apache.thrift.protocol.TType.STRUCT, (short) 10); + private static final org.apache.thrift.protocol.TField REPLACEMENT_FIELD_DESC = new org.apache.thrift.protocol.TField( + "replacement", org.apache.thrift.protocol.TType.STRUCT, (short) 11); + private static final org.apache.thrift.protocol.TField VALUES_FIELD_DESC = new org.apache.thrift.protocol.TField( + "values", org.apache.thrift.protocol.TType.LIST, (short) 12); + private static final org.apache.thrift.protocol.TField JSON_FIELD_DESC = new org.apache.thrift.protocol.TField( + "json", org.apache.thrift.protocol.TType.STRING, (short) 13); + private static final org.apache.thrift.protocol.TField QUERY_FIELD_DESC = new org.apache.thrift.protocol.TField( + "query", org.apache.thrift.protocol.TType.STRING, (short) 14); + private static final org.apache.thrift.protocol.TField FUNCTION_FIELD_DESC = new org.apache.thrift.protocol.TField( + "function", org.apache.thrift.protocol.TType.STRING, (short) 15); + private static final org.apache.thrift.protocol.TField SOURCE_RECORD_FIELD_DESC = new org.apache.thrift.protocol.TField( + "sourceRecord", org.apache.thrift.protocol.TType.I64, (short) 16); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new TCommandStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new TCommandTupleSchemeFactory(); + + /** + * + * @see TCommandVerb + */ + public @org.apache.thrift.annotation.Nullable TCommandVerb verb; // required + public @org.apache.thrift.annotation.Nullable java.util.List keys; // optional + public @org.apache.thrift.annotation.Nullable java.util.List records; // optional + public @org.apache.thrift.annotation.Nullable TCriteria criteria; // optional + public @org.apache.thrift.annotation.Nullable java.lang.String condition; // optional + public long timestamp; // optional + public long endTimestamp; // optional + public @org.apache.thrift.annotation.Nullable TOrder order; // optional + public @org.apache.thrift.annotation.Nullable TPage page; // optional + public @org.apache.thrift.annotation.Nullable TObject value; // optional + public @org.apache.thrift.annotation.Nullable TObject replacement; // optional + public @org.apache.thrift.annotation.Nullable java.util.List values; // optional + public @org.apache.thrift.annotation.Nullable java.lang.String json; // optional + public @org.apache.thrift.annotation.Nullable java.lang.String query; // optional + public @org.apache.thrift.annotation.Nullable java.lang.String function; // optional + public long sourceRecord; // optional + + /** + * The set of fields this struct contains, along with convenience methods + * for finding and manipulating them. + */ + public enum _Fields implements org.apache.thrift.TFieldIdEnum { + /** + * + * @see TCommandVerb + */ + VERB((short) 1, "verb"), + KEYS((short) 2, "keys"), + RECORDS((short) 3, "records"), + CRITERIA((short) 4, "criteria"), + CONDITION((short) 5, "condition"), + TIMESTAMP((short) 6, "timestamp"), + END_TIMESTAMP((short) 7, "endTimestamp"), + ORDER((short) 8, "order"), + PAGE((short) 9, "page"), + VALUE((short) 10, "value"), + REPLACEMENT((short) 11, "replacement"), + VALUES((short) 12, "values"), + JSON((short) 13, "json"), + QUERY((short) 14, "query"), + FUNCTION((short) 15, "function"), + SOURCE_RECORD((short) 16, "sourceRecord"); + + private static final java.util.Map byName = new java.util.HashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not + * found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch (fieldId) { + case 1: // VERB + return VERB; + case 2: // KEYS + return KEYS; + case 3: // RECORDS + return RECORDS; + case 4: // CRITERIA + return CRITERIA; + case 5: // CONDITION + return CONDITION; + case 6: // TIMESTAMP + return TIMESTAMP; + case 7: // END_TIMESTAMP + return END_TIMESTAMP; + case 8: // ORDER + return ORDER; + case 9: // PAGE + return PAGE; + case 10: // VALUE + return VALUE; + case 11: // REPLACEMENT + return REPLACEMENT; + case 12: // VALUES + return VALUES; + case 13: // JSON + return JSON; + case 14: // QUERY + return QUERY; + case 15: // FUNCTION + return FUNCTION; + case 16: // SOURCE_RECORD + return SOURCE_RECORD; + 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 java.lang.IllegalArgumentException( + "Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not + * found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + @Override + public short getThriftFieldId() { + return _thriftId; + } + + @Override + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + private static final int __TIMESTAMP_ISSET_ID = 0; + private static final int __ENDTIMESTAMP_ISSET_ID = 1; + private static final int __SOURCERECORD_ISSET_ID = 2; + private byte __isset_bitfield = 0; + private static final _Fields optionals[] = { _Fields.KEYS, _Fields.RECORDS, + _Fields.CRITERIA, _Fields.CONDITION, _Fields.TIMESTAMP, + _Fields.END_TIMESTAMP, _Fields.ORDER, _Fields.PAGE, _Fields.VALUE, + _Fields.REPLACEMENT, _Fields.VALUES, _Fields.JSON, _Fields.QUERY, + _Fields.FUNCTION, _Fields.SOURCE_RECORD }; + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>( + _Fields.class); + tmpMap.put(_Fields.VERB, + new org.apache.thrift.meta_data.FieldMetaData("verb", + org.apache.thrift.TFieldRequirementType.REQUIRED, + new org.apache.thrift.meta_data.EnumMetaData( + org.apache.thrift.protocol.TType.ENUM, + TCommandVerb.class))); + tmpMap.put(_Fields.KEYS, new org.apache.thrift.meta_data.FieldMetaData( + "keys", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.ListMetaData( + org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.RECORDS, + new org.apache.thrift.meta_data.FieldMetaData("records", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.ListMetaData( + org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.CRITERIA, + new org.apache.thrift.meta_data.FieldMetaData("criteria", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.StructMetaData( + org.apache.thrift.protocol.TType.STRUCT, + TCriteria.class))); + tmpMap.put(_Fields.CONDITION, + new org.apache.thrift.meta_data.FieldMetaData("condition", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TIMESTAMP, + new org.apache.thrift.meta_data.FieldMetaData("timestamp", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.END_TIMESTAMP, + new org.apache.thrift.meta_data.FieldMetaData("endTimestamp", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.ORDER, + new org.apache.thrift.meta_data.FieldMetaData("order", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.StructMetaData( + org.apache.thrift.protocol.TType.STRUCT, + TOrder.class))); + tmpMap.put(_Fields.PAGE, + new org.apache.thrift.meta_data.FieldMetaData("page", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.StructMetaData( + org.apache.thrift.protocol.TType.STRUCT, + TPage.class))); + tmpMap.put(_Fields.VALUE, + new org.apache.thrift.meta_data.FieldMetaData("value", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.StructMetaData( + org.apache.thrift.protocol.TType.STRUCT, + TObject.class))); + tmpMap.put(_Fields.REPLACEMENT, + new org.apache.thrift.meta_data.FieldMetaData("replacement", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.StructMetaData( + org.apache.thrift.protocol.TType.STRUCT, + TObject.class))); + tmpMap.put(_Fields.VALUES, + new org.apache.thrift.meta_data.FieldMetaData("values", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.ListMetaData( + org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.StructMetaData( + org.apache.thrift.protocol.TType.STRUCT, + TObject.class)))); + tmpMap.put(_Fields.JSON, + new org.apache.thrift.meta_data.FieldMetaData("json", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.QUERY, + new org.apache.thrift.meta_data.FieldMetaData("query", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.FUNCTION, + new org.apache.thrift.meta_data.FieldMetaData("function", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.SOURCE_RECORD, + new org.apache.thrift.meta_data.FieldMetaData("sourceRecord", + org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData( + org.apache.thrift.protocol.TType.I64))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData + .addStructMetaDataMap(TCommand.class, metaDataMap); + } + + public TCommand() {} + + public TCommand(TCommandVerb verb) { + this(); + this.verb = verb; + } + + /** + * Performs a deep copy on other. + */ + public TCommand(TCommand other) { + __isset_bitfield = other.__isset_bitfield; + if(other.isSetVerb()) { + this.verb = other.verb; + } + if(other.isSetKeys()) { + java.util.List __this__keys = new java.util.ArrayList( + other.keys); + this.keys = __this__keys; + } + if(other.isSetRecords()) { + java.util.List __this__records = new java.util.ArrayList( + other.records); + this.records = __this__records; + } + if(other.isSetCriteria()) { + this.criteria = new TCriteria(other.criteria); + } + if(other.isSetCondition()) { + this.condition = other.condition; + } + this.timestamp = other.timestamp; + this.endTimestamp = other.endTimestamp; + if(other.isSetOrder()) { + this.order = new TOrder(other.order); + } + if(other.isSetPage()) { + this.page = new TPage(other.page); + } + if(other.isSetValue()) { + this.value = new TObject(other.value); + } + if(other.isSetReplacement()) { + this.replacement = new TObject(other.replacement); + } + if(other.isSetValues()) { + java.util.List __this__values = new java.util.ArrayList( + other.values.size()); + for (TObject other_element : other.values) { + __this__values.add(new TObject(other_element)); + } + this.values = __this__values; + } + if(other.isSetJson()) { + this.json = other.json; + } + if(other.isSetQuery()) { + this.query = other.query; + } + if(other.isSetFunction()) { + this.function = other.function; + } + this.sourceRecord = other.sourceRecord; + } + + @Override + public TCommand deepCopy() { + return new TCommand(this); + } + + @Override + public void clear() { + this.verb = null; + this.keys = null; + this.records = null; + this.criteria = null; + this.condition = null; + setTimestampIsSet(false); + this.timestamp = 0; + setEndTimestampIsSet(false); + this.endTimestamp = 0; + this.order = null; + this.page = null; + this.value = null; + this.replacement = null; + this.values = null; + this.json = null; + this.query = null; + this.function = null; + setSourceRecordIsSet(false); + this.sourceRecord = 0; + } + + /** + * + * @see TCommandVerb + */ + @org.apache.thrift.annotation.Nullable + public TCommandVerb getVerb() { + return this.verb; + } + + /** + * + * @see TCommandVerb + */ + public TCommand setVerb( + @org.apache.thrift.annotation.Nullable TCommandVerb verb) { + this.verb = verb; + return this; + } + + public void unsetVerb() { + this.verb = null; + } + + /** + * Returns true if field verb is set (has been assigned a value) and false + * otherwise + */ + public boolean isSetVerb() { + return this.verb != null; + } + + public void setVerbIsSet(boolean value) { + if(!value) { + this.verb = null; + } + } + + public int getKeysSize() { + return (this.keys == null) ? 0 : this.keys.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getKeysIterator() { + return (this.keys == null) ? null : this.keys.iterator(); + } + + public void addToKeys(java.lang.String elem) { + if(this.keys == null) { + this.keys = new java.util.ArrayList(); + } + this.keys.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getKeys() { + return this.keys; + } + + public TCommand setKeys( + @org.apache.thrift.annotation.Nullable java.util.List keys) { + this.keys = keys; + return this; + } + + public void unsetKeys() { + this.keys = null; + } + + /** + * Returns true if field keys is set (has been assigned a value) and false + * otherwise + */ + public boolean isSetKeys() { + return this.keys != null; + } + + public void setKeysIsSet(boolean value) { + if(!value) { + this.keys = null; + } + } + + public int getRecordsSize() { + return (this.records == null) ? 0 : this.records.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getRecordsIterator() { + return (this.records == null) ? null : this.records.iterator(); + } + + public void addToRecords(long elem) { + if(this.records == null) { + this.records = new java.util.ArrayList(); + } + this.records.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getRecords() { + return this.records; + } + + public TCommand setRecords( + @org.apache.thrift.annotation.Nullable java.util.List records) { + this.records = records; + return this; + } + + public void unsetRecords() { + this.records = null; + } + + /** + * Returns true if field records is set (has been assigned a value) and + * false otherwise + */ + public boolean isSetRecords() { + return this.records != null; + } + + public void setRecordsIsSet(boolean value) { + if(!value) { + this.records = null; + } + } + + @org.apache.thrift.annotation.Nullable + public TCriteria getCriteria() { + return this.criteria; + } + + public TCommand setCriteria( + @org.apache.thrift.annotation.Nullable TCriteria criteria) { + this.criteria = criteria; + return this; + } + + public void unsetCriteria() { + this.criteria = null; + } + + /** + * Returns true if field criteria is set (has been assigned a value) and + * false otherwise + */ + public boolean isSetCriteria() { + return this.criteria != null; + } + + public void setCriteriaIsSet(boolean value) { + if(!value) { + this.criteria = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getCondition() { + return this.condition; + } + + public TCommand setCondition( + @org.apache.thrift.annotation.Nullable java.lang.String condition) { + this.condition = condition; + return this; + } + + public void unsetCondition() { + this.condition = null; + } + + /** + * Returns true if field condition is set (has been assigned a value) and + * false otherwise + */ + public boolean isSetCondition() { + return this.condition != null; + } + + public void setConditionIsSet(boolean value) { + if(!value) { + this.condition = null; + } + } + + public long getTimestamp() { + return this.timestamp; + } + + public TCommand setTimestamp(long timestamp) { + this.timestamp = timestamp; + setTimestampIsSet(true); + return this; + } + + public void unsetTimestamp() { + __isset_bitfield = org.apache.thrift.EncodingUtils + .clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); + } + + /** + * Returns true if field timestamp is set (has been assigned a value) and + * false otherwise + */ + public boolean isSetTimestamp() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, + __TIMESTAMP_ISSET_ID); + } + + public void setTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils + .setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); + } + + public long getEndTimestamp() { + return this.endTimestamp; + } + + public TCommand setEndTimestamp(long endTimestamp) { + this.endTimestamp = endTimestamp; + setEndTimestampIsSet(true); + return this; + } + + public void unsetEndTimestamp() { + __isset_bitfield = org.apache.thrift.EncodingUtils + .clearBit(__isset_bitfield, __ENDTIMESTAMP_ISSET_ID); + } + + /** + * Returns true if field endTimestamp is set (has been assigned a value) and + * false otherwise + */ + public boolean isSetEndTimestamp() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, + __ENDTIMESTAMP_ISSET_ID); + } + + public void setEndTimestampIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils + .setBit(__isset_bitfield, __ENDTIMESTAMP_ISSET_ID, value); + } + + @org.apache.thrift.annotation.Nullable + public TOrder getOrder() { + return this.order; + } + + public TCommand setOrder( + @org.apache.thrift.annotation.Nullable TOrder order) { + this.order = order; + return this; + } + + public void unsetOrder() { + this.order = null; + } + + /** + * Returns true if field order is set (has been assigned a value) and false + * otherwise + */ + public boolean isSetOrder() { + return this.order != null; + } + + public void setOrderIsSet(boolean value) { + if(!value) { + this.order = null; + } + } + + @org.apache.thrift.annotation.Nullable + public TPage getPage() { + return this.page; + } + + public TCommand setPage(@org.apache.thrift.annotation.Nullable TPage page) { + this.page = page; + return this; + } + + public void unsetPage() { + this.page = null; + } + + /** + * Returns true if field page is set (has been assigned a value) and false + * otherwise + */ + public boolean isSetPage() { + return this.page != null; + } + + public void setPageIsSet(boolean value) { + if(!value) { + this.page = null; + } + } + + @org.apache.thrift.annotation.Nullable + public TObject getValue() { + return this.value; + } + + public TCommand setValue( + @org.apache.thrift.annotation.Nullable TObject value) { + this.value = value; + return this; + } + + public void unsetValue() { + this.value = null; + } + + /** + * Returns true if field value is set (has been assigned a value) and false + * otherwise + */ + public boolean isSetValue() { + return this.value != null; + } + + public void setValueIsSet(boolean value) { + if(!value) { + this.value = null; + } + } + + @org.apache.thrift.annotation.Nullable + public TObject getReplacement() { + return this.replacement; + } + + public TCommand setReplacement( + @org.apache.thrift.annotation.Nullable TObject replacement) { + this.replacement = replacement; + return this; + } + + public void unsetReplacement() { + this.replacement = null; + } + + /** + * Returns true if field replacement is set (has been assigned a value) and + * false otherwise + */ + public boolean isSetReplacement() { + return this.replacement != null; + } + + public void setReplacementIsSet(boolean value) { + if(!value) { + this.replacement = null; + } + } + + public int getValuesSize() { + return (this.values == null) ? 0 : this.values.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getValuesIterator() { + return (this.values == null) ? null : this.values.iterator(); + } + + public void addToValues(TObject elem) { + if(this.values == null) { + this.values = new java.util.ArrayList(); + } + this.values.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getValues() { + return this.values; + } + + public TCommand setValues( + @org.apache.thrift.annotation.Nullable java.util.List values) { + this.values = values; + return this; + } + + public void unsetValues() { + this.values = null; + } + + /** + * Returns true if field values is set (has been assigned a value) and false + * otherwise + */ + public boolean isSetValues() { + return this.values != null; + } + + public void setValuesIsSet(boolean value) { + if(!value) { + this.values = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getJson() { + return this.json; + } + + public TCommand setJson( + @org.apache.thrift.annotation.Nullable java.lang.String json) { + this.json = json; + return this; + } + + public void unsetJson() { + this.json = null; + } + + /** + * Returns true if field json is set (has been assigned a value) and false + * otherwise + */ + public boolean isSetJson() { + return this.json != null; + } + + public void setJsonIsSet(boolean value) { + if(!value) { + this.json = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getQuery() { + return this.query; + } + + public TCommand setQuery( + @org.apache.thrift.annotation.Nullable java.lang.String query) { + this.query = query; + return this; + } + + public void unsetQuery() { + this.query = null; + } + + /** + * Returns true if field query is set (has been assigned a value) and false + * otherwise + */ + public boolean isSetQuery() { + return this.query != null; + } + + public void setQueryIsSet(boolean value) { + if(!value) { + this.query = null; + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.String getFunction() { + return this.function; + } + + public TCommand setFunction( + @org.apache.thrift.annotation.Nullable java.lang.String function) { + this.function = function; + return this; + } + + public void unsetFunction() { + this.function = null; + } + + /** + * Returns true if field function is set (has been assigned a value) and + * false otherwise + */ + public boolean isSetFunction() { + return this.function != null; + } + + public void setFunctionIsSet(boolean value) { + if(!value) { + this.function = null; + } + } + + public long getSourceRecord() { + return this.sourceRecord; + } + + public TCommand setSourceRecord(long sourceRecord) { + this.sourceRecord = sourceRecord; + setSourceRecordIsSet(true); + return this; + } + + public void unsetSourceRecord() { + __isset_bitfield = org.apache.thrift.EncodingUtils + .clearBit(__isset_bitfield, __SOURCERECORD_ISSET_ID); + } + + /** + * Returns true if field sourceRecord is set (has been assigned a value) and + * false otherwise + */ + public boolean isSetSourceRecord() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, + __SOURCERECORD_ISSET_ID); + } + + public void setSourceRecordIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils + .setBit(__isset_bitfield, __SOURCERECORD_ISSET_ID, value); + } + + @Override + public void setFieldValue(_Fields field, + @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case VERB: + if(value == null) { + unsetVerb(); + } + else { + setVerb((TCommandVerb) value); + } + break; + + case KEYS: + if(value == null) { + unsetKeys(); + } + else { + setKeys((java.util.List) value); + } + break; + + case RECORDS: + if(value == null) { + unsetRecords(); + } + else { + setRecords((java.util.List) value); + } + break; + + case CRITERIA: + if(value == null) { + unsetCriteria(); + } + else { + setCriteria((TCriteria) value); + } + break; + + case CONDITION: + if(value == null) { + unsetCondition(); + } + else { + setCondition((java.lang.String) value); + } + break; + + case TIMESTAMP: + if(value == null) { + unsetTimestamp(); + } + else { + setTimestamp((java.lang.Long) value); + } + break; + + case END_TIMESTAMP: + if(value == null) { + unsetEndTimestamp(); + } + else { + setEndTimestamp((java.lang.Long) value); + } + break; + + case ORDER: + if(value == null) { + unsetOrder(); + } + else { + setOrder((TOrder) value); + } + break; + + case PAGE: + if(value == null) { + unsetPage(); + } + else { + setPage((TPage) value); + } + break; + + case VALUE: + if(value == null) { + unsetValue(); + } + else { + setValue((TObject) value); + } + break; + + case REPLACEMENT: + if(value == null) { + unsetReplacement(); + } + else { + setReplacement((TObject) value); + } + break; + + case VALUES: + if(value == null) { + unsetValues(); + } + else { + setValues((java.util.List) value); + } + break; + + case JSON: + if(value == null) { + unsetJson(); + } + else { + setJson((java.lang.String) value); + } + break; + + case QUERY: + if(value == null) { + unsetQuery(); + } + else { + setQuery((java.lang.String) value); + } + break; + + case FUNCTION: + if(value == null) { + unsetFunction(); + } + else { + setFunction((java.lang.String) value); + } + break; + + case SOURCE_RECORD: + if(value == null) { + unsetSourceRecord(); + } + else { + setSourceRecord((java.lang.Long) value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + @Override + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case VERB: + return getVerb(); + + case KEYS: + return getKeys(); + + case RECORDS: + return getRecords(); + + case CRITERIA: + return getCriteria(); + + case CONDITION: + return getCondition(); + + case TIMESTAMP: + return getTimestamp(); + + case END_TIMESTAMP: + return getEndTimestamp(); + + case ORDER: + return getOrder(); + + case PAGE: + return getPage(); + + case VALUE: + return getValue(); + + case REPLACEMENT: + return getReplacement(); + + case VALUES: + return getValues(); + + case JSON: + return getJson(); + + case QUERY: + return getQuery(); + + case FUNCTION: + return getFunction(); + + case SOURCE_RECORD: + return getSourceRecord(); + + } + throw new java.lang.IllegalStateException(); + } + + /** + * Returns true if field corresponding to fieldID is set (has been assigned + * a value) and false otherwise + */ + @Override + public boolean isSet(_Fields field) { + if(field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case VERB: + return isSetVerb(); + case KEYS: + return isSetKeys(); + case RECORDS: + return isSetRecords(); + case CRITERIA: + return isSetCriteria(); + case CONDITION: + return isSetCondition(); + case TIMESTAMP: + return isSetTimestamp(); + case END_TIMESTAMP: + return isSetEndTimestamp(); + case ORDER: + return isSetOrder(); + case PAGE: + return isSetPage(); + case VALUE: + return isSetValue(); + case REPLACEMENT: + return isSetReplacement(); + case VALUES: + return isSetValues(); + case JSON: + return isSetJson(); + case QUERY: + return isSetQuery(); + case FUNCTION: + return isSetFunction(); + case SOURCE_RECORD: + return isSetSourceRecord(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if(that instanceof TCommand) + return this.equals((TCommand) that); + return false; + } + + public boolean equals(TCommand that) { + if(that == null) + return false; + if(this == that) + return true; + + boolean this_present_verb = true && this.isSetVerb(); + boolean that_present_verb = true && that.isSetVerb(); + if(this_present_verb || that_present_verb) { + if(!(this_present_verb && that_present_verb)) + return false; + if(!this.verb.equals(that.verb)) + return false; + } + + boolean this_present_keys = true && this.isSetKeys(); + boolean that_present_keys = true && that.isSetKeys(); + if(this_present_keys || that_present_keys) { + if(!(this_present_keys && that_present_keys)) + return false; + if(!this.keys.equals(that.keys)) + return false; + } + + boolean this_present_records = true && this.isSetRecords(); + boolean that_present_records = true && that.isSetRecords(); + if(this_present_records || that_present_records) { + if(!(this_present_records && that_present_records)) + return false; + if(!this.records.equals(that.records)) + return false; + } + + boolean this_present_criteria = true && this.isSetCriteria(); + boolean that_present_criteria = true && that.isSetCriteria(); + if(this_present_criteria || that_present_criteria) { + if(!(this_present_criteria && that_present_criteria)) + return false; + if(!this.criteria.equals(that.criteria)) + return false; + } + + boolean this_present_condition = true && this.isSetCondition(); + boolean that_present_condition = true && that.isSetCondition(); + if(this_present_condition || that_present_condition) { + if(!(this_present_condition && that_present_condition)) + return false; + if(!this.condition.equals(that.condition)) + return false; + } + + boolean this_present_timestamp = true && this.isSetTimestamp(); + boolean that_present_timestamp = true && that.isSetTimestamp(); + if(this_present_timestamp || that_present_timestamp) { + if(!(this_present_timestamp && that_present_timestamp)) + return false; + if(this.timestamp != that.timestamp) + return false; + } + + boolean this_present_endTimestamp = true && this.isSetEndTimestamp(); + boolean that_present_endTimestamp = true && that.isSetEndTimestamp(); + if(this_present_endTimestamp || that_present_endTimestamp) { + if(!(this_present_endTimestamp && that_present_endTimestamp)) + return false; + if(this.endTimestamp != that.endTimestamp) + return false; + } + + boolean this_present_order = true && this.isSetOrder(); + boolean that_present_order = true && that.isSetOrder(); + if(this_present_order || that_present_order) { + if(!(this_present_order && that_present_order)) + return false; + if(!this.order.equals(that.order)) + return false; + } + + boolean this_present_page = true && this.isSetPage(); + boolean that_present_page = true && that.isSetPage(); + if(this_present_page || that_present_page) { + if(!(this_present_page && that_present_page)) + return false; + if(!this.page.equals(that.page)) + return false; + } + + boolean this_present_value = true && this.isSetValue(); + boolean that_present_value = true && that.isSetValue(); + if(this_present_value || that_present_value) { + if(!(this_present_value && that_present_value)) + return false; + if(!this.value.equals(that.value)) + return false; + } + + boolean this_present_replacement = true && this.isSetReplacement(); + boolean that_present_replacement = true && that.isSetReplacement(); + if(this_present_replacement || that_present_replacement) { + if(!(this_present_replacement && that_present_replacement)) + return false; + if(!this.replacement.equals(that.replacement)) + return false; + } + + boolean this_present_values = true && this.isSetValues(); + boolean that_present_values = true && that.isSetValues(); + if(this_present_values || that_present_values) { + if(!(this_present_values && that_present_values)) + return false; + if(!this.values.equals(that.values)) + return false; + } + + boolean this_present_json = true && this.isSetJson(); + boolean that_present_json = true && that.isSetJson(); + if(this_present_json || that_present_json) { + if(!(this_present_json && that_present_json)) + return false; + if(!this.json.equals(that.json)) + return false; + } + + boolean this_present_query = true && this.isSetQuery(); + boolean that_present_query = true && that.isSetQuery(); + if(this_present_query || that_present_query) { + if(!(this_present_query && that_present_query)) + return false; + if(!this.query.equals(that.query)) + return false; + } + + boolean this_present_function = true && this.isSetFunction(); + boolean that_present_function = true && that.isSetFunction(); + if(this_present_function || that_present_function) { + if(!(this_present_function && that_present_function)) + return false; + if(!this.function.equals(that.function)) + return false; + } + + boolean this_present_sourceRecord = true && this.isSetSourceRecord(); + boolean that_present_sourceRecord = true && that.isSetSourceRecord(); + if(this_present_sourceRecord || that_present_sourceRecord) { + if(!(this_present_sourceRecord && that_present_sourceRecord)) + return false; + if(this.sourceRecord != that.sourceRecord) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetVerb()) ? 131071 : 524287); + if(isSetVerb()) + hashCode = hashCode * 8191 + verb.getValue(); + + hashCode = hashCode * 8191 + ((isSetKeys()) ? 131071 : 524287); + if(isSetKeys()) + hashCode = hashCode * 8191 + keys.hashCode(); + + hashCode = hashCode * 8191 + ((isSetRecords()) ? 131071 : 524287); + if(isSetRecords()) + hashCode = hashCode * 8191 + records.hashCode(); + + hashCode = hashCode * 8191 + ((isSetCriteria()) ? 131071 : 524287); + if(isSetCriteria()) + hashCode = hashCode * 8191 + criteria.hashCode(); + + hashCode = hashCode * 8191 + ((isSetCondition()) ? 131071 : 524287); + if(isSetCondition()) + hashCode = hashCode * 8191 + condition.hashCode(); + + hashCode = hashCode * 8191 + ((isSetTimestamp()) ? 131071 : 524287); + if(isSetTimestamp()) + hashCode = hashCode * 8191 + + org.apache.thrift.TBaseHelper.hashCode(timestamp); + + hashCode = hashCode * 8191 + ((isSetEndTimestamp()) ? 131071 : 524287); + if(isSetEndTimestamp()) + hashCode = hashCode * 8191 + + org.apache.thrift.TBaseHelper.hashCode(endTimestamp); + + hashCode = hashCode * 8191 + ((isSetOrder()) ? 131071 : 524287); + if(isSetOrder()) + hashCode = hashCode * 8191 + order.hashCode(); + + hashCode = hashCode * 8191 + ((isSetPage()) ? 131071 : 524287); + if(isSetPage()) + hashCode = hashCode * 8191 + page.hashCode(); + + hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287); + if(isSetValue()) + hashCode = hashCode * 8191 + value.hashCode(); + + hashCode = hashCode * 8191 + ((isSetReplacement()) ? 131071 : 524287); + if(isSetReplacement()) + hashCode = hashCode * 8191 + replacement.hashCode(); + + hashCode = hashCode * 8191 + ((isSetValues()) ? 131071 : 524287); + if(isSetValues()) + hashCode = hashCode * 8191 + values.hashCode(); + + hashCode = hashCode * 8191 + ((isSetJson()) ? 131071 : 524287); + if(isSetJson()) + hashCode = hashCode * 8191 + json.hashCode(); + + hashCode = hashCode * 8191 + ((isSetQuery()) ? 131071 : 524287); + if(isSetQuery()) + hashCode = hashCode * 8191 + query.hashCode(); + + hashCode = hashCode * 8191 + ((isSetFunction()) ? 131071 : 524287); + if(isSetFunction()) + hashCode = hashCode * 8191 + function.hashCode(); + + hashCode = hashCode * 8191 + ((isSetSourceRecord()) ? 131071 : 524287); + if(isSetSourceRecord()) + hashCode = hashCode * 8191 + + org.apache.thrift.TBaseHelper.hashCode(sourceRecord); + + return hashCode; + } + + @Override + public int compareTo(TCommand other) { + if(!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetVerb(), + other.isSetVerb()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetVerb()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.verb, + other.verb); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetKeys(), + other.isSetKeys()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetKeys()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.keys, + other.keys); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetRecords(), + other.isSetRecords()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetRecords()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.records, other.records); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetCriteria(), + other.isSetCriteria()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetCriteria()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.criteria, other.criteria); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetCondition(), + other.isSetCondition()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetCondition()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.condition, other.condition); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetTimestamp(), + other.isSetTimestamp()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.timestamp, other.timestamp); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetEndTimestamp(), + other.isSetEndTimestamp()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetEndTimestamp()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.endTimestamp, other.endTimestamp); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetOrder(), + other.isSetOrder()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetOrder()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.order, + other.order); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetPage(), + other.isSetPage()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetPage()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.page, + other.page); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetValue(), + other.isSetValue()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetValue()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.value, + other.value); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetReplacement(), + other.isSetReplacement()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetReplacement()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.replacement, other.replacement); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetValues(), + other.isSetValues()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetValues()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.values, other.values); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetJson(), + other.isSetJson()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetJson()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.json, + other.json); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetQuery(), + other.isSetQuery()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetQuery()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.query, + other.query); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetFunction(), + other.isSetFunction()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetFunction()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.function, other.function); + if(lastComparison != 0) { + return lastComparison; + } + } + lastComparison = java.lang.Boolean.compare(isSetSourceRecord(), + other.isSetSourceRecord()); + if(lastComparison != 0) { + return lastComparison; + } + if(isSetSourceRecord()) { + lastComparison = org.apache.thrift.TBaseHelper + .compareTo(this.sourceRecord, other.sourceRecord); + if(lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + @Override + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot) + throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot) + throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("TCommand("); + boolean first = true; + + sb.append("verb:"); + if(this.verb == null) { + sb.append("null"); + } + else { + sb.append(this.verb); + } + first = false; + if(isSetKeys()) { + if(!first) + sb.append(", "); + sb.append("keys:"); + if(this.keys == null) { + sb.append("null"); + } + else { + sb.append(this.keys); + } + first = false; + } + if(isSetRecords()) { + if(!first) + sb.append(", "); + sb.append("records:"); + if(this.records == null) { + sb.append("null"); + } + else { + sb.append(this.records); + } + first = false; + } + if(isSetCriteria()) { + if(!first) + sb.append(", "); + sb.append("criteria:"); + if(this.criteria == null) { + sb.append("null"); + } + else { + sb.append(this.criteria); + } + first = false; + } + if(isSetCondition()) { + if(!first) + sb.append(", "); + sb.append("condition:"); + if(this.condition == null) { + sb.append("null"); + } + else { + sb.append(this.condition); + } + first = false; + } + if(isSetTimestamp()) { + if(!first) + sb.append(", "); + sb.append("timestamp:"); + sb.append(this.timestamp); + first = false; + } + if(isSetEndTimestamp()) { + if(!first) + sb.append(", "); + sb.append("endTimestamp:"); + sb.append(this.endTimestamp); + first = false; + } + if(isSetOrder()) { + if(!first) + sb.append(", "); + sb.append("order:"); + if(this.order == null) { + sb.append("null"); + } + else { + sb.append(this.order); + } + first = false; + } + if(isSetPage()) { + if(!first) + sb.append(", "); + sb.append("page:"); + if(this.page == null) { + sb.append("null"); + } + else { + sb.append(this.page); + } + first = false; + } + if(isSetValue()) { + if(!first) + sb.append(", "); + sb.append("value:"); + if(this.value == null) { + sb.append("null"); + } + else { + sb.append(this.value); + } + first = false; + } + if(isSetReplacement()) { + if(!first) + sb.append(", "); + sb.append("replacement:"); + if(this.replacement == null) { + sb.append("null"); + } + else { + sb.append(this.replacement); + } + first = false; + } + if(isSetValues()) { + if(!first) + sb.append(", "); + sb.append("values:"); + if(this.values == null) { + sb.append("null"); + } + else { + sb.append(this.values); + } + first = false; + } + if(isSetJson()) { + if(!first) + sb.append(", "); + sb.append("json:"); + if(this.json == null) { + sb.append("null"); + } + else { + sb.append(this.json); + } + first = false; + } + if(isSetQuery()) { + if(!first) + sb.append(", "); + sb.append("query:"); + if(this.query == null) { + sb.append("null"); + } + else { + sb.append(this.query); + } + first = false; + } + if(isSetFunction()) { + if(!first) + sb.append(", "); + sb.append("function:"); + if(this.function == null) { + sb.append("null"); + } + else { + sb.append(this.function); + } + first = false; + } + if(isSetSourceRecord()) { + if(!first) + sb.append(", "); + sb.append("sourceRecord:"); + sb.append(this.sourceRecord); + first = false; + } + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + if(verb == null) { + throw new org.apache.thrift.protocol.TProtocolException( + "Required field 'verb' was not present! Struct: " + + toString()); + } + // check for sub-struct validity + if(criteria != null) { + criteria.validate(); + } + if(order != null) { + order.validate(); + } + if(page != null) { + page.validate(); + } + if(value != null) { + value.validate(); + } + if(replacement != null) { + replacement.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, java.lang.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 TCommandStandardSchemeFactory implements + org.apache.thrift.scheme.SchemeFactory { + @Override + public TCommandStandardScheme getScheme() { + return new TCommandStandardScheme(); + } + } + + private static class TCommandStandardScheme + extends org.apache.thrift.scheme.StandardScheme { + + @Override + public void read(org.apache.thrift.protocol.TProtocol iprot, + TCommand 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: // VERB + if(schemeField.type == org.apache.thrift.protocol.TType.I32) { + struct.verb = com.cinchapi.concourse.thrift.TCommandVerb + .findByValue(iprot.readI32()); + struct.setVerbIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 2: // KEYS + if(schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list16 = iprot + .readListBegin(); + struct.keys = new java.util.ArrayList( + _list16.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem17; + for (int _i18 = 0; _i18 < _list16.size; ++_i18) { + _elem17 = iprot.readString(); + struct.keys.add(_elem17); + } + iprot.readListEnd(); + } + struct.setKeysIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 3: // RECORDS + if(schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list19 = iprot + .readListBegin(); + struct.records = new java.util.ArrayList( + _list19.size); + long _elem20; + for (int _i21 = 0; _i21 < _list19.size; ++_i21) { + _elem20 = iprot.readI64(); + struct.records.add(_elem20); + } + iprot.readListEnd(); + } + struct.setRecordsIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 4: // CRITERIA + if(schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.criteria = new TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 5: // CONDITION + if(schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.condition = iprot.readString(); + struct.setConditionIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 6: // TIMESTAMP + if(schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.timestamp = iprot.readI64(); + struct.setTimestampIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 7: // END_TIMESTAMP + if(schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.endTimestamp = iprot.readI64(); + struct.setEndTimestampIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 8: // ORDER + if(schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.order = new TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 9: // PAGE + if(schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.page = new TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 10: // VALUE + if(schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.value = new TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 11: // REPLACEMENT + if(schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.replacement = new TObject(); + struct.replacement.read(iprot); + struct.setReplacementIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 12: // VALUES + if(schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list22 = iprot + .readListBegin(); + struct.values = new java.util.ArrayList( + _list22.size); + @org.apache.thrift.annotation.Nullable TObject _elem23; + for (int _i24 = 0; _i24 < _list22.size; ++_i24) { + _elem23 = new TObject(); + _elem23.read(iprot); + struct.values.add(_elem23); + } + iprot.readListEnd(); + } + struct.setValuesIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 13: // JSON + if(schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.json = iprot.readString(); + struct.setJsonIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 14: // QUERY + if(schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.query = iprot.readString(); + struct.setQueryIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 15: // FUNCTION + if(schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.function = iprot.readString(); + struct.setFunctionIsSet(true); + } + else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, + schemeField.type); + } + break; + case 16: // SOURCE_RECORD + if(schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.sourceRecord = iprot.readI64(); + struct.setSourceRecordIsSet(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(); + } + + @Override + public void write(org.apache.thrift.protocol.TProtocol oprot, + TCommand struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if(struct.verb != null) { + oprot.writeFieldBegin(VERB_FIELD_DESC); + oprot.writeI32(struct.verb.getValue()); + oprot.writeFieldEnd(); + } + if(struct.keys != null) { + if(struct.isSetKeys()) { + oprot.writeFieldBegin(KEYS_FIELD_DESC); + { + oprot.writeListBegin( + new org.apache.thrift.protocol.TList( + org.apache.thrift.protocol.TType.STRING, + struct.keys.size())); + for (java.lang.String _iter25 : struct.keys) { + oprot.writeString(_iter25); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + } + if(struct.records != null) { + if(struct.isSetRecords()) { + oprot.writeFieldBegin(RECORDS_FIELD_DESC); + { + oprot.writeListBegin( + new org.apache.thrift.protocol.TList( + org.apache.thrift.protocol.TType.I64, + struct.records.size())); + for (long _iter26 : struct.records) { + oprot.writeI64(_iter26); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + } + if(struct.criteria != null) { + if(struct.isSetCriteria()) { + oprot.writeFieldBegin(CRITERIA_FIELD_DESC); + struct.criteria.write(oprot); + oprot.writeFieldEnd(); + } + } + if(struct.condition != null) { + if(struct.isSetCondition()) { + oprot.writeFieldBegin(CONDITION_FIELD_DESC); + oprot.writeString(struct.condition); + oprot.writeFieldEnd(); + } + } + if(struct.isSetTimestamp()) { + oprot.writeFieldBegin(TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.timestamp); + oprot.writeFieldEnd(); + } + if(struct.isSetEndTimestamp()) { + oprot.writeFieldBegin(END_TIMESTAMP_FIELD_DESC); + oprot.writeI64(struct.endTimestamp); + oprot.writeFieldEnd(); + } + if(struct.order != null) { + if(struct.isSetOrder()) { + oprot.writeFieldBegin(ORDER_FIELD_DESC); + struct.order.write(oprot); + oprot.writeFieldEnd(); + } + } + if(struct.page != null) { + if(struct.isSetPage()) { + oprot.writeFieldBegin(PAGE_FIELD_DESC); + struct.page.write(oprot); + oprot.writeFieldEnd(); + } + } + if(struct.value != null) { + if(struct.isSetValue()) { + oprot.writeFieldBegin(VALUE_FIELD_DESC); + struct.value.write(oprot); + oprot.writeFieldEnd(); + } + } + if(struct.replacement != null) { + if(struct.isSetReplacement()) { + oprot.writeFieldBegin(REPLACEMENT_FIELD_DESC); + struct.replacement.write(oprot); + oprot.writeFieldEnd(); + } + } + if(struct.values != null) { + if(struct.isSetValues()) { + oprot.writeFieldBegin(VALUES_FIELD_DESC); + { + oprot.writeListBegin( + new org.apache.thrift.protocol.TList( + org.apache.thrift.protocol.TType.STRUCT, + struct.values.size())); + for (TObject _iter27 : struct.values) { + _iter27.write(oprot); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + } + if(struct.json != null) { + if(struct.isSetJson()) { + oprot.writeFieldBegin(JSON_FIELD_DESC); + oprot.writeString(struct.json); + oprot.writeFieldEnd(); + } + } + if(struct.query != null) { + if(struct.isSetQuery()) { + oprot.writeFieldBegin(QUERY_FIELD_DESC); + oprot.writeString(struct.query); + oprot.writeFieldEnd(); + } + } + if(struct.function != null) { + if(struct.isSetFunction()) { + oprot.writeFieldBegin(FUNCTION_FIELD_DESC); + oprot.writeString(struct.function); + oprot.writeFieldEnd(); + } + } + if(struct.isSetSourceRecord()) { + oprot.writeFieldBegin(SOURCE_RECORD_FIELD_DESC); + oprot.writeI64(struct.sourceRecord); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class TCommandTupleSchemeFactory implements + org.apache.thrift.scheme.SchemeFactory { + @Override + public TCommandTupleScheme getScheme() { + return new TCommandTupleScheme(); + } + } + + private static class TCommandTupleScheme + extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, + TCommand struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + oprot.writeI32(struct.verb.getValue()); + java.util.BitSet optionals = new java.util.BitSet(); + if(struct.isSetKeys()) { + optionals.set(0); + } + if(struct.isSetRecords()) { + optionals.set(1); + } + if(struct.isSetCriteria()) { + optionals.set(2); + } + if(struct.isSetCondition()) { + optionals.set(3); + } + if(struct.isSetTimestamp()) { + optionals.set(4); + } + if(struct.isSetEndTimestamp()) { + optionals.set(5); + } + if(struct.isSetOrder()) { + optionals.set(6); + } + if(struct.isSetPage()) { + optionals.set(7); + } + if(struct.isSetValue()) { + optionals.set(8); + } + if(struct.isSetReplacement()) { + optionals.set(9); + } + if(struct.isSetValues()) { + optionals.set(10); + } + if(struct.isSetJson()) { + optionals.set(11); + } + if(struct.isSetQuery()) { + optionals.set(12); + } + if(struct.isSetFunction()) { + optionals.set(13); + } + if(struct.isSetSourceRecord()) { + optionals.set(14); + } + oprot.writeBitSet(optionals, 15); + if(struct.isSetKeys()) { + { + oprot.writeI32(struct.keys.size()); + for (java.lang.String _iter28 : struct.keys) { + oprot.writeString(_iter28); + } + } + } + if(struct.isSetRecords()) { + { + oprot.writeI32(struct.records.size()); + for (long _iter29 : struct.records) { + oprot.writeI64(_iter29); + } + } + } + if(struct.isSetCriteria()) { + struct.criteria.write(oprot); + } + if(struct.isSetCondition()) { + oprot.writeString(struct.condition); + } + if(struct.isSetTimestamp()) { + oprot.writeI64(struct.timestamp); + } + if(struct.isSetEndTimestamp()) { + oprot.writeI64(struct.endTimestamp); + } + if(struct.isSetOrder()) { + struct.order.write(oprot); + } + if(struct.isSetPage()) { + struct.page.write(oprot); + } + if(struct.isSetValue()) { + struct.value.write(oprot); + } + if(struct.isSetReplacement()) { + struct.replacement.write(oprot); + } + if(struct.isSetValues()) { + { + oprot.writeI32(struct.values.size()); + for (TObject _iter30 : struct.values) { + _iter30.write(oprot); + } + } + } + if(struct.isSetJson()) { + oprot.writeString(struct.json); + } + if(struct.isSetQuery()) { + oprot.writeString(struct.query); + } + if(struct.isSetFunction()) { + oprot.writeString(struct.function); + } + if(struct.isSetSourceRecord()) { + oprot.writeI64(struct.sourceRecord); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, + TCommand struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + struct.verb = com.cinchapi.concourse.thrift.TCommandVerb + .findByValue(iprot.readI32()); + struct.setVerbIsSet(true); + java.util.BitSet incoming = iprot.readBitSet(15); + if(incoming.get(0)) { + { + org.apache.thrift.protocol.TList _list31 = iprot + .readListBegin( + org.apache.thrift.protocol.TType.STRING); + struct.keys = new java.util.ArrayList( + _list31.size); + @org.apache.thrift.annotation.Nullable java.lang.String _elem32; + for (int _i33 = 0; _i33 < _list31.size; ++_i33) { + _elem32 = iprot.readString(); + struct.keys.add(_elem32); + } + } + struct.setKeysIsSet(true); + } + if(incoming.get(1)) { + { + org.apache.thrift.protocol.TList _list34 = iprot + .readListBegin( + org.apache.thrift.protocol.TType.I64); + struct.records = new java.util.ArrayList( + _list34.size); + long _elem35; + for (int _i36 = 0; _i36 < _list34.size; ++_i36) { + _elem35 = iprot.readI64(); + struct.records.add(_elem35); + } + } + struct.setRecordsIsSet(true); + } + if(incoming.get(2)) { + struct.criteria = new TCriteria(); + struct.criteria.read(iprot); + struct.setCriteriaIsSet(true); + } + if(incoming.get(3)) { + struct.condition = iprot.readString(); + struct.setConditionIsSet(true); + } + if(incoming.get(4)) { + struct.timestamp = iprot.readI64(); + struct.setTimestampIsSet(true); + } + if(incoming.get(5)) { + struct.endTimestamp = iprot.readI64(); + struct.setEndTimestampIsSet(true); + } + if(incoming.get(6)) { + struct.order = new TOrder(); + struct.order.read(iprot); + struct.setOrderIsSet(true); + } + if(incoming.get(7)) { + struct.page = new TPage(); + struct.page.read(iprot); + struct.setPageIsSet(true); + } + if(incoming.get(8)) { + struct.value = new TObject(); + struct.value.read(iprot); + struct.setValueIsSet(true); + } + if(incoming.get(9)) { + struct.replacement = new TObject(); + struct.replacement.read(iprot); + struct.setReplacementIsSet(true); + } + if(incoming.get(10)) { + { + org.apache.thrift.protocol.TList _list37 = iprot + .readListBegin( + org.apache.thrift.protocol.TType.STRUCT); + struct.values = new java.util.ArrayList( + _list37.size); + @org.apache.thrift.annotation.Nullable TObject _elem38; + for (int _i39 = 0; _i39 < _list37.size; ++_i39) { + _elem38 = new TObject(); + _elem38.read(iprot); + struct.values.add(_elem38); + } + } + struct.setValuesIsSet(true); + } + if(incoming.get(11)) { + struct.json = iprot.readString(); + struct.setJsonIsSet(true); + } + if(incoming.get(12)) { + struct.query = iprot.readString(); + struct.setQueryIsSet(true); + } + if(incoming.get(13)) { + struct.function = iprot.readString(); + struct.setFunctionIsSet(true); + } + if(incoming.get(14)) { + struct.sourceRecord = iprot.readI64(); + struct.setSourceRecordIsSet(true); + } + } + } + + private static S scheme( + org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class + .equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY + : TUPLE_SCHEME_FACTORY).getScheme(); + } +} diff --git a/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/TCommandVerb.java b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/TCommandVerb.java new file mode 100644 index 000000000..637532126 --- /dev/null +++ b/concourse-driver-java/src/main/java/com/cinchapi/concourse/thrift/TCommandVerb.java @@ -0,0 +1,152 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.thrift; + +/** + * The verb identifying which operation a TCommand represents. + */ +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-14") +public enum TCommandVerb implements org.apache.thrift.TEnum { + FIND(1), + SELECT(2), + GET(3), + NAVIGATE(4), + ADD(5), + SET(6), + REMOVE(7), + CLEAR(8), + INSERT(9), + LINK(10), + UNLINK(11), + VERIFY(12), + VERIFY_AND_SWAP(13), + VERIFY_OR_SET(14), + FIND_OR_ADD(15), + FIND_OR_INSERT(16), + SEARCH(17), + BROWSE(18), + DESCRIBE(19), + TRACE(20), + HOLDS(21), + JSONIFY(22), + CHRONICLE(23), + DIFF(24), + AUDIT(25), + REVERT(26), + RECONCILE(27), + CONSOLIDATE(28), + CALCULATE(29), + STAGE(30), + COMMIT(31), + ABORT(32), + PING(33), + INVENTORY(34); + + private final int value; + + private TCommandVerb(int value) { + this.value = value; + } + + /** + * Get the integer value of this enum value, as defined in the Thrift IDL. + */ + @Override + public int getValue() { + return value; + } + + /** + * Find a the enum type by its integer value, as defined in the Thrift IDL. + * + * @return null if the value is not found. + */ + @org.apache.thrift.annotation.Nullable + public static TCommandVerb findByValue(int value) { + switch (value) { + case 1: + return FIND; + case 2: + return SELECT; + case 3: + return GET; + case 4: + return NAVIGATE; + case 5: + return ADD; + case 6: + return SET; + case 7: + return REMOVE; + case 8: + return CLEAR; + case 9: + return INSERT; + case 10: + return LINK; + case 11: + return UNLINK; + case 12: + return VERIFY; + case 13: + return VERIFY_AND_SWAP; + case 14: + return VERIFY_OR_SET; + case 15: + return FIND_OR_ADD; + case 16: + return FIND_OR_INSERT; + case 17: + return SEARCH; + case 18: + return BROWSE; + case 19: + return DESCRIBE; + case 20: + return TRACE; + case 21: + return HOLDS; + case 22: + return JSONIFY; + case 23: + return CHRONICLE; + case 24: + return DIFF; + case 25: + return AUDIT; + case 26: + return REVERT; + case 27: + return RECONCILE; + case 28: + return CONSOLIDATE; + case 29: + return CALCULATE; + case 30: + return STAGE; + case 31: + return COMMIT; + case 32: + return ABORT; + case 33: + return PING; + case 34: + return INVENTORY; + default: + return null; + } + } +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CCLCommandGroupTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CCLCommandGroupTest.java new file mode 100644 index 000000000..6e84ff001 --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CCLCommandGroupTest.java @@ -0,0 +1,232 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.List; + +import org.junit.Assert; +import org.junit.Test; + +/** + * Unit tests for {@link CCLCommandGroup}. + * + * @author Jeff Nelson + */ +public class CCLCommandGroupTest { + + /** + * Goal: Verify that calling + * {@code add(key, value, record)} on a {@link CCLCommandGroup} produces a + * {@link Command} with the correct CCL. + *

+ * Start state: A freshly created {@link CCLCommandGroup}. + *

+ * Workflow: + *

    + *
  • Create a {@link CCLCommandGroup}.
  • + *
  • Call {@code add("name", "Alice", 1)}.
  • + *
  • Retrieve the commands list.
  • + *
+ *

+ * Expected: The commands list has exactly one entry whose + * CCL matches {@code "add name as \"Alice\" in 1"}. + */ + @Test + public void testAddKeyValueRecord() { + CCLCommandGroup group = new CCLCommandGroup(); + group.add("name", "Alice", 1); + List commands = group.commands(); + Assert.assertEquals(1, commands.size()); + Assert.assertEquals("add name as \"Alice\" in 1", + commands.get(0).ccl()); + } + + /** + * Goal: Verify that calling {@code add(key, value)} + * without a record produces the correct CCL. + *

+ * Start state: A freshly created {@link CCLCommandGroup}. + *

+ * Workflow: + *

    + *
  • Create a {@link CCLCommandGroup}.
  • + *
  • Call {@code add("name", "Bob")}.
  • + *
  • Retrieve the commands list.
  • + *
+ *

+ * Expected: The commands list has one entry whose CCL is + * {@code "add name as \"Bob\""}. + */ + @Test + public void testAddKeyValue() { + CCLCommandGroup group = new CCLCommandGroup(); + group.add("name", "Bob"); + List commands = group.commands(); + Assert.assertEquals(1, commands.size()); + Assert.assertEquals("add name as \"Bob\"", commands.get(0).ccl()); + } + + /** + * Goal: Verify that multiple operations accumulate in the + * command list in order. + *

+ * Start state: A freshly created {@link CCLCommandGroup}. + *

+ * Workflow: + *

    + *
  • Call {@code add}, {@code remove}, and {@code set} on the group.
  • + *
  • Retrieve the commands list.
  • + *
+ *

+ * Expected: The list has three entries in the order they + * were added. + */ + @Test + public void testMultipleCommandsAccumulate() { + CCLCommandGroup group = new CCLCommandGroup(); + group.add("a", 1, 10); + group.remove("a", 1, 10); + group.set("b", 2, 10); + List commands = group.commands(); + Assert.assertEquals(3, commands.size()); + Assert.assertTrue(commands.get(0).ccl().startsWith("add")); + Assert.assertTrue(commands.get(1).ccl().startsWith("remove")); + Assert.assertTrue(commands.get(2).ccl().startsWith("set")); + } + + /** + * Goal: Verify that the commands list returned by + * {@code commands()} is unmodifiable. + *

+ * Start state: A {@link CCLCommandGroup} with one command. + *

+ * Workflow: + *

    + *
  • Add a command to the group.
  • + *
  • Retrieve the commands list.
  • + *
  • Attempt to modify the returned list.
  • + *
+ *

+ * Expected: The modification attempt throws + * {@link UnsupportedOperationException}. + */ + @Test(expected = UnsupportedOperationException.class) + public void testCommandsListIsUnmodifiable() { + CCLCommandGroup group = new CCLCommandGroup(); + group.add("x", 1, 1); + group.commands().clear(); + } + + /** + * Goal: Verify that {@code ping()} produces a ping + * command. + *

+ * Start state: A freshly created {@link CCLCommandGroup}. + *

+ * Workflow: + *

    + *
  • Call {@code ping()} on the group.
  • + *
  • Check the CCL of the produced command.
  • + *
+ *

+ * Expected: The command's CCL is {@code "ping"}. + */ + @Test + public void testPingCommand() { + CCLCommandGroup group = new CCLCommandGroup(); + group.ping(); + List commands = group.commands(); + Assert.assertEquals(1, commands.size()); + Assert.assertEquals("ping", commands.get(0).ccl()); + } + + /** + * Goal: Verify that {@code stage()} and {@code commit()} + * produce the correct commands. + *

+ * Start state: A freshly created {@link CCLCommandGroup}. + *

+ * Workflow: + *

    + *
  • Call {@code stage()}, then {@code add(...)}, then + * {@code commit()}.
  • + *
  • Check that three commands are produced with the correct CCL.
  • + *
+ *

+ * Expected: The commands are {@code "stage"}, an add + * command, and {@code "commit"}, in that order. + */ + @Test + public void testStageAndCommitCommands() { + CCLCommandGroup group = new CCLCommandGroup(); + group.stage(); + group.add("key", "value", 1); + group.commit(); + List commands = group.commands(); + Assert.assertEquals(3, commands.size()); + Assert.assertEquals("stage", commands.get(0).ccl()); + Assert.assertTrue(commands.get(1).ccl().startsWith("add")); + Assert.assertEquals("commit", commands.get(2).ccl()); + } + + /** + * Goal: Verify that {@code select(long record)} produces + * the correct command. + *

+ * Start state: A freshly created {@link CCLCommandGroup}. + *

+ * Workflow: + *

    + *
  • Call {@code select(42)} on the group.
  • + *
  • Check the CCL of the produced command.
  • + *
+ *

+ * Expected: The command's CCL is {@code "select from 42"}. + */ + @Test + public void testSelectRecord() { + CCLCommandGroup group = new CCLCommandGroup(); + group.select(42); + List commands = group.commands(); + Assert.assertEquals(1, commands.size()); + Assert.assertEquals("select 42", commands.get(0).ccl()); + } + + /** + * Goal: Verify that + * {@code select(String key, long record)} produces the correct command. + *

+ * Start state: A freshly created {@link CCLCommandGroup}. + *

+ * Workflow: + *

    + *
  • Call {@code select("name", 1)} on the group.
  • + *
  • Check the CCL of the produced command.
  • + *
+ *

+ * Expected: The command's CCL is + * {@code "select name from 1"}. + */ + @Test + public void testSelectKeyRecord() { + CCLCommandGroup group = new CCLCommandGroup(); + group.select("name", 1); + List commands = group.commands(); + Assert.assertEquals(1, commands.size()); + Assert.assertEquals("select name from 1", commands.get(0).ccl()); + } + +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CclRendererTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CclRendererTest.java new file mode 100644 index 000000000..aeaac4494 --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CclRendererTest.java @@ -0,0 +1,254 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Arrays; +import java.util.List; + +import org.junit.Assert; +import org.junit.Test; + +/** + * Unit tests for {@link CclRenderer}. + * + * @author Jeff Nelson + */ +public class CclRendererTest { + + /** + * Goal: Verify that a single key is rendered bare, without + * brackets. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a single-element list containing {@code "name"}.
  • + *
  • Call {@link CclRenderer#keys(List)}.
  • + *
+ *

+ * Expected: The result is {@code "name"}. + */ + @Test + public void testSingleKey() { + String result = CclRenderer.keys(Arrays.asList("name")); + Assert.assertEquals("name", result); + } + + /** + * Goal: Verify that multiple keys are rendered as a + * bracketed, comma-separated list. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a list containing {@code "name"} and {@code "age"}.
  • + *
  • Call {@link CclRenderer#keys(List)}.
  • + *
+ *

+ * Expected: The result is {@code "[name, age]"}. + */ + @Test + public void testMultipleKeys() { + String result = CclRenderer.keys(Arrays.asList("name", "age")); + Assert.assertEquals("[name, age]", result); + } + + /** + * Goal: Verify that a single record is rendered bare, + * without brackets. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a single-element list containing {@code 1L}.
  • + *
  • Call {@link CclRenderer#records(List)}.
  • + *
+ *

+ * Expected: The result is {@code "1"}. + */ + @Test + public void testSingleRecord() { + String result = CclRenderer.records(Arrays.asList(1L)); + Assert.assertEquals("1", result); + } + + /** + * Goal: Verify that multiple records are rendered as a + * bracketed, comma-separated list. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a list containing {@code 1L}, {@code 2L}, and {@code 3L}.
  • + *
  • Call {@link CclRenderer#records(List)}.
  • + *
+ *

+ * Expected: The result is {@code "[1, 2, 3]"}. + */ + @Test + public void testMultipleRecords() { + String result = CclRenderer.records(Arrays.asList(1L, 2L, 3L)); + Assert.assertEquals("[1, 2, 3]", result); + } + + /** + * Goal: Verify that a {@link String} value is rendered + * with surrounding double quotes. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Call {@link CclRenderer#value(Object)} with {@code "hello"}.
  • + *
+ *

+ * Expected: The result is {@code "\"hello\""}. + */ + @Test + public void testStringValue() { + String result = CclRenderer.value("hello"); + Assert.assertEquals("\"hello\"", result); + } + + /** + * Goal: Verify that a numeric value is rendered without + * quotes. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Call {@link CclRenderer#value(Object)} with {@code 42}.
  • + *
+ *

+ * Expected: The result is {@code "42"}. + */ + @Test + public void testNumericValue() { + String result = CclRenderer.value(42); + Assert.assertEquals("42", result); + } + + /** + * Goal: Verify that a mixed list of values is rendered as + * a bracketed list with strings quoted and numbers bare. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a list containing {@code "a"} and {@code 1}.
  • + *
  • Call {@link CclRenderer#values(List)}.
  • + *
+ *

+ * Expected: The result is {@code "[\"a\", 1]"}. + */ + @Test + public void testValues() { + String result = CclRenderer.values(Arrays.asList("a", 1)); + Assert.assertEquals("[\"a\", 1]", result); + } + + /** + * Goal: Verify that + * {@link CclRenderer#collectRecords(long, long...)} correctly combines the + * first record with the varargs into a single list. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Call {@code collectRecords(1L, 2L, 3L)}.
  • + *
  • Assert that the result contains all three values in order.
  • + *
+ *

+ * Expected: The list contains {@code 1L}, {@code 2L}, and + * {@code 3L} in order. + */ + @Test + public void testCollectRecords() { + List records = CclRenderer.collectRecords(1L, 2L, 3L); + Assert.assertEquals(Arrays.asList(1L, 2L, 3L), records); + } + + /** + * Goal: Verify that + * {@link CclRenderer#collectKeys(String, String...)} correctly combines the + * first key with the varargs into a single list. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Call {@code collectKeys("name", "age")}.
  • + *
  • Assert that the result contains both values in order.
  • + *
+ *

+ * Expected: The list contains {@code "name"} and + * {@code "age"} in order. + */ + @Test + public void testCollectKeys() { + List keys = CclRenderer.collectKeys("name", "age"); + Assert.assertEquals(Arrays.asList("name", "age"), keys); + } + + /** + * Goal: Verify that a {@link String} value containing + * double quotes is properly escaped. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Call {@link CclRenderer#value(Object)} with a string containing an + * embedded double quote.
  • + *
+ *

+ * Expected: The result has the double quote escaped with a + * backslash. + */ + @Test + public void testStringValueWithQuotes() { + String result = CclRenderer.value("say \"hello\""); + Assert.assertEquals("\"say \\\"hello\\\"\"", result); + } + + /** + * Goal: Verify that a {@link String} value containing + * backslashes is properly escaped. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Call {@link CclRenderer#value(Object)} with a string containing a + * backslash.
  • + *
+ *

+ * Expected: The result has the backslash doubled. + */ + @Test + public void testStringValueWithBackslash() { + String result = CclRenderer.value("path\\to\\file"); + Assert.assertEquals("\"path\\\\to\\\\file\"", result); + } + +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CommandCompilationTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CommandCompilationTest.java new file mode 100644 index 000000000..ef7a3cef1 --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CommandCompilationTest.java @@ -0,0 +1,1832 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.List; + +import org.junit.Assert; +import org.junit.Test; + +import com.cinchapi.ccl.grammar.command.CommandSymbol; +import com.cinchapi.ccl.syntax.AbstractSyntaxTree; +import com.cinchapi.ccl.syntax.CommandTree; +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.ConcourseCompiler; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; + +/** + * Verify that every {@link Command} builder produces CCL output that can be + * compiled by the {@link ConcourseCompiler} and resolves to the expected + * {@link CommandTree} type. + * + * @author Jeff Nelson + */ +public class CommandCompilationTest { + + /** + * Goal: Verify that a {@code find} command compiles to a + * {@code FIND} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with condition {@code "age > 30"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code FIND}. + */ + @Test + public void testFindCompiles() { + assertCompiles(Command.to().find("age > 30").ccl(), "FIND"); + } + + /** + * Goal: Verify that a {@code find} command with a + * {@link Timestamp} compiles to a {@code FIND} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with condition {@code "age > 30"} at + * timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code FIND}. + */ + @Test + public void testFindWithTimestampCompiles() { + assertCompiles(Command.to().find("age > 30") + .at(Timestamp.fromMicros(12345)).ccl(), "FIND"); + } + + /** + * Goal: Verify that a {@code find} command with + * {@link Order} and {@link Page} compiles to a {@code FIND} + * {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with condition, order, and page.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code FIND}. + */ + @Test + public void testFindWithOrderAndPageCompiles() { + assertCompiles(Command.to().find("age > 30") + .order(Order.by("name").build()).page(Page.sized(10)).ccl(), + "FIND"); + } + + /** + * Goal: Verify that a {@code select} command for all keys + * from a single record compiles to a {@code SELECT} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code selectAll} command from record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SELECT}. + */ + @Test + public void testSelectAllFromRecordCompiles() { + assertCompiles(Command.to().selectAll().from(1).ccl(), "SELECT"); + } + + /** + * Goal: Verify that a {@code select} command with keys + * from records compiles to a {@code SELECT} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} from record + * {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SELECT}. + */ + @Test + public void testSelectFromRecordCompiles() { + assertCompiles(Command.to().select("name").from(1).ccl(), "SELECT"); + } + + /** + * Goal: Verify that a {@code select} command with multiple + * keys from multiple records compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for keys {@code "name"} and + * {@code "age"} from records {@code 1}, {@code 2}, {@code 3}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SELECT}. + */ + @Test + public void testSelectMultipleKeysFromRecordsCompiles() { + assertCompiles(Command.to().select("name", "age").from(1, 2, 3).ccl(), + "SELECT"); + } + + /** + * Goal: Verify that a {@code select} command with a + * {@code where} clause compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} where + * {@code "status = active"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SELECT}. + */ + @Test + public void testSelectWhereCompiles() { + assertCompiles( + Command.to().select("name").where("status = active").ccl(), + "SELECT"); + } + + /** + * Goal: Verify that a {@code get} command from a record + * compiles to a {@code GET} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for key {@code "name"} from record + * {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code GET}. + */ + @Test + public void testGetFromRecordCompiles() { + assertCompiles(Command.to().get("name").from(1).ccl(), "GET"); + } + + /** + * Goal: Verify that a {@code get} command with a single + * key and a {@code where} clause compiles to a {@code GET} + * {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for key {@code "name"} where + * {@code "status = active"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code GET}. + */ + @Test + public void testGetWhereCompiles() { + assertCompiles(Command.to().get("name").where("status = active").ccl(), + "GET"); + } + + /** + * Goal: Verify that a {@code navigate} command from a + * record compiles to a {@code NAVIGATE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} from + * record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code NAVIGATE}. + */ + @Test + public void testNavigateFromRecordCompiles() { + assertCompiles(Command.to().navigate("friends.name").from(1).ccl(), + "NAVIGATE"); + } + + /** + * Goal: Verify that a {@code navigate} command with a + * {@code where} clause compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} where + * {@code "active = true"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code NAVIGATE}. + */ + @Test + public void testNavigateWhereCompiles() { + assertCompiles(Command.to().navigate("friends.name") + .where("active = true").ccl(), "NAVIGATE"); + } + + /** + * Goal: Verify that an {@code add} command without a + * target record compiles to an {@code ADD} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command for key {@code "name"} with value + * {@code "jeff"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code ADD}. + */ + @Test + public void testAddCompiles() { + assertCompiles(Command.to().add("name").as("jeff").ccl(), "ADD"); + } + + /** + * Goal: Verify that an {@code add} command with a target + * record compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command for key {@code "name"}, value + * {@code "jeff"}, in record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code ADD}. + */ + @Test + public void testAddInRecordCompiles() { + assertCompiles(Command.to().add("name").as("jeff").in(1).ccl(), "ADD"); + } + + /** + * Goal: Verify that an {@code add} command with a numeric + * value compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command for key {@code "age"} with value + * {@code 30}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code ADD}. + */ + @Test + public void testAddNumericValueCompiles() { + assertCompiles(Command.to().add("age").as(30).ccl(), "ADD"); + } + + /** + * Goal: Verify that a {@code set} command compiles to a + * {@code SET} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code set} command for key {@code "name"}, value + * {@code "jeff"}, in record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SET}. + */ + @Test + public void testSetCompiles() { + assertCompiles(Command.to().set("name").as("jeff").in(1).ccl(), "SET"); + } + + /** + * Goal: Verify that a {@code remove} command compiles to a + * {@code REMOVE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code remove} command for key {@code "name"}, value + * {@code "jeff"}, from record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code REMOVE}. + */ + @Test + public void testRemoveCompiles() { + assertCompiles(Command.to().remove("name").as("jeff").from(1).ccl(), + "REMOVE"); + } + + /** + * Goal: Verify that a {@code clear} command with keys and + * records compiles to a {@code CLEAR} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command for key {@code "name"} from record + * {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CLEAR}. + */ + @Test + public void testClearKeyFromRecordCompiles() { + assertCompiles(Command.to().clear("name").from(1).ccl(), "CLEAR"); + } + + /** + * Goal: Verify that a record-only {@code clear} command + * compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command for record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CLEAR}. + */ + @Test + public void testClearRecordsCompiles() { + assertCompiles(Command.to().clear(1).ccl(), "CLEAR"); + } + + /** + * Goal: Verify that an {@code insert} command compiles to + * an {@code INSERT} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON + * {@code "{\"name\":\"jeff\"}"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code INSERT}. + */ + @Test + public void testInsertCompiles() { + assertCompiles(Command.to().insert("{\"name\":\"jeff\"}").ccl(), + "INSERT"); + } + + /** + * Goal: Verify that an {@code insert} command with a + * target record compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON targeting record + * {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code INSERT}. + */ + @Test + public void testInsertInRecordCompiles() { + assertCompiles(Command.to().insert("{\"name\":\"jeff\"}").in(1).ccl(), + "INSERT"); + } + + /** + * Goal: Verify that a {@code link} command compiles to a + * {@code LINK} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code link} command for key {@code "friends"} from record + * {@code 1} to record {@code 2}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code LINK}. + */ + @Test + public void testLinkCompiles() { + assertCompiles(Command.to().link("friends").from(1).to(2).ccl(), + "LINK"); + } + + /** + * Goal: Verify that an {@code unlink} command compiles to + * an {@code UNLINK} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code unlink} command for key {@code "friends"} from record + * {@code 1} to record {@code 2}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code UNLINK}. + */ + @Test + public void testUnlinkCompiles() { + assertCompiles(Command.to().unlink("friends").from(1).to(2).ccl(), + "UNLINK"); + } + + /** + * Goal: Verify that a {@code verify} command compiles to a + * {@code VERIFY} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verify} command for key {@code "name"}, value + * {@code "jeff"}, in record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code VERIFY}. + */ + @Test + public void testVerifyCompiles() { + assertCompiles(Command.to().verify("name").as("jeff").in(1).ccl(), + "VERIFY"); + } + + /** + * Goal: Verify that a {@code verify} command with a + * {@link Timestamp} compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verify} command for key {@code "name"}, value + * {@code "jeff"}, in record {@code 1} at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code VERIFY}. + */ + @Test + public void testVerifyWithTimestampCompiles() { + assertCompiles(Command.to().verify("name").as("jeff").in(1) + .at(Timestamp.fromMicros(12345)).ccl(), "VERIFY"); + } + + /** + * Goal: Verify that a {@code verifyAndSwap} command + * compiles to a {@code VERIFY_AND_SWAP} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verifyAndSwap} command for key {@code "name"}, + * expected value {@code "jeff"}, in record {@code 1}, with replacement + * {@code "bob"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code VERIFY_AND_SWAP}. + */ + @Test + public void testVerifyAndSwapCompiles() { + assertCompiles(Command.to().verifyAndSwap("name").as("jeff").in(1) + .with("bob").ccl(), "VERIFY_AND_SWAP"); + } + + /** + * Goal: Verify that a {@code verifyOrSet} command compiles + * to a {@code VERIFY_OR_SET} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verifyOrSet} command for key {@code "name"}, value + * {@code "jeff"}, in record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code VERIFY_OR_SET}. + */ + @Test + public void testVerifyOrSetCompiles() { + assertCompiles(Command.to().verifyOrSet("name").as("jeff").in(1).ccl(), + "VERIFY_OR_SET"); + } + + /** + * Goal: Verify that a {@code findOrAdd} command compiles + * to a {@code FIND_OR_ADD} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code findOrAdd} command for key {@code "name"} with value + * {@code "jeff"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code FIND_OR_ADD}. + */ + @Test + public void testFindOrAddCompiles() { + assertCompiles(Command.to().findOrAdd("name").as("jeff").ccl(), + "FIND_OR_ADD"); + } + + /** + * Goal: Verify that a {@code findOrInsert} command + * compiles to a {@code FIND_OR_INSERT} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code findOrInsert} command with condition + * {@code "name = jeff"} and JSON {@code "{\"name\":\"jeff\"}"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code FIND_OR_INSERT}. + */ + @Test + public void testFindOrInsertCompiles() { + assertCompiles(Command.to().findOrInsert("name = jeff") + .json("{\"name\":\"jeff\"}").ccl(), "FIND_OR_INSERT"); + } + + /** + * Goal: Verify that a {@code browse} command compiles to a + * {@code BROWSE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code browse} command for key {@code "name"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code BROWSE}. + */ + @Test + public void testBrowseCompiles() { + assertCompiles(Command.to().browse("name").ccl(), "BROWSE"); + } + + /** + * Goal: Verify that a {@code browse} command with a + * {@link Timestamp} compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code browse} command for key {@code "name"} at timestamp + * 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code BROWSE}. + */ + @Test + public void testBrowseWithTimestampCompiles() { + assertCompiles(Command.to().browse("name") + .at(Timestamp.fromMicros(12345)).ccl(), "BROWSE"); + } + + /** + * Goal: Verify that a {@code search} command compiles to a + * {@code SEARCH} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code search} command for key {@code "name"} with query + * {@code "jeff"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SEARCH}. + */ + @Test + public void testSearchCompiles() { + assertCompiles(Command.to().search("name").forQuery("jeff").ccl(), + "SEARCH"); + } + + /** + * Goal: Verify that a {@code describe} command for a + * single record compiles to a {@code DESCRIBE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describe} command for record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DESCRIBE}. + */ + @Test + public void testDescribeCompiles() { + assertCompiles(Command.to().describe(1).ccl(), "DESCRIBE"); + } + + /** + * Goal: Verify that a bare {@code describe} command + * compiles to a {@code DESCRIBE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describeAll} command.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DESCRIBE}. + */ + @Test + public void testDescribeAllCompiles() { + assertCompiles(Command.to().describeAll().ccl(), "DESCRIBE"); + } + + /** + * Goal: Verify that a {@code trace} command compiles to a + * {@code TRACE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code trace} command for record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code TRACE}. + */ + @Test + public void testTraceCompiles() { + assertCompiles(Command.to().trace(1).ccl(), "TRACE"); + } + + /** + * Goal: Verify that a {@code holds} command compiles to a + * {@code HOLDS} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code holds} command for records {@code 1} and + * {@code 2}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code HOLDS}. + */ + @Test + public void testHoldsCompiles() { + assertCompiles(Command.to().holds(1, 2).ccl(), "HOLDS"); + } + + /** + * Goal: Verify that a {@code jsonify} command compiles to + * a {@code JSONIFY} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command for record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code JSONIFY}. + */ + @Test + public void testJsonifyCompiles() { + assertCompiles(Command.to().jsonify(1).ccl(), "JSONIFY"); + } + + /** + * Goal: Verify that the {@code ping} command compiles to a + * {@code PING} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code ping} command.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code PING}. + */ + @Test + public void testPingCompiles() { + assertCompiles(Command.to().ping().ccl(), "PING"); + } + + /** + * Goal: Verify that the {@code stage} command compiles to + * a {@code STAGE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code stage} command.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code STAGE}. + */ + @Test + public void testStageCompiles() { + assertCompiles(Command.to().stage().ccl(), "STAGE"); + } + + /** + * Goal: Verify that the {@code commit} command compiles to + * a {@code COMMIT} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code commit} command.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code COMMIT}. + */ + @Test + public void testCommitCompiles() { + assertCompiles(Command.to().commit().ccl(), "COMMIT"); + } + + /** + * Goal: Verify that the {@code abort} command compiles to + * an {@code ABORT} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code abort} command.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code ABORT}. + */ + @Test + public void testAbortCompiles() { + assertCompiles(Command.to().abort().ccl(), "ABORT"); + } + + /** + * Goal: Verify that the {@code inventory} command compiles + * to an {@code INVENTORY} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code inventory} command.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code INVENTORY}. + */ + @Test + public void testInventoryCompiles() { + assertCompiles(Command.to().inventory().ccl(), "INVENTORY"); + } + + /** + * Goal: Verify that a {@code chronicle} command compiles + * to a {@code CHRONICLE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command for key {@code "name"} in record + * {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CHRONICLE}. + */ + @Test + public void testChronicleCompiles() { + assertCompiles(Command.to().chronicle("name").in(1).ccl(), "CHRONICLE"); + } + + /** + * Goal: Verify that a {@code chronicle} command with a + * start and end timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command for key {@code "name"} in record + * {@code 1} with start timestamp 100 and end timestamp 200.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CHRONICLE}. + */ + @Test + public void testChronicleWithRangeCompiles() { + assertCompiles(Command.to().chronicle("name").in(1) + .at(Timestamp.fromMicros(100)).at(Timestamp.fromMicros(200)) + .ccl(), "CHRONICLE"); + } + + /** + * Goal: Verify that a record-scoped {@code diff} command + * compiles to a {@code DIFF} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for record {@code 1} at timestamp + * 100.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DIFF}. + */ + @Test + public void testDiffRecordCompiles() { + assertCompiles( + Command.to().diff(1L).at(Timestamp.fromMicros(100)).ccl(), + "DIFF"); + } + + /** + * Goal: Verify that a key-scoped {@code diff} command + * compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} in record + * {@code 1} at timestamp 100.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DIFF}. + */ + @Test + public void testDiffKeyInRecordCompiles() { + assertCompiles(Command.to().diff("name").in(1) + .at(Timestamp.fromMicros(100)).ccl(), "DIFF"); + } + + /** + * Goal: Verify that a record-scoped {@code audit} command + * compiles to an {@code AUDIT} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for record {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code AUDIT}. + */ + @Test + public void testAuditRecordCompiles() { + assertCompiles(Command.to().audit(1L).ccl(), "AUDIT"); + } + + /** + * Goal: Verify that a key-scoped {@code audit} command + * compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for key {@code "name"} in record + * {@code 1}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code AUDIT}. + */ + @Test + public void testAuditKeyInRecordCompiles() { + assertCompiles(Command.to().audit("name").in(1).ccl(), "AUDIT"); + } + + /** + * Goal: Verify that a {@code reconcile} command compiles + * to a {@code RECONCILE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code reconcile} command for key {@code "name"} in record + * {@code 1} with values {@code "jeff"} and {@code "bob"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code RECONCILE}. + */ + @Test + public void testReconcileCompiles() { + assertCompiles( + Command.to().reconcile("name").in(1).with("jeff", "bob").ccl(), + "RECONCILE"); + } + + /** + * Goal: Verify that a {@code revert} command compiles to a + * {@code REVERT} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code revert} command for key {@code "name"} in record + * {@code 1} to timestamp 100.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code REVERT}. + */ + @Test + public void testRevertCompiles() { + assertCompiles(Command.to().revert("name").in(1) + .to(Timestamp.fromMicros(100)).ccl(), "REVERT"); + } + + /** + * Goal: Verify that a {@code consolidate} command compiles + * to a {@code CONSOLIDATE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code consolidate} command for records {@code 1}, {@code 2}, + * and {@code 3}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CONSOLIDATE}. + */ + @Test + public void testConsolidateCompiles() { + assertCompiles(Command.to().consolidate(1, 2, 3).ccl(), "CONSOLIDATE"); + } + + /** + * Goal: Verify that a {@code calculate} command compiles + * to a {@code CALCULATE} {@link CommandTree}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command for function {@code "sum"} and key + * {@code "salary"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CALCULATE}. + */ + @Test + public void testCalculateCompiles() { + assertCompiles(Command.to().calculate("sum", "salary").ccl(), + "CALCULATE"); + } + + /** + * Goal: Verify that a {@code calculate} command with a + * {@code where} clause compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command for function {@code "count"} and + * key {@code "status"} where {@code "active = true"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CALCULATE}. + */ + @Test + public void testCalculateWhereCompiles() { + assertCompiles(Command.to().calculate("count", "status") + .where("active = true").ccl(), "CALCULATE"); + } + + /** + * Goal: Verify that a {@code calculate} command scoped to + * records compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command for function {@code "avg"} and key + * {@code "age"} in records {@code 1} and {@code 2}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CALCULATE}. + */ + @Test + public void testCalculateInRecordsCompiles() { + assertCompiles(Command.to().calculate("avg", "age").in(1, 2).ccl(), + "CALCULATE"); + } + + /** + * Goal: Verify that a {@code jsonify} command with the + * identifier flag compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command for record {@code 1} with the + * identifier flag enabled.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code JSONIFY}. + */ + @Test + public void testJsonifyWithIdentifierCompiles() { + assertCompiles(Command.to().jsonify(1).identifier().ccl(), "JSONIFY"); + } + + /** + * Goal: Verify that a {@code jsonify} command with the + * identifier flag and a timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command for record {@code 1} with the + * identifier flag and timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code JSONIFY}. + */ + @Test + public void testJsonifyWithIdentifierAndTimestampCompiles() { + assertCompiles(Command.to().jsonify(1).identifier() + .at(Timestamp.fromMicros(12345)).ccl(), "JSONIFY"); + } + + /** + * Goal: Verify that a key-only {@code diff} command + * compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} at timestamp + * 100.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DIFF}. + */ + @Test + public void testDiffKeyOnlyCompiles() { + assertCompiles( + Command.to().diff("name").at(Timestamp.fromMicros(100)).ccl(), + "DIFF"); + } + + /** + * Goal: Verify that a key-only {@code diff} command with a + * range compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} at start + * timestamp 100 and end timestamp 200.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DIFF}. + */ + @Test + public void testDiffKeyOnlyRangeCompiles() { + assertCompiles(Command.to().diff("name").at(Timestamp.fromMicros(100)) + .at(Timestamp.fromMicros(200)).ccl(), "DIFF"); + } + + /** + * Goal: Verify that a {@code findOrInsert} command with a + * historical timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code findOrInsert} command with condition + * {@code "name = jeff"}, timestamp 12345, and JSON data.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code FIND_OR_INSERT}. + *

+ */ + @Test + public void testFindOrInsertWithTimestampCompiles() { + assertCompiles(Command.to().findOrInsert("name = jeff") + .at(Timestamp.fromMicros(12345)).json("{\"name\":\"jeff\"}") + .ccl(), "FIND_OR_INSERT"); + } + + /** + * Goal: Verify that a {@code describe} command for all + * records with a timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describeAll} command at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DESCRIBE}. + */ + @Test + public void testDescribeAllWithTimestampCompiles() { + assertCompiles(Command.to().describeAll() + .at(Timestamp.fromMicros(12345)).ccl(), "DESCRIBE"); + } + + /** + * Goal: Verify that a {@code diff} command for a record + * with a start and end timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for record 1 at timestamps 100 and + * 200.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DIFF}. + */ + @Test + public void testDiffRecordRangeCompiles() { + assertCompiles(Command.to().diff(1L).at(Timestamp.fromMicros(100)) + .at(Timestamp.fromMicros(200)).ccl(), "DIFF"); + } + + /** + * Goal: Verify that a {@code diff} command for a key in a + * record with a start and end timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} in record 1 at + * timestamps 100 and 200.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DIFF}. + */ + @Test + public void testDiffKeyInRecordRangeCompiles() { + assertCompiles( + Command.to().diff("name").in(1).at(Timestamp.fromMicros(100)) + .at(Timestamp.fromMicros(200)).ccl(), + "DIFF"); + } + + /** + * Goal: Verify that a {@code chronicle} command with a + * single timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command for key {@code "name"} in record 1 + * at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CHRONICLE}. + */ + @Test + public void testChronicleWithTimestampCompiles() { + assertCompiles(Command.to().chronicle("name").in(1) + .at(Timestamp.fromMicros(12345)).ccl(), "CHRONICLE"); + } + + /** + * Goal: Verify that an {@code audit} command for a record + * with a timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for record 1 at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code AUDIT}. + */ + @Test + public void testAuditRecordWithTimestampCompiles() { + assertCompiles( + Command.to().audit(1L).at(Timestamp.fromMicros(12345)).ccl(), + "AUDIT"); + } + + /** + * Goal: Verify that an {@code audit} command for a record + * with a start and end timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for record 1 at timestamps 100 and + * 200.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code AUDIT}. + */ + @Test + public void testAuditRecordRangeCompiles() { + assertCompiles(Command.to().audit(1L).at(Timestamp.fromMicros(100)) + .at(Timestamp.fromMicros(200)).ccl(), "AUDIT"); + } + + /** + * Goal: Verify that an {@code audit} command for a key in + * a record with a timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for key {@code "name"} in record 1 at + * timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code AUDIT}. + */ + @Test + public void testAuditKeyInRecordWithTimestampCompiles() { + assertCompiles(Command.to().audit("name").in(1) + .at(Timestamp.fromMicros(12345)).ccl(), "AUDIT"); + } + + /** + * Goal: Verify that an {@code audit} command for a key in + * a record with a start and end timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for key {@code "name"} in record 1 at + * timestamps 100 and 200.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code AUDIT}. + */ + @Test + public void testAuditKeyInRecordRangeCompiles() { + assertCompiles( + Command.to().audit("name").in(1).at(Timestamp.fromMicros(100)) + .at(Timestamp.fromMicros(200)).ccl(), + "AUDIT"); + } + + /** + * Goal: Verify that a {@code trace} command with a + * timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code trace} command for record 1 at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code TRACE}. + */ + @Test + public void testTraceWithTimestampCompiles() { + assertCompiles( + Command.to().trace(1).at(Timestamp.fromMicros(12345)).ccl(), + "TRACE"); + } + + /** + * Goal: Verify that a {@code navigate} command with a + * timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} from + * record 1 at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code NAVIGATE}. + */ + @Test + public void testNavigateWithTimestampCompiles() { + assertCompiles(Command.to().navigate("friends.name").from(1) + .at(Timestamp.fromMicros(12345)).ccl(), "NAVIGATE"); + } + + /** + * Goal: Verify that a {@code describe} command for a + * specific record with a timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describe} command for record 1 at timestamp + * 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DESCRIBE}. + */ + @Test + public void testDescribeRecordWithTimestampCompiles() { + assertCompiles( + Command.to().describe(1).at(Timestamp.fromMicros(12345)).ccl(), + "DESCRIBE"); + } + + /** + * Goal: Verify that a {@code calculate} command with a + * timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command for function {@code "sum"} on key + * {@code "salary"} at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code CALCULATE}. + */ + @Test + public void testCalculateWithTimestampCompiles() { + assertCompiles(Command.to().calculate("sum", "salary") + .at(Timestamp.fromMicros(12345)).ccl(), "CALCULATE"); + } + + /** + * Goal: Verify that a {@code jsonify} command with a + * timestamp (but no identifier) compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command for record 1 at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code JSONIFY}. + */ + @Test + public void testJsonifyWithTimestampCompiles() { + assertCompiles( + Command.to().jsonify(1).at(Timestamp.fromMicros(12345)).ccl(), + "JSONIFY"); + } + + /** + * Goal: Verify that a {@code select} command with + * {@link Order} compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} from record 1 + * with order by {@code "name"} ascending.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SELECT}. + */ + @Test + public void testSelectWithOrderCompiles() { + assertCompiles(Command.to().select("name").from(1) + .order(Order.by("name").build()).ccl(), "SELECT"); + } + + /** + * Goal: Verify that a {@code select} command with + * {@link Page} compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} where + * {@code "age > 30"} with page of size 10.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SELECT}. + */ + @Test + public void testSelectWithPageCompiles() { + assertCompiles(Command.to().select("name").where("age > 30") + .page(Page.sized(10)).ccl(), "SELECT"); + } + + /** + * Goal: Verify that a {@code select} command from a record + * with a timestamp compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} from record 1 + * at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SELECT}. + */ + @Test + public void testSelectFromRecordWithTimestampCompiles() { + assertCompiles(Command.to().select("name").from(1) + .at(Timestamp.fromMicros(12345)).ccl(), "SELECT"); + } + + /** + * Goal: Verify that an {@code add} command targeting + * multiple records compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command for key {@code "name"} with value + * {@code "jeff"} in records 1 and 2.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code ADD}. + */ + @Test + public void testAddInMultipleRecordsCompiles() { + assertCompiles(Command.to().add("name").as("jeff").in(1, 2).ccl(), + "ADD"); + } + + /** + * Goal: Verify that a {@code link} command with multiple + * destinations compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code link} command for key {@code "friends"} from record 1 + * to records 2 and 3.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code LINK}. + */ + @Test + public void testLinkMultipleDestinationsCompiles() { + assertCompiles(Command.to().link("friends").from(1).to(2, 3).ccl(), + "LINK"); + } + + /** + * Goal: Verify that a {@code describe} command targeting + * multiple records compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describe} command for records 1, 2, and 3.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code DESCRIBE}. + */ + @Test + public void testDescribeMultipleRecordsCompiles() { + assertCompiles(Command.to().describe(1, 2, 3).ccl(), "DESCRIBE"); + } + + /** + * Goal: Verify that a {@code revert} command with multiple + * keys and records compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code revert} command for keys {@code "name"} and + * {@code "age"} in records 1 and 2 at timestamp 12345.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code REVERT}. + */ + @Test + public void testRevertMultipleKeysAndRecordsCompiles() { + assertCompiles(Command.to().revert("name", "age").in(1, 2) + .to(Timestamp.fromMicros(12345)).ccl(), "REVERT"); + } + + /** + * Goal: Verify that a {@code select} all-keys command with + * a condition compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code selectAll} command with condition + * {@code "active = true"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code SELECT}. + */ + @Test + public void testSelectAllWhereCompiles() { + assertCompiles(Command.to().selectAll().where("active = true").ccl(), + "SELECT"); + } + + /** + * Goal: Verify that a {@code get} all-keys command from a + * single record compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code getAll} command from record 1.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code GET}. + */ + @Test + public void testGetAllFromRecordCompiles() { + assertCompiles(Command.to().getAll().from(1).ccl(), "GET"); + } + + /** + * Goal: Verify that a {@code get} all-keys command from + * multiple records compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code getAll} command from records 1 and 2.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code GET}. + */ + @Test + public void testGetAllFromMultipleRecordsCompiles() { + assertCompiles(Command.to().getAll().from(1, 2).ccl(), "GET"); + } + + /** + * Goal: Verify that a {@code get} all-keys command with a + * condition compiles. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code getAll} command with condition + * {@code "active = true"}.
  • + *
  • Compile the CCL output.
  • + *
+ *

+ * Expected: The compiled tree is a {@link CommandTree} of + * type {@code GET}. + */ + @Test + public void testGetAllWhereCompiles() { + assertCompiles(Command.to().getAll().where("active = true").ccl(), + "GET"); + } + + /** + * Compile the given CCL string using the {@link ConcourseCompiler} and + * assert that it produces a {@link CommandTree} with the expected command + * type. + * + * @param ccl the CCL string to compile + * @param expectedType the expected command type (e.g., {@code "FIND"}, + * {@code "SELECT"}) + */ + private static void assertCompiles(String ccl, String expectedType) { + List trees = ConcourseCompiler.get().compile(ccl); + Assert.assertFalse("CCL should compile to at least one tree: " + ccl, + trees.isEmpty()); + Assert.assertTrue("CCL should compile to a CommandTree: " + ccl, + trees.get(0) instanceof CommandTree); + CommandTree tree = (CommandTree) trees.get(0); + Assert.assertEquals("Command type mismatch for: " + ccl, expectedType, + ((CommandSymbol) tree.root()).type()); + } + +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CommandSerializationTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CommandSerializationTest.java new file mode 100644 index 000000000..b9f60d506 --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/CommandSerializationTest.java @@ -0,0 +1,1703 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import java.util.Arrays; + +import org.junit.Assert; +import org.junit.Test; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; +import com.cinchapi.concourse.thrift.Operator; +import com.cinchapi.concourse.thrift.TCommand; +import com.cinchapi.concourse.thrift.TCommandVerb; + +/** + * Unit tests verifying round-trip serialization and deserialization of + * {@link Command Commands} through {@link TCommand}. + *

+ * Each test builds a {@link Command} via the fluent API, serializes it to a + * {@link TCommand}, then deserializes back and asserts that the resulting + * {@code ccl()} output matches the original. + *

+ * + * @author Jeff Nelson + */ +public class CommandSerializationTest { + + /** + * Goal: Verify that all nullary commands (no parameters) + * round-trip through {@link TCommand} serialization. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build each nullary command ({@code ping}, {@code stage}, + * {@code commit}, {@code abort}, {@code inventory}).
  • + *
  • Serialize to {@link TCommand} and verify the verb matches the CCL + * verb name.
  • + *
  • Deserialize back and compare {@code ccl()} output.
  • + *
+ *

+ * Expected: Each command's verb maps correctly and the + * round-tripped CCL matches the original. All five share the same + * serialization path, so one test covers the mechanism. + */ + @Test + public void testNullaryCommandsRoundTrip() { + Command[] commands = { Command.to().ping(), Command.to().stage(), + Command.to().commit(), Command.to().abort(), + Command.to().inventory() }; + for (Command cmd : commands) { + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(cmd.ccl(), tc.getVerb().name().toLowerCase()); + Assert.assertEquals(cmd.ccl(), + CommandSerializer.fromThrift(tc).ccl()); + } + } + + /** + * Goal: Verify that a {@code find} command with a CCL + * condition round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with condition {@code "age > 30"}.
  • + *
  • Serialize, verify verb is {@code FIND}, and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "find age > 30"}. + */ + @Test + public void testFindWithConditionRoundTrip() { + Command cmd = Command.to().find("age > 30"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.FIND, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code find} command with a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with condition {@code "age > 30"} and a + * historical timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at} + * clause. + */ + @Test + public void testFindWithTimestampRoundTrip() { + Command cmd = Command.to().find("age > 30") + .at(Timestamp.fromMicros(12345)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(12345, tc.getTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code find} command with order and + * page round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with condition, order, and page.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes + * {@code order by} and {@code page} clauses. + */ + @Test + public void testFindWithOrderAndPageRoundTrip() { + Command cmd = Command.to().find("age > 30") + .order(Order.by("name").build()).page(Page.sized(10)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetOrder()); + Assert.assertTrue(tc.isSetPage()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code find} command built with a + * structured {@link Criteria} object round-trips correctly through + * {@link TCommand} serialization. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@link Criteria} with {@code age GREATER_THAN 30}.
  • + *
  • Build a {@code find} command using that {@link Criteria}.
  • + *
  • Serialize to {@link TCommand} and verify the {@code criteria} field + * is set instead of {@code condition}.
  • + *
  • Deserialize and compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has + * {@code isSetCriteria() == true} and {@code isSetCondition() == false}, + * and the round-tripped CCL matches the original. + */ + @Test + public void testFindWithCriteriaRoundTrip() { + Criteria criteria = Criteria.where().key("age") + .operator(Operator.GREATER_THAN).value(30).build(); + Command cmd = Command.to().find(criteria); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.FIND, tc.getVerb()); + Assert.assertTrue(tc.isSetCriteria()); + Assert.assertFalse(tc.isSetCondition()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code select} command with keys and + * records round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for keys {@code "name"} and + * {@code "age"} from records {@code 1}, {@code 2}, {@code 3}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "select [name, age] from [1, 2, 3]"}. + */ + @Test + public void testSelectKeysFromRecordsRoundTrip() { + Command cmd = Command.to().select("name", "age").from(1, 2, 3); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.SELECT, tc.getVerb()); + Assert.assertEquals(Arrays.asList("name", "age"), tc.getKeys()); + Assert.assertEquals(Arrays.asList(1L, 2L, 3L), tc.getRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code selectAll} command from a + * record round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code selectAll} command from record {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is {@code "select 1"}. + */ + @Test + public void testSelectAllFromRecordRoundTrip() { + Command cmd = Command.to().selectAll().from(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertFalse(tc.isSetKeys()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code select} command with a CCL + * condition round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} with condition + * {@code "status = active"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "select name where status = active"}. + */ + @Test + public void testSelectWithConditionRoundTrip() { + Command cmd = Command.to().select("name").where("status = active"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetCondition()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code select} command with + * timestamp, order, and page round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} with keys, records, timestamp, order, and + * page.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has timestamp, order, and + * page fields set, and the round-tripped CCL matches. + */ + @Test + public void testSelectWithAllOptionsRoundTrip() { + Command cmd = Command.to().select("name").from(1) + .at(Timestamp.fromMicros(5000)).order(Order.by("name").build()) + .page(Page.sized(5)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertTrue(tc.isSetOrder()); + Assert.assertTrue(tc.isSetPage()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code get} command with a key and + * record round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for key {@code "name"} from record + * {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "get name from 1"}. + */ + @Test + public void testGetFromRecordRoundTrip() { + Command cmd = Command.to().get("name").from(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.GET, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code getAll} command with a + * condition round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code getAll} command with condition + * {@code "active = true"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has the condition field + * set, no keys, and the round-tripped CCL matches. + */ + @Test + public void testGetAllWithConditionRoundTrip() { + Command cmd = Command.to().getAll().where("active = true"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetCondition()); + Assert.assertFalse(tc.isSetKeys()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code get} command with a timestamp + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for key {@code "name"} from record + * {@code 1} at a historical timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at} + * clause. + */ + @Test + public void testGetWithTimestampRoundTrip() { + Command cmd = Command.to().get("name").from(1) + .at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(5000, tc.getTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code get} command with timestamp, + * order, and page round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for key {@code "name"} from record + * {@code 1} with a timestamp, order, and page.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at}, + * {@code order by}, and {@code page} clauses. + */ + @Test + public void testGetWithAllOptionsRoundTrip() { + Command cmd = Command.to().get("name").from(1) + .at(Timestamp.fromMicros(5000)).order(Order.by("name").build()) + .page(Page.sized(5)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertTrue(tc.isSetOrder()); + Assert.assertTrue(tc.isSetPage()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code navigate} command from a + * record round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} from + * record {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "navigate friends.name from 1"}. + */ + @Test + public void testNavigateFromRecordRoundTrip() { + Command cmd = Command.to().navigate("friends.name").from(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.NAVIGATE, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code navigate} command with a + * condition and timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command with a condition and historical + * timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has both condition and + * timestamp fields set, and the round-tripped CCL matches. + */ + @Test + public void testNavigateWithConditionAndTimestampRoundTrip() { + Command cmd = Command.to().navigate("friends.name") + .where("active = true").at(Timestamp.fromMicros(9999)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetCondition()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(9999, tc.getTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code add} command with key and + * value round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "name"} and value + * {@code "jeff"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "add name as \"jeff\""}. + */ + @Test + public void testAddKeyValueRoundTrip() { + Command cmd = Command.to().add("name").as("jeff"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.ADD, tc.getVerb()); + Assert.assertFalse(tc.isSetRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code add} command with key, + * value, and records round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "name"}, value + * {@code "jeff"}, and records {@code 1}, {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "add name as \"jeff\" in [1, 2]"}. + */ + @Test + public void testAddKeyValueInRecordsRoundTrip() { + Command cmd = Command.to().add("name").as("jeff").in(1, 2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code set} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code set} command with key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "set name as \"jeff\" in 1"}. + */ + @Test + public void testSetRoundTrip() { + Command cmd = Command.to().set("name").as("jeff").in(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.SET, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code remove} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code remove} command with key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has key, value, and + * records fields correctly populated. + */ + @Test + public void testRemoveRoundTrip() { + Command cmd = Command.to().remove("name").as("jeff").from(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.REMOVE, tc.getVerb()); + Assert.assertTrue(tc.isSetValue()); + Assert.assertEquals(Arrays.asList("name"), tc.getKeys()); + Assert.assertEquals(Arrays.asList(1L), tc.getRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code clear} command with keys and + * records round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command with keys {@code "name"} and + * {@code "age"} from records {@code 1} and {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "clear [name, age] from [1, 2]"}. + */ + @Test + public void testClearKeysFromRecordsRoundTrip() { + Command cmd = Command.to().clear("name", "age").from(1, 2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.CLEAR, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code clear} command with records + * only (no keys) round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command targeting records {@code 1} and + * {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL is + * {@code "clear [1, 2]"}. + */ + @Test + public void testClearRecordsOnlyRoundTrip() { + Command cmd = Command.to().clear(1, 2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertFalse(tc.isSetKeys()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code insert} command with JSON + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON + * {@code "{\"name\":\"jeff\"}"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testInsertJsonRoundTrip() { + Command cmd = Command.to().insert("{\"name\":\"jeff\"}"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.INSERT, tc.getVerb()); + Assert.assertFalse(tc.isSetRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code insert} command with JSON + * and a record target round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON targeting record + * {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes {@code "in 1"}. + */ + @Test + public void testInsertJsonInRecordRoundTrip() { + Command cmd = Command.to().insert("{\"name\":\"jeff\"}").in(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code link} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code link} command for key {@code "friends"} from source + * record {@code 1} to destination {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testLinkRoundTrip() { + Command cmd = Command.to().link("friends").from(1).to(2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.LINK, tc.getVerb()); + Assert.assertEquals(1, tc.getSourceRecord()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code unlink} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code unlink} command for key {@code "friends"} from source + * {@code 1} to destination {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has the source record and + * destination record correctly mapped. + */ + @Test + public void testUnlinkRoundTrip() { + Command cmd = Command.to().unlink("friends").from(1).to(2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.UNLINK, tc.getVerb()); + Assert.assertEquals(1, tc.getSourceRecord()); + Assert.assertEquals(Arrays.asList(2L), tc.getRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code verify} command without a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verify} command for key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testVerifyRoundTrip() { + Command cmd = Command.to().verify("name").as("jeff").in(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.VERIFY, tc.getVerb()); + Assert.assertFalse(tc.isSetTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code verify} command with a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verify} command with a historical timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at} + * clause. + */ + @Test + public void testVerifyWithTimestampRoundTrip() { + Command cmd = Command.to().verify("name").as("jeff").in(1) + .at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code verifyAndSwap} command + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verifyAndSwap} command for key {@code "name"}, + * expected value {@code "jeff"}, record {@code 1}, and replacement + * {@code "bob"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testVerifyAndSwapRoundTrip() { + Command cmd = Command.to().verifyAndSwap("name").as("jeff").in(1) + .with("bob"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.VERIFY_AND_SWAP, tc.getVerb()); + Assert.assertTrue(tc.isSetReplacement()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code verifyOrSet} command + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verifyOrSet} command for key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has key, value, and + * record fields populated. + */ + @Test + public void testVerifyOrSetRoundTrip() { + Command cmd = Command.to().verifyOrSet("name").as("jeff").in(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.VERIFY_OR_SET, tc.getVerb()); + Assert.assertTrue(tc.isSetValue()); + Assert.assertEquals(Arrays.asList(1L), tc.getRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code findOrAdd} command + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code findOrAdd} command for key {@code "name"} and value + * {@code "jeff"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has key and value fields + * populated but no records. + */ + @Test + public void testFindOrAddRoundTrip() { + Command cmd = Command.to().findOrAdd("name").as("jeff"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.FIND_OR_ADD, tc.getVerb()); + Assert.assertTrue(tc.isSetValue()); + Assert.assertEquals(Arrays.asList("name"), tc.getKeys()); + Assert.assertFalse(tc.isSetRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code findOrInsert} command + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code findOrInsert} command with condition + * {@code "name = jeff"} and JSON {@code "{\"name\":\"jeff\"}"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has condition and json + * fields populated. + */ + @Test + public void testFindOrInsertRoundTrip() { + Command cmd = Command.to().findOrInsert("name = jeff") + .json("{\"name\":\"jeff\"}"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.FIND_OR_INSERT, tc.getVerb()); + Assert.assertTrue(tc.isSetCondition()); + Assert.assertTrue(tc.isSetJson()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code search} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code search} command for key {@code "name"} with query + * {@code "jeff"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testSearchRoundTrip() { + Command cmd = Command.to().search("name").forQuery("jeff"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.SEARCH, tc.getVerb()); + Assert.assertEquals("jeff", tc.getQuery()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code browse} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code browse} command for key {@code "name"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testBrowseRoundTrip() { + Command cmd = Command.to().browse("name"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.BROWSE, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code browse} command with a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code browse} command with a historical timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at} + * clause. + */ + @Test + public void testBrowseWithTimestampRoundTrip() { + Command cmd = Command.to().browse("name") + .at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code describe} command with + * records round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describe} command for records {@code 1} and + * {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testDescribeRecordsRoundTrip() { + Command cmd = Command.to().describe(1, 2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.DESCRIBE, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code describeAll} command + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describeAll} command.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testDescribeAllRoundTrip() { + Command cmd = Command.to().describeAll(); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertFalse(tc.isSetRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code describeAll} command with a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describeAll} command with a historical timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has a timestamp but no + * records, and the round-tripped CCL matches. + */ + @Test + public void testDescribeAllWithTimestampRoundTrip() { + Command cmd = Command.to().describeAll().at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertFalse(tc.isSetRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code trace} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code trace} command for records {@code 1} and + * {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has the records list + * populated and the round-tripped CCL matches. + */ + @Test + public void testTraceRoundTrip() { + Command cmd = Command.to().trace(1, 2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.TRACE, tc.getVerb()); + Assert.assertEquals(Arrays.asList(1L, 2L), tc.getRecords()); + Assert.assertFalse(tc.isSetTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code trace} command with a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code trace} command with a historical timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has both records and + * timestamp set. + */ + @Test + public void testTraceWithTimestampRoundTrip() { + Command cmd = Command.to().trace(1).at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(5000, tc.getTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code holds} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code holds} command for records {@code 1} and + * {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testHoldsRoundTrip() { + Command cmd = Command.to().holds(1, 2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.HOLDS, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code jsonify} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command for record {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testJsonifyRoundTrip() { + Command cmd = Command.to().jsonify(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.JSONIFY, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code jsonify} command with a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command with a historical timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at} + * clause. + */ + @Test + public void testJsonifyWithTimestampRoundTrip() { + Command cmd = Command.to().jsonify(1).at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(5000, tc.getTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code chronicle} command without + * temporal bounds round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command for key {@code "name"} in record + * {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testChronicleRoundTrip() { + Command cmd = Command.to().chronicle("name").in(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.CHRONICLE, tc.getVerb()); + Assert.assertFalse(tc.isSetTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code chronicle} command with a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command with a historical timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at} + * clause. + */ + @Test + public void testChronicleWithTimestampRoundTrip() { + Command cmd = Command.to().chronicle("name").in(1) + .at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertFalse(tc.isSetEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code chronicle} command with a + * timestamp range round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command with a start and end + * timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes both {@code at} + * clauses. + */ + @Test + public void testChronicleWithRangeRoundTrip() { + Command cmd = Command.to().chronicle("name").in(1) + .at(Timestamp.fromMicros(1000)).at(Timestamp.fromMicros(2000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertTrue(tc.isSetEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code diff} command for a record at + * a timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for record {@code 1} at a + * timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testDiffRecordTimestampRoundTrip() { + Command cmd = Command.to().diff(1).at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.DIFF, tc.getVerb()); + Assert.assertTrue(tc.isSetRecords()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertFalse(tc.isSetEndTimestamp()); + Assert.assertFalse(tc.isSetKeys()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code diff} command for a record + * between timestamps round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for record {@code 1} with start and end + * timestamps.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes both {@code at} + * clauses. + */ + @Test + public void testDiffRecordRangeRoundTrip() { + Command cmd = Command.to().diff(1).at(Timestamp.fromMicros(1000)) + .at(Timestamp.fromMicros(2000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetRecords()); + Assert.assertFalse(tc.isSetKeys()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(1000, tc.getTimestamp()); + Assert.assertTrue(tc.isSetEndTimestamp()); + Assert.assertEquals(2000, tc.getEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code diff} command for a key at a + * timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} at a + * timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testDiffKeyTimestampRoundTrip() { + Command cmd = Command.to().diff("name").at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetKeys()); + Assert.assertFalse(tc.isSetRecords()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertFalse(tc.isSetEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code diff} command for a key + * between two timestamps (without a record) round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} with start and + * end timestamps.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The {@link TCommand} has keys and both + * timestamp fields set but no records, and the round-tripped CCL matches + * the original. + */ + @Test + public void testDiffKeyRangeRoundTrip() { + Command cmd = Command.to().diff("name").at(Timestamp.fromMicros(1000)) + .at(Timestamp.fromMicros(2000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetKeys()); + Assert.assertFalse(tc.isSetRecords()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertTrue(tc.isSetEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code diff} command for a key and + * record at a timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} in record + * {@code 1} at a timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testDiffKeyRecordTimestampRoundTrip() { + Command cmd = Command.to().diff("name").in(1) + .at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetKeys()); + Assert.assertTrue(tc.isSetRecords()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertFalse(tc.isSetEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code diff} command for a key and + * record between timestamps round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} in record + * {@code 1} with start and end timestamps.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes both {@code at} + * clauses. + */ + @Test + public void testDiffKeyRecordRangeRoundTrip() { + Command cmd = Command.to().diff("name").in(1) + .at(Timestamp.fromMicros(1000)).at(Timestamp.fromMicros(2000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetKeys()); + Assert.assertTrue(tc.isSetRecords()); + Assert.assertTrue(tc.isSetEndTimestamp()); + Assert.assertEquals(1000, tc.getTimestamp()); + Assert.assertEquals(2000, tc.getEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code audit} command for a record + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for record {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testAuditRecordRoundTrip() { + Command cmd = Command.to().audit(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.AUDIT, tc.getVerb()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code audit} command for a record + * at a timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for record {@code 1} at a + * timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at} + * clause. + */ + @Test + public void testAuditRecordTimestampRoundTrip() { + Command cmd = Command.to().audit(1).at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertFalse(tc.isSetKeys()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code audit} command for a record + * between timestamps round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for record {@code 1} with start and + * end timestamps.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes both {@code at} + * clauses. + */ + @Test + public void testAuditRecordRangeRoundTrip() { + Command cmd = Command.to().audit(1).at(Timestamp.fromMicros(1000)) + .at(Timestamp.fromMicros(2000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(1000, tc.getTimestamp()); + Assert.assertTrue(tc.isSetEndTimestamp()); + Assert.assertEquals(2000, tc.getEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code audit} command for a key and + * record round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for key {@code "name"} in record + * {@code 1}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testAuditKeyRecordRoundTrip() { + Command cmd = Command.to().audit("name").in(1); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetKeys()); + Assert.assertEquals(Arrays.asList("name"), tc.getKeys()); + Assert.assertFalse(tc.isSetTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code audit} command for a key and + * record at a timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for key {@code "name"} in record + * {@code 1} at a timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes the {@code at} + * clause. + */ + @Test + public void testAuditKeyRecordTimestampRoundTrip() { + Command cmd = Command.to().audit("name").in(1) + .at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetKeys()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertFalse(tc.isSetEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that an {@code audit} command for a key and + * record between timestamps round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for key {@code "name"} in record + * {@code 1} with start and end timestamps.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes both {@code at} + * clauses. + */ + @Test + public void testAuditKeyRecordRangeRoundTrip() { + Command cmd = Command.to().audit("name").in(1) + .at(Timestamp.fromMicros(1000)).at(Timestamp.fromMicros(2000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetKeys()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertTrue(tc.isSetEndTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code revert} command round-trips + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code revert} command for key {@code "name"} in record + * {@code 1} at a timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testRevertRoundTrip() { + Command cmd = Command.to().revert("name").in(1) + .to(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.REVERT, tc.getVerb()); + Assert.assertTrue(tc.isSetKeys()); + Assert.assertTrue(tc.isSetRecords()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(5000, tc.getTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code reconcile} command + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code reconcile} command for key {@code "name"} in record + * {@code 1} with values {@code "jeff"} and {@code "bob"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testReconcileRoundTrip() { + Command cmd = Command.to().reconcile("name").in(1).with("jeff", "bob"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.RECONCILE, tc.getVerb()); + Assert.assertTrue(tc.isSetValues()); + Assert.assertEquals(2, tc.getValues().size()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code consolidate} command + * round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code consolidate} command for records {@code 1}, {@code 2}, + * and {@code 3}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testConsolidateRoundTrip() { + Command cmd = Command.to().consolidate(1, 2, 3); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.CONSOLIDATE, tc.getVerb()); + Assert.assertEquals(Arrays.asList(1L, 2L, 3L), tc.getRecords()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code calculate} command with + * records round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "count"} for + * key {@code "name"} in records {@code 1} and {@code 2}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testCalculateWithRecordsRoundTrip() { + Command cmd = Command.to().calculate("count", "name").in(1, 2); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertEquals(TCommandVerb.CALCULATE, tc.getVerb()); + Assert.assertEquals("count", tc.getFunction()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code calculate} command with a + * condition round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "count"} for + * key {@code "name"} with condition {@code "active = true"}.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL matches the original. + */ + @Test + public void testCalculateWithConditionRoundTrip() { + Command cmd = Command.to().calculate("count", "name") + .where("active = true"); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetCondition()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + + /** + * Goal: Verify that a {@code calculate} command with a + * condition and timestamp round-trips correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function, key, condition, and + * timestamp.
  • + *
  • Serialize and deserialize.
  • + *
  • Compare {@code ccl()} output.
  • + *
+ *

+ * Expected: The round-tripped CCL includes both the + * condition and timestamp. + */ + @Test + public void testCalculateWithConditionAndTimestampRoundTrip() { + Command cmd = Command.to().calculate("count", "name") + .where("active = true").at(Timestamp.fromMicros(5000)); + TCommand tc = CommandSerializer.toThrift(cmd); + Assert.assertTrue(tc.isSetCondition()); + Assert.assertTrue(tc.isSetTimestamp()); + Assert.assertEquals(5000, tc.getTimestamp()); + Assert.assertEquals(cmd.ccl(), CommandSerializer.fromThrift(tc).ccl()); + } + +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/InspectionCommandTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/InspectionCommandTest.java new file mode 100644 index 000000000..dbf41a1db --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/InspectionCommandTest.java @@ -0,0 +1,456 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import org.junit.Assert; +import org.junit.Test; + +import com.cinchapi.concourse.Timestamp; + +/** + * Unit tests for inspection {@link Command Commands} including {@code search}, + * {@code browse}, {@code describe}, {@code trace}, {@code holds}, + * {@code jsonify}, and simple utility commands. + * + * @author Jeff Nelson + */ +public class InspectionCommandTest { + + /** + * Goal: Verify that a {@code search} command renders the + * key and query in CCL. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code search} command for key {@code "name"} with query + * {@code "jeff"}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "search name for \"jeff\""}. + */ + @Test + public void testSearch() { + String ccl = Command.to().search("name").forQuery("jeff").ccl(); + Assert.assertEquals("search name for \"jeff\"", ccl); + } + + /** + * Goal: Verify that a {@code browse} command with a single + * key renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code browse} command for key {@code "name"}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "browse name"}. + */ + @Test + public void testBrowseSingleKey() { + String ccl = Command.to().browse("name").ccl(); + Assert.assertEquals("browse name", ccl); + } + + /** + * Goal: Verify that a {@code browse} command with multiple + * keys renders a bracketed list. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code browse} command for keys {@code "name"} and + * {@code "age"}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "browse [name, age]"}. + */ + @Test + public void testBrowseMultipleKeys() { + String ccl = Command.to().browse("name", "age").ccl(); + Assert.assertEquals("browse [name, age]", ccl); + } + + /** + * Goal: Verify that a {@code browse} command with a + * historical timestamp renders the {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code browse} command for key {@code "name"} at timestamp + * 12345.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "browse name at 12345"}. + */ + @Test + public void testBrowseWithTimestamp() { + String ccl = Command.to().browse("name").at(Timestamp.fromMicros(12345)) + .ccl(); + Assert.assertEquals("browse name at 12345", ccl); + } + + /** + * Goal: Verify that a {@code describe} command for a + * single record renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describe} command for record {@code 1}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "describe 1"}. + */ + @Test + public void testDescribeSingleRecord() { + String ccl = Command.to().describe(1).ccl(); + Assert.assertEquals("describe 1", ccl); + } + + /** + * Goal: Verify that a {@code describe} command for + * multiple records renders a bracketed list. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describe} command for records {@code 1}, {@code 2}, + * and {@code 3}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "describe [1, 2, 3]"}. + */ + @Test + public void testDescribeMultipleRecords() { + String ccl = Command.to().describe(1, 2, 3).ccl(); + Assert.assertEquals("describe [1, 2, 3]", ccl); + } + + /** + * Goal: Verify that a {@code describe} command with a + * historical timestamp renders the {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describe} command for record {@code 1} at timestamp + * 12345.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "describe 1 at 12345"}. + */ + @Test + public void testDescribeWithTimestamp() { + String ccl = Command.to().describe(1).at(Timestamp.fromMicros(12345)) + .ccl(); + Assert.assertEquals("describe 1 at 12345", ccl); + } + + /** + * Goal: Verify that a {@code describeAll} command with no + * record arguments renders as a bare command. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describeAll} command.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "describe"}. + */ + @Test + public void testDescribeAll() { + String ccl = Command.to().describeAll().ccl(); + Assert.assertEquals("describe", ccl); + } + + /** + * Goal: Verify that a {@code trace} command for a single + * record renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code trace} command for record {@code 1}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "trace 1"}. + */ + @Test + public void testTrace() { + String ccl = Command.to().trace(1).ccl(); + Assert.assertEquals("trace 1", ccl); + } + + /** + * Goal: Verify that a {@code trace} command for multiple + * records with a timestamp renders both the bracketed record list and the + * {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code trace} command for records {@code 1} and {@code 2} at + * timestamp 12345.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "trace [1, 2] at 12345"}. + */ + @Test + public void testTraceWithTimestamp() { + String ccl = Command.to().trace(1, 2).at(Timestamp.fromMicros(12345)) + .ccl(); + Assert.assertEquals("trace [1, 2] at 12345", ccl); + } + + /** + * Goal: Verify that a {@code holds} command for multiple + * records renders a bracketed list. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code holds} command for records {@code 1} and + * {@code 2}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "holds [1, 2]"}. + */ + @Test + public void testHolds() { + String ccl = Command.to().holds(1, 2).ccl(); + Assert.assertEquals("holds [1, 2]", ccl); + } + + /** + * Goal: Verify that a {@code jsonify} command for a single + * record renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command for record {@code 1}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "jsonify 1"}. + */ + @Test + public void testJsonify() { + String ccl = Command.to().jsonify(1).ccl(); + Assert.assertEquals("jsonify 1", ccl); + } + + /** + * Goal: Verify that a {@code jsonify} command with the + * {@code identifier} flag and a timestamp renders both components in CCL + * grammar order ({@code with $id$} before {@code at}). + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command for record {@code 1} with the + * identifier flag enabled and at timestamp 12345.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "jsonify 1 with $id$ at 12345"}. + */ + @Test + public void testJsonifyWithTimestampAndIdentifier() { + String ccl = Command.to().jsonify(1).identifier() + .at(Timestamp.fromMicros(12345)).ccl(); + Assert.assertEquals("jsonify 1 with $id$ at 12345", ccl); + } + + /** + * Goal: Verify that a {@code jsonify} command with only + * the {@code identifier} flag (no timestamp) renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code jsonify} command for record {@code 1} with the + * identifier flag enabled.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "jsonify 1 with $id$"}. + */ + @Test + public void testJsonifyWithIdentifierOnly() { + String ccl = Command.to().jsonify(1).identifier().ccl(); + Assert.assertEquals("jsonify 1 with $id$", ccl); + } + + /** + * Goal: Verify that a {@code describe} command for all + * records with a historical timestamp renders the {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code describeAll} command at timestamp 12345.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "describe at 12345"}. + */ + @Test + public void testDescribeAllWithTimestamp() { + String ccl = Command.to().describeAll().at(Timestamp.fromMicros(12345)) + .ccl(); + Assert.assertEquals("describe at 12345", ccl); + } + + /** + * Goal: Verify that the {@code ping} command renders + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code ping} command.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "ping"}. + */ + @Test + public void testPing() { + String ccl = Command.to().ping().ccl(); + Assert.assertEquals("ping", ccl); + } + + /** + * Goal: Verify that the {@code stage} command renders + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code stage} command.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "stage"}. + */ + @Test + public void testStage() { + String ccl = Command.to().stage().ccl(); + Assert.assertEquals("stage", ccl); + } + + /** + * Goal: Verify that the {@code commit} command renders + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code commit} command.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "commit"}. + */ + @Test + public void testCommit() { + String ccl = Command.to().commit().ccl(); + Assert.assertEquals("commit", ccl); + } + + /** + * Goal: Verify that the {@code abort} command renders + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code abort} command.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "abort"}. + */ + @Test + public void testAbort() { + String ccl = Command.to().abort().ccl(); + Assert.assertEquals("abort", ccl); + } + + /** + * Goal: Verify that the {@code inventory} command renders + * correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code inventory} command.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "inventory"}. + */ + @Test + public void testInventory() { + String ccl = Command.to().inventory().ccl(); + Assert.assertEquals("inventory", ccl); + } + +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/LinkCommandTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/LinkCommandTest.java new file mode 100644 index 000000000..92b924400 --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/LinkCommandTest.java @@ -0,0 +1,336 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import org.junit.Assert; +import org.junit.Test; + +import com.cinchapi.concourse.Timestamp; + +/** + * Unit tests for link-related and verification {@link Command Commands}: + * {@code link}, {@code unlink}, {@code verify}, {@code verifyAndSwap}, + * {@code verifyOrSet}, {@code findOrAdd}, and {@code findOrInsert}. + * + * @author Jeff Nelson + */ +public class LinkCommandTest { + + /** + * Goal: Verify that a {@code link} command renders the + * correct CCL for a single destination record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code link} command with key {@code "friends"}, source + * record {@code 1}, and destination record {@code 2}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "link friends from 1 to 2"}. + */ + @Test + public void testLinkSingleDestination() { + String ccl = Command.to().link("friends").from(1).to(2).ccl(); + Assert.assertEquals("link friends from 1 to 2", ccl); + } + + /** + * Goal: Verify that a {@code link} command renders the + * correct CCL for multiple destination records. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code link} command with key {@code "friends"}, source + * record {@code 1}, and destination records {@code 2} and {@code 3}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "link friends from 1 to [2, 3]"}. + */ + @Test + public void testLinkMultipleDestinations() { + String ccl = Command.to().link("friends").from(1).to(2, 3).ccl(); + Assert.assertEquals("link friends from 1 to [2, 3]", ccl); + } + + /** + * Goal: Verify that an {@code unlink} command renders the + * correct CCL for removing a directional relationship. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code unlink} command with key {@code "friends"}, source + * record {@code 1}, and destination record {@code 2}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "unlink friends from 1 to 2"}. + */ + @Test + public void testUnlink() { + String ccl = Command.to().unlink("friends").from(1).to(2).ccl(); + Assert.assertEquals("unlink friends from 1 to 2", ccl); + } + + /** + * Goal: Verify that a {@code verify} command renders the + * correct CCL for checking a key/value association in a record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verify} command with key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "verify name as \"jeff\" in 1"}. + */ + @Test + public void testVerify() { + String ccl = Command.to().verify("name").as("jeff").in(1).ccl(); + Assert.assertEquals("verify name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that a {@code verify} command with a + * historical {@link Timestamp} renders the correct CCL including an + * {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verify} command with key {@code "name"}, value + * {@code "jeff"}, record {@code 1}, and a {@link Timestamp} created from + * {@code 12345} microseconds.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "verify name as \"jeff\" in 1 at 12345"}. + */ + @Test + public void testVerifyWithTimestamp() { + String ccl = Command.to().verify("name").as("jeff").in(1) + .at(Timestamp.fromMicros(12345)).ccl(); + Assert.assertEquals("verify name as \"jeff\" in 1 at 12345", ccl); + } + + /** + * Goal: Verify that a {@code verifyAndSwap} command + * renders the correct CCL with the expected value, record, and replacement + * value. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verifyAndSwap} command with key {@code "name"}, + * expected value {@code "jeff"}, record {@code 1}, and replacement value + * {@code "bob"}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "verifyAndSwap name as \"jeff\" in 1 with \"bob\""}. + */ + @Test + public void testVerifyAndSwap() { + String ccl = Command.to().verifyAndSwap("name").as("jeff").in(1) + .with("bob").ccl(); + Assert.assertEquals( + "verifyAndSwap name as \"jeff\" in 1" + " with \"bob\"", ccl); + } + + /** + * Goal: Verify that a {@code verifyOrSet} command renders + * the correct CCL for checking and conditionally setting a key/value in a + * record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verifyOrSet} command with key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "verifyOrSet name as \"jeff\" in 1"}. + */ + @Test + public void testVerifyOrSet() { + String ccl = Command.to().verifyOrSet("name").as("jeff").in(1).ccl(); + Assert.assertEquals("verifyOrSet name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that a {@code findOrAdd} command renders + * the correct CCL for atomically finding or adding a key/value pair. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code findOrAdd} command with key {@code "name"} and value + * {@code "jeff"}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "findOrAdd name as \"jeff\""}. + */ + @Test + public void testFindOrAdd() { + String ccl = Command.to().findOrAdd("name").as("jeff").ccl(); + Assert.assertEquals("findOrAdd name as \"jeff\"", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code verify} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verify} command with key {@code "name"}, value + * {@code "jeff"}, using {@code within(1)} instead of {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "verify name as \"jeff\" in 1"}. + */ + @Test + public void testVerifyWithinRecordAlias() { + String ccl = Command.to().verify("name").as("jeff").within(1).ccl(); + Assert.assertEquals("verify name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code verifyAndSwap} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verifyAndSwap} command with key {@code "name"}, + * expected value {@code "jeff"}, using {@code within(1)} instead of + * {@code in(1)}, then {@code with("bob")}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "verifyAndSwap name as \"jeff\" in 1 with \"bob\""}. + */ + @Test + public void testVerifyAndSwapWithinRecordAlias() { + String ccl = Command.to().verifyAndSwap("name").as("jeff").within(1) + .with("bob").ccl(); + Assert.assertEquals( + "verifyAndSwap name as \"jeff\" in 1" + " with \"bob\"", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code verifyOrSet} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code verifyOrSet} command with key {@code "name"}, value + * {@code "jeff"}, using {@code within(1)} instead of {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "verifyOrSet name as \"jeff\" in 1"}. + */ + @Test + public void testVerifyOrSetWithinRecordAlias() { + String ccl = Command.to().verifyOrSet("name").as("jeff").within(1) + .ccl(); + Assert.assertEquals("verifyOrSet name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that a {@code findOrInsert} command renders + * the correct CCL for a raw CCL condition and JSON data. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code findOrInsert} command with condition + * {@code "name = jeff"} and JSON {@code "{\"name\":\"jeff\"}"}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is {@code "findOrInsert name = + * jeff '{\"name\":\"jeff\"}'"}. + */ + @Test + public void testFindOrInsertWithCondition() { + String json = "{\"name\":\"jeff\"}"; + String ccl = Command.to().findOrInsert("name = jeff").json(json).ccl(); + Assert.assertEquals("findOrInsert name = jeff '" + json + "'", ccl); + } + + /** + * Goal: Verify that a {@code findOrInsert} command with a + * historical timestamp renders the {@code at} clause between the condition + * and the JSON data. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code findOrInsert} command with condition + * {@code "name = jeff"}, timestamp 12345, and JSON + * {@code "{\"name\":\"jeff\"}"}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is {@code "findOrInsert name = + * jeff at 12345 '{\"name\":\"jeff\"}'"}. + */ + @Test + public void testFindOrInsertWithTimestamp() { + String json = "{\"name\":\"jeff\"}"; + String ccl = Command.to().findOrInsert("name = jeff") + .at(Timestamp.fromMicros(12345)).json(json).ccl(); + Assert.assertEquals("findOrInsert name = jeff at 12345 '" + json + "'", + ccl); + } + +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/QueryCommandTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/QueryCommandTest.java new file mode 100644 index 000000000..343400f7d --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/QueryCommandTest.java @@ -0,0 +1,554 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import org.junit.Assert; +import org.junit.Test; + +import com.cinchapi.concourse.Timestamp; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.lang.sort.Order; + +/** + * Unit tests for query {@link Command} builders including {@code find}, + * {@code select}, {@code get}, and {@code navigate}. + * + * @author Jeff Nelson + */ +public class QueryCommandTest { + + /** + * Goal: Verify that a {@code find} command with a raw CCL + * condition renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with the CCL string + * {@code "age > 30"}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "find age > 30"}. + */ + @Test + public void testFindWithCclCondition() { + String ccl = Command.to().find("age > 30").ccl(); + Assert.assertEquals("find age > 30", ccl); + } + + /** + * Goal: Verify that a {@code find} command with a + * historical {@link Timestamp} appends the correct {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with the CCL string {@code "age > 30"} + * and pin it to {@code Timestamp.fromMicros(12345)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "find age > 30 at 12345"}. + */ + @Test + public void testFindWithTimestamp() { + String ccl = Command.to().find("age > 30") + .at(Timestamp.fromMicros(12345)).ccl(); + Assert.assertEquals("find age > 30 at 12345", ccl); + } + + /** + * Goal: Verify that a {@code find} command with an + * {@link Order} and {@link Page} renders the {@code order by} and + * {@code page} clauses. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code find} command with condition {@code "age > 30"}, + * ordered by {@code "name"}, and paged with size 10.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "find age > 30 order by name page 1 size 10"}. + */ + @Test + public void testFindWithOrderAndPage() { + String ccl = Command.to().find("age > 30") + .order(Order.by("name").build()).page(Page.sized(10)).ccl(); + Assert.assertEquals("find age > 30 order by name page 1 size 10", ccl); + } + + /** + * Goal: Verify that a {@code select} command with multiple + * keys and multiple records renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for keys {@code "name"} and + * {@code "age"} from records {@code 1}, {@code 2}, and {@code 3}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "select [name, age] from [1, 2, 3]"}. + */ + @Test + public void testSelectKeysFromRecords() { + String ccl = Command.to().select("name", "age").from(1, 2, 3).ccl(); + Assert.assertEquals("select [name, age] from [1, 2, 3]", ccl); + } + + /** + * Goal: Verify that a {@code select} command for all keys + * from a single record renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code selectAll} command from record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "select 1"}. + */ + @Test + public void testSelectAllKeysFromRecord() { + String ccl = Command.to().selectAll().from(1).ccl(); + Assert.assertEquals("select 1", ccl); + } + + /** + * Goal: Verify that a {@code select} command with a CCL + * {@code where} clause renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} with condition + * {@code "status = active"}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "select name where status = active"}. + */ + @Test + public void testSelectWithCondition() { + String ccl = Command.to().select("name").where("status = active").ccl(); + Assert.assertEquals("select name where status = active", ccl); + } + + /** + * Goal: Verify that a {@code get} command with a single + * key and a single record renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for key {@code "name"} from record + * {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "get name from 1"}. + */ + @Test + public void testGetFromRecord() { + String ccl = Command.to().get("name").from(1).ccl(); + Assert.assertEquals("get name from 1", ccl); + } + + /** + * Goal: Verify that a {@code get} command for all keys + * from multiple records renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code getAll} command from records {@code 1} and + * {@code 2}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "get [1, 2]"}. + */ + @Test + public void testGetAllKeysFromRecords() { + String ccl = Command.to().getAll().from(1, 2).ccl(); + Assert.assertEquals("get [1, 2]", ccl); + } + + /** + * Goal: Verify that a {@code get} command with multiple + * keys and a CCL {@code where} clause renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for keys {@code "name"} and {@code "age"} + * with condition {@code "status = active"}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "get [name, age] where status = active"}. + */ + @Test + public void testGetWithCondition() { + String ccl = Command.to().get("name", "age").where("status = active") + .ccl(); + Assert.assertEquals("get [name, age] where status = active", ccl); + } + + /** + * Goal: Verify that a {@code navigate} command with a + * navigation key and a record renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} from + * record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "navigate friends.name from 1"}. + */ + @Test + public void testNavigateFromRecords() { + String ccl = Command.to().navigate("friends.name").from(1).ccl(); + Assert.assertEquals("navigate friends.name from 1", ccl); + } + + /** + * Goal: Verify that a {@code navigate} command with a CCL + * {@code where} clause renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} with + * condition {@code "active = true"}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "navigate friends.name where active = true"}. + */ + @Test + public void testNavigateWithCondition() { + String ccl = Command.to().navigate("friends.name") + .where("active = true").ccl(); + Assert.assertEquals("navigate friends.name where active = true", ccl); + } + + /** + * Goal: Verify that a {@code navigate} command with a + * historical {@link Timestamp} appends the correct {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} from + * record {@code 1}, pinned to {@code Timestamp.fromMicros(12345)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "navigate friends.name from 1 at 12345"}. + */ + @Test + public void testNavigateWithTimestamp() { + String ccl = Command.to().navigate("friends.name").from(1) + .at(Timestamp.fromMicros(12345)).ccl(); + Assert.assertEquals("navigate friends.name from 1 at 12345", ccl); + } + + /** + * Goal: Verify that a single-key {@code select} command + * renders correctly without brackets. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} from record + * {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "select name from 1"}. + */ + @Test + public void testSelectSingleKeyFromRecord() { + String ccl = Command.to().select("name").from(1).ccl(); + Assert.assertEquals("select name from 1", ccl); + } + + /** + * Goal: Verify that the {@code in()} alias on + * {@code select} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} using + * {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "select name from 1"}. + */ + @Test + public void testSelectKeyInRecordAlias() { + String ccl = Command.to().select("name").in(1).ccl(); + Assert.assertEquals("select name from 1", ccl); + } + + /** + * Goal: Verify that the {@code in()} alias on + * {@code selectAll()} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code selectAll} command using {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "select 1"}. + */ + @Test + public void testSelectAllInRecordAlias() { + String ccl = Command.to().selectAll().in(1).ccl(); + Assert.assertEquals("select 1", ccl); + } + + /** + * Goal: Verify that the {@code in()} alias on {@code get} + * produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for key {@code "name"} using + * {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "get name from 1"}. + */ + @Test + public void testGetKeyInRecordAlias() { + String ccl = Command.to().get("name").in(1).ccl(); + Assert.assertEquals("get name from 1", ccl); + } + + /** + * Goal: Verify that the {@code in()} alias on + * {@code navigate} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} using + * {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "navigate friends.name from 1"}. + */ + @Test + public void testNavigateInRecordAlias() { + String ccl = Command.to().navigate("friends.name").in(1).ccl(); + Assert.assertEquals("navigate friends.name from 1", ccl); + } + + /** + * Goal: Verify that a {@code selectAll} command with a CCL + * condition renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code selectAll} command with condition + * {@code "active = true"}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "select where active = true"}. + */ + @Test + public void testSelectAllWithCondition() { + String ccl = Command.to().selectAll().where("active = true").ccl(); + Assert.assertEquals("select where active = true", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code select} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code select} command for key {@code "name"} using + * {@code within(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "select name from 1"}. + */ + @Test + public void testSelectKeyWithinRecordAlias() { + String ccl = Command.to().select("name").within(1).ccl(); + Assert.assertEquals("select name from 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code selectAll()} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code selectAll} command using {@code within(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "select 1"}. + */ + @Test + public void testSelectAllWithinRecordAlias() { + String ccl = Command.to().selectAll().within(1).ccl(); + Assert.assertEquals("select 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code get} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code get} command for key {@code "name"} using + * {@code within(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "get name from 1"}. + */ + @Test + public void testGetKeyWithinRecordAlias() { + String ccl = Command.to().get("name").within(1).ccl(); + Assert.assertEquals("get name from 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code getAll()} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code getAll} command using {@code within(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is {@code "get 1"}. + */ + @Test + public void testGetAllWithinRecordAlias() { + String ccl = Command.to().getAll().within(1).ccl(); + Assert.assertEquals("get 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code navigate} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code navigate} command for key {@code "friends.name"} using + * {@code within(1)}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "navigate friends.name from 1"}. + */ + @Test + public void testNavigateWithinRecordAlias() { + String ccl = Command.to().navigate("friends.name").within(1).ccl(); + Assert.assertEquals("navigate friends.name from 1", ccl); + } + + /** + * Goal: Verify that a {@code getAll} command with a CCL + * condition renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code getAll} command with condition + * {@code "active = true"}.
  • + *
  • Call {@code ccl()} on the resulting command.
  • + *
+ *

+ * Expected: The CCL output is + * {@code "get where active = true"}. + */ + @Test + public void testGetAllWithCondition() { + String ccl = Command.to().getAll().where("active = true").ccl(); + Assert.assertEquals("get where active = true", ccl); + } + +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/TemporalCommandTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/TemporalCommandTest.java new file mode 100644 index 000000000..d55417454 --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/TemporalCommandTest.java @@ -0,0 +1,684 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import org.junit.Assert; +import org.junit.Test; + +import com.cinchapi.concourse.Timestamp; + +/** + * Unit tests for temporal {@link Command Commands} including {@code chronicle}, + * {@code diff}, {@code audit}, {@code revert}, {@code reconcile}, + * {@code consolidate}, and {@code calculate}. + * + * @author Jeff Nelson + */ +public class TemporalCommandTest { + + /** + * Goal: Verify that a {@code chronicle} command renders + * the key and record in CCL. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command for key {@code "name"} in record + * {@code 1}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "chronicle name in 1"}. + */ + @Test + public void testChronicle() { + String ccl = Command.to().chronicle("name").in(1).ccl(); + Assert.assertEquals("chronicle name in 1", ccl); + } + + /** + * Goal: Verify that a {@code chronicle} command with a + * start timestamp renders the {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command for key {@code "name"} in record + * {@code 1} at timestamp 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string contains {@code "at 100"}. + */ + @Test + public void testChronicleWithTimestamp() { + String ccl = Command.to().chronicle("name").in(1) + .at(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("chronicle name in 1 at 100", ccl); + } + + /** + * Goal: Verify that a {@code chronicle} command with a + * start and end timestamp renders both {@code at} clauses. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command for key {@code "name"} in record + * {@code 1} with start timestamp 100 and end timestamp 200.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string contains both timestamps. + */ + @Test + public void testChronicleWithRange() { + String ccl = Command.to().chronicle("name").in(1) + .at(Timestamp.fromMicros(100)).at(Timestamp.fromMicros(200)) + .ccl(); + Assert.assertEquals("chronicle name in 1 at 100 at 200", ccl); + } + + /** + * Goal: Verify that a record-scoped {@code diff} command + * with a start timestamp renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for record {@code 1} at timestamp + * 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "diff 1 at 100"}. + */ + @Test + public void testDiffRecord() { + String ccl = Command.to().diff(1L).at(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("diff 1 at 100", ccl); + } + + /** + * Goal: Verify that a record-scoped {@code diff} command + * with a start and end timestamp renders both {@code at} clauses. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for record {@code 1} with start + * timestamp 100 and end timestamp 200.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string contains both timestamps. + */ + @Test + public void testDiffRecordRange() { + String ccl = Command.to().diff(1L).at(Timestamp.fromMicros(100)) + .at(Timestamp.fromMicros(200)).ccl(); + Assert.assertEquals("diff 1 at 100 at 200", ccl); + } + + /** + * Goal: Verify that a key-scoped {@code diff} command + * renders the key, record, and start timestamp. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} in record + * {@code 1} at timestamp 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "diff name in 1 at 100"}. + */ + @Test + public void testDiffKeyInRecord() { + String ccl = Command.to().diff("name").in(1) + .at(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("diff name in 1 at 100", ccl); + } + + /** + * Goal: Verify that a key-scoped {@code diff} command with + * a start and end timestamp renders both {@code at} clauses. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} in record + * {@code 1} with start timestamp 100 and end timestamp 200.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "diff name in 1 at 100 at 200"}. + */ + @Test + public void testDiffKeyInRecordRange() { + String ccl = Command.to().diff("name").in(1) + .at(Timestamp.fromMicros(100)).at(Timestamp.fromMicros(200)) + .ccl(); + Assert.assertEquals("diff name in 1 at 100 at 200", ccl); + } + + /** + * Goal: Verify that a record-scoped {@code audit} command + * renders the record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for record {@code 1}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "audit 1"}. + */ + @Test + public void testAuditRecord() { + String ccl = Command.to().audit(1L).ccl(); + Assert.assertEquals("audit 1", ccl); + } + + /** + * Goal: Verify that a record-scoped {@code audit} command + * with a start timestamp renders the {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for record {@code 1} at timestamp + * 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "audit 1 at 100"}. + */ + @Test + public void testAuditRecordWithTimestamp() { + String ccl = Command.to().audit(1L).at(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("audit 1 at 100", ccl); + } + + /** + * Goal: Verify that a key-scoped {@code audit} command + * renders the key and record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for key {@code "name"} in record + * {@code 1}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "audit name in 1"}. + */ + @Test + public void testAuditKeyInRecord() { + String ccl = Command.to().audit("name").in(1).ccl(); + Assert.assertEquals("audit name in 1", ccl); + } + + /** + * Goal: Verify that a {@code revert} command renders keys, + * records, and the target timestamp. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code revert} command for keys {@code "name"} and + * {@code "age"} in records {@code 1} and {@code 2} to timestamp 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string contains {@code "revert"}, both + * keys, both records, and {@code "at 100"}. + */ + @Test + public void testRevert() { + String ccl = Command.to().revert("name", "age").in(1, 2) + .to(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("revert [name, age] in [1, 2] at 100", ccl); + } + + /** + * Goal: Verify that a {@code reconcile} command renders + * the key, record, and values. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code reconcile} command for key {@code "name"} in record + * {@code 1} with values {@code "jeff"} and {@code "bob"}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string contains + * {@code "reconcile name in 1 with"}. + */ + @Test + public void testReconcile() { + String ccl = Command.to().reconcile("name").in(1).with("jeff", "bob") + .ccl(); + Assert.assertTrue(ccl.contains("reconcile name in 1 with")); + } + + /** + * Goal: Verify that a {@code consolidate} command renders + * all records. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code consolidate} command for records {@code 1}, {@code 2}, + * and {@code 3}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "consolidate 1 [2, 3]"}. + */ + @Test + public void testConsolidate() { + String ccl = Command.to().consolidate(1, 2, 3).ccl(); + Assert.assertEquals("consolidate 1 [2, 3]", ccl); + } + + /** + * Goal: Verify that a basic {@code calculate} command + * renders the function and key. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "sum"} and key + * {@code "salary"}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "calculate sum salary"}. + */ + @Test + public void testCalculateBasic() { + String ccl = Command.to().calculate("sum", "salary").ccl(); + Assert.assertEquals("calculate sum salary", ccl); + } + + /** + * Goal: Verify that a {@code calculate} command scoped to + * records renders the {@code in} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "avg"} and key + * {@code "age"} in records {@code 1} and {@code 2}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "calculate avg age in [1, 2]"}. + */ + @Test + public void testCalculateInRecords() { + String ccl = Command.to().calculate("avg", "age").in(1, 2).ccl(); + Assert.assertEquals("calculate avg age in [1, 2]", ccl); + } + + /** + * Goal: Verify that a {@code calculate} command with a CCL + * condition renders the {@code where} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "count"} and + * key {@code "status"} where {@code "active = true"}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string contains {@code "where"}. + */ + @Test + public void testCalculateWithCondition() { + String ccl = Command.to().calculate("count", "status") + .where("active = true").ccl(); + Assert.assertTrue(ccl.contains("where")); + Assert.assertEquals("calculate count status where active = true", ccl); + } + + /** + * Goal: Verify that a {@code calculate} command with a + * historical timestamp renders the {@code at} clause. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "sum"} and key + * {@code "salary"} at timestamp 12345.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "calculate sum salary at 12345"}. + */ + @Test + public void testCalculateWithTimestamp() { + String ccl = Command.to().calculate("sum", "salary") + .at(Timestamp.fromMicros(12345)).ccl(); + Assert.assertEquals("calculate sum salary at 12345", ccl); + } + + /** + * Goal: Verify that the {@code from()} alias on + * {@code revert} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code revert} command for key {@code "name"} using + * {@code from(1)} instead of {@code in(1)}, then {@code to()} with + * timestamp 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "revert name in 1 at 100"}. + */ + @Test + public void testRevertFromRecordAlias() { + String ccl = Command.to().revert("name").from(1) + .to(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("revert name in 1 at 100", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code chronicle} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code chronicle} command for key {@code "name"} using + * {@code within(1)} instead of {@code in(1)}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "chronicle name in 1"}. + */ + @Test + public void testChronicleWithinRecordAlias() { + String ccl = Command.to().chronicle("name").within(1).ccl(); + Assert.assertEquals("chronicle name in 1", ccl); + } + + /** + * Goal: Verify that a key-only {@code diff} command (no + * record) with a single timestamp renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} at timestamp + * 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "diff name at 100"}. + */ + @Test + public void testDiffKeyOnly() { + String ccl = Command.to().diff("name").at(Timestamp.fromMicros(100)) + .ccl(); + Assert.assertEquals("diff name at 100", ccl); + } + + /** + * Goal: Verify that a key-only {@code diff} command with a + * start and end timestamp renders both {@code at} clauses. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} at start + * timestamp 100 and end timestamp 200.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "diff name at 100 at 200"}. + */ + @Test + public void testDiffKeyOnlyRange() { + String ccl = Command.to().diff("name").at(Timestamp.fromMicros(100)) + .at(Timestamp.fromMicros(200)).ccl(); + Assert.assertEquals("diff name at 100 at 200", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code diff} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code diff} command for key {@code "name"} using + * {@code within(1)} instead of {@code in(1)}, then pin to timestamp + * 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "diff name in 1 at 100"}. + */ + @Test + public void testDiffKeyWithinRecordAlias() { + String ccl = Command.to().diff("name").within(1) + .at(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("diff name in 1 at 100", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code audit} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code audit} command for key {@code "name"} using + * {@code within(1)} instead of {@code in(1)}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is {@code "audit name in 1"}. + */ + @Test + public void testAuditKeyWithinRecordAlias() { + String ccl = Command.to().audit("name").within(1).ccl(); + Assert.assertEquals("audit name in 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code revert} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code revert} command for key {@code "name"} using + * {@code within(1)} instead of {@code in(1)}, then {@code to()} with + * timestamp 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "revert name in 1 at 100"}. + */ + @Test + public void testRevertWithinRecordAlias() { + String ccl = Command.to().revert("name").within(1) + .to(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("revert name in 1 at 100", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code revert} works for multiple records. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code revert} command for key {@code "name"} using + * {@code within(1, 2)} instead of {@code in(1, 2)}, then {@code to()} with + * timestamp 100.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "revert name in [1, 2] at 100"}. + */ + @Test + public void testRevertWithinMultipleRecordsAlias() { + String ccl = Command.to().revert("name").within(1, 2) + .to(Timestamp.fromMicros(100)).ccl(); + Assert.assertEquals("revert name in [1, 2] at 100", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code reconcile} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code reconcile} command for key {@code "name"} using + * {@code within(1)} instead of {@code in(1)}, then {@code with()} + * values.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string contains + * {@code "reconcile name in 1 with"}. + */ + @Test + public void testReconcileWithinRecordAlias() { + String ccl = Command.to().reconcile("name").within(1) + .with("jeff", "bob").ccl(); + Assert.assertTrue(ccl.contains("reconcile name in 1 with")); + } + + /** + * Goal: Verify that the {@code from()} alias on + * {@code calculate} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "sum"} and key + * {@code "salary"} using {@code from(1)} instead of {@code in(1)}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "calculate sum salary in 1"}. + */ + @Test + public void testCalculateFromRecordAlias() { + String ccl = Command.to().calculate("sum", "salary").from(1).ccl(); + Assert.assertEquals("calculate sum salary in 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code calculate} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "avg"} and key + * {@code "age"} using {@code within(1, 2)} instead of + * {@code in(1, 2)}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "calculate avg age in [1, 2]"}. + */ + @Test + public void testCalculateWithinRecordsAlias() { + String ccl = Command.to().calculate("avg", "age").within(1, 2).ccl(); + Assert.assertEquals("calculate avg age in [1, 2]", ccl); + } + + /** + * Goal: Verify that a {@code calculate} command with a + * single record using the single-arg overload renders correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code calculate} command with function {@code "sum"} and key + * {@code "salary"} in record {@code 1}.
  • + *
  • Call {@code ccl()}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "calculate sum salary in 1"}. + */ + @Test + public void testCalculateInSingleRecord() { + String ccl = Command.to().calculate("sum", "salary").in(1).ccl(); + Assert.assertEquals("calculate sum salary in 1", ccl); + } + +} diff --git a/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/WriteCommandTest.java b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/WriteCommandTest.java new file mode 100644 index 000000000..1c5c944cb --- /dev/null +++ b/concourse-driver-java/src/test/java/com/cinchapi/concourse/lang/command/WriteCommandTest.java @@ -0,0 +1,536 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.lang.command; + +import org.junit.Assert; +import org.junit.Test; + +/** + * Unit tests for write {@link Command Commands}: {@code add}, {@code set}, + * {@code remove}, {@code clear}, and {@code insert}. + * + * @author Jeff Nelson + */ +public class WriteCommandTest { + + /** + * Goal: Verify that an {@code add} command renders the + * correct CCL for a key and string value. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "name"} and value + * {@code "jeff"}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "add name as \"jeff\""}. + */ + @Test + public void testAddKeyValue() { + String ccl = Command.to().add("name").as("jeff").ccl(); + Assert.assertEquals("add name as \"jeff\"", ccl); + } + + /** + * Goal: Verify that an {@code add} command renders the + * correct CCL for a key, string value, and single target record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "add name as \"jeff\" in 1"}. + */ + @Test + public void testAddKeyValueInRecord() { + String ccl = Command.to().add("name").as("jeff").in(1).ccl(); + Assert.assertEquals("add name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that an {@code add} command renders the + * correct CCL for a key, string value, and multiple target records. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "name"}, value + * {@code "jeff"}, and records {@code 1}, {@code 2}, {@code 3}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "add name as \"jeff\" in [1, 2, 3]"}. + */ + @Test + public void testAddKeyValueInMultipleRecords() { + String ccl = Command.to().add("name").as("jeff").in(1, 2, 3).ccl(); + Assert.assertEquals("add name as \"jeff\" in [1, 2, 3]", ccl); + } + + /** + * Goal: Verify that an {@code add} command renders a + * numeric value without quotes. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "age"} and integer value + * {@code 30}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is {@code "add age as 30"}. + */ + @Test + public void testAddNumericValue() { + String ccl = Command.to().add("age").as(30).ccl(); + Assert.assertEquals("add age as 30", ccl); + } + + /** + * Goal: Verify that a {@code set} command renders the + * correct CCL for a key, value, and single target record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code set} command with key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "set name as \"jeff\" in 1"}. + */ + @Test + public void testSetKeyValueInRecord() { + String ccl = Command.to().set("name").as("jeff").in(1).ccl(); + Assert.assertEquals("set name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that a {@code set} command renders the + * correct CCL for a key, value, and multiple target records. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code set} command with key {@code "name"}, value + * {@code "jeff"}, and records {@code 1}, {@code 2}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "set name as \"jeff\" in [1, 2]"}. + */ + @Test + public void testSetKeyValueInMultipleRecords() { + String ccl = Command.to().set("name").as("jeff").in(1, 2).ccl(); + Assert.assertEquals("set name as \"jeff\" in [1, 2]", ccl); + } + + /** + * Goal: Verify that a {@code remove} command renders the + * correct CCL for a key, value, and single target record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code remove} command with key {@code "name"}, value + * {@code "jeff"}, and record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "remove name as \"jeff\" from 1"}. + */ + @Test + public void testRemoveKeyValueFromRecord() { + String ccl = Command.to().remove("name").as("jeff").from(1).ccl(); + Assert.assertEquals("remove name as \"jeff\" from 1", ccl); + } + + /** + * Goal: Verify that a {@code clear} command renders the + * correct CCL for multiple keys and multiple records. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command with keys {@code "name"} and + * {@code "age"}, targeting records {@code 1} and {@code 2}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "clear [name, age] from [1, 2]"}. + */ + @Test + public void testClearKeysInRecords() { + String ccl = Command.to().clear("name", "age").from(1, 2).ccl(); + Assert.assertEquals("clear [name, age] from [1, 2]", ccl); + } + + /** + * Goal: Verify that a {@code clear} command renders the + * correct CCL for clearing entire records without specifying keys. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command targeting records {@code 1} and + * {@code 2} with no keys.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is {@code "clear [1, 2]"}. + */ + @Test + public void testClearRecords() { + String ccl = Command.to().clear(1, 2).ccl(); + Assert.assertEquals("clear [1, 2]", ccl); + } + + /** + * Goal: Verify that a {@code clear} command renders the + * correct CCL for a single key in a single record, without brackets. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command with key {@code "name"} targeting + * record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is {@code "clear name from 1"}. + */ + @Test + public void testClearSingleKeyInSingleRecord() { + String ccl = Command.to().clear("name").from(1).ccl(); + Assert.assertEquals("clear name from 1", ccl); + } + + /** + * Goal: Verify that an {@code insert} command renders the + * correct CCL for a JSON string. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON + * {@code "{\"name\":\"jeff\"}"}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string starts with {@code "insert"} + * and contains the JSON data wrapped in single quotes. + */ + @Test + public void testInsertJson() { + String json = "{\"name\":\"jeff\"}"; + String ccl = Command.to().insert(json).ccl(); + Assert.assertEquals("insert '" + json + "'", ccl); + } + + /** + * Goal: Verify that an {@code insert} command renders the + * correct CCL for a JSON string targeted at a specific record. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON + * {@code "{\"name\":\"jeff\"}"} targeting record {@code 1}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string contains {@code "insert"}, the + * JSON data, and {@code "in 1"}. + */ + @Test + public void testInsertJsonInRecord() { + String json = "{\"name\":\"jeff\"}"; + String ccl = Command.to().insert(json).in(1).ccl(); + Assert.assertEquals("insert '" + json + "' in 1", ccl); + } + + /** + * Goal: Verify that the {@code in()} alias on + * {@code remove} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code remove} command with key {@code "name"}, value + * {@code "jeff"}, and record {@code 1} using {@code in()} instead of + * {@code from()}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "remove name as \"jeff\" from 1"}. + */ + @Test + public void testRemoveKeyValueInRecordAlias() { + String ccl = Command.to().remove("name").as("jeff").in(1).ccl(); + Assert.assertEquals("remove name as \"jeff\" from 1", ccl); + } + + /** + * Goal: Verify that the {@code in()} alias on + * {@code clear} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command with key {@code "name"} using + * {@code in(1)} instead of {@code from(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is {@code "clear name from 1"}. + */ + @Test + public void testClearKeyInRecordAlias() { + String ccl = Command.to().clear("name").in(1).ccl(); + Assert.assertEquals("clear name from 1", ccl); + } + + /** + * Goal: Verify that the {@code to()} alias on {@code add} + * produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "name"}, value + * {@code "jeff"}, using {@code to(1)} instead of {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "add name as \"jeff\" in 1"}. + */ + @Test + public void testAddKeyValueToRecordAlias() { + String ccl = Command.to().add("name").as("jeff").to(1).ccl(); + Assert.assertEquals("add name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code add} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "name"}, value + * {@code "jeff"}, using {@code within(1)} instead of {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "add name as \"jeff\" in 1"}. + */ + @Test + public void testAddKeyValueWithinRecordAlias() { + String ccl = Command.to().add("name").as("jeff").within(1).ccl(); + Assert.assertEquals("add name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code set} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code set} command with key {@code "name"}, value + * {@code "jeff"}, using {@code within(1)} instead of {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "set name as \"jeff\" in 1"}. + */ + @Test + public void testSetKeyValueWithinRecordAlias() { + String ccl = Command.to().set("name").as("jeff").within(1).ccl(); + Assert.assertEquals("set name as \"jeff\" in 1", ccl); + } + + /** + * Goal: Verify that the {@code into()} alias on + * {@code insert} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON + * {@code "{\"name\":\"jeff\"}"} using {@code into(1)} instead of + * {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string contains {@code "in 1"}. + */ + @Test + public void testInsertJsonIntoRecordAlias() { + String json = "{\"name\":\"jeff\"}"; + String ccl = Command.to().insert(json).into(1).ccl(); + Assert.assertEquals("insert '" + json + "' in 1", ccl); + } + + /** + * Goal: Verify that the {@code to()} alias on + * {@code insert} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON + * {@code "{\"name\":\"jeff\"}"} using {@code to(1)} instead of + * {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string contains {@code "in 1"}. + */ + @Test + public void testInsertJsonToRecordAlias() { + String json = "{\"name\":\"jeff\"}"; + String ccl = Command.to().insert(json).to(1).ccl(); + Assert.assertEquals("insert '" + json + "' in 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code insert} produces the same CCL as {@code in()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code insert} command with JSON + * {@code "{\"name\":\"jeff\"}"} using {@code within(1)} instead of + * {@code in(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string contains {@code "in 1"}. + */ + @Test + public void testInsertJsonWithinRecordAlias() { + String json = "{\"name\":\"jeff\"}"; + String ccl = Command.to().insert(json).within(1).ccl(); + Assert.assertEquals("insert '" + json + "' in 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code remove} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code remove} command with key {@code "name"}, value + * {@code "jeff"}, using {@code within(1)} instead of {@code from(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is + * {@code "remove name as \"jeff\" from 1"}. + */ + @Test + public void testRemoveKeyValueWithinRecordAlias() { + String ccl = Command.to().remove("name").as("jeff").within(1).ccl(); + Assert.assertEquals("remove name as \"jeff\" from 1", ccl); + } + + /** + * Goal: Verify that the {@code within()} alias on + * {@code clear} produces the same CCL as {@code from()}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build a {@code clear} command with key {@code "name"} using + * {@code within(1)} instead of {@code from(1)}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string is {@code "clear name from 1"}. + */ + @Test + public void testClearKeyWithinRecordAlias() { + String ccl = Command.to().clear("name").within(1).ccl(); + Assert.assertEquals("clear name from 1", ccl); + } + + /** + * Goal: Verify that an {@code add} command with a string + * value containing double quotes properly escapes them. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Build an {@code add} command with key {@code "title"} and value + * {@code "say \"hello\""}.
  • + *
  • Call {@code ccl()} on the resulting {@link Command}.
  • + *
+ *

+ * Expected: The CCL string contains the escaped double + * quotes. + */ + @Test + public void testAddValueWithQuotes() { + String ccl = Command.to().add("title").as("say \"hello\"").ccl(); + Assert.assertEquals("add title as \"say \\\"hello\\\"\"", ccl); + } + +} diff --git a/concourse-integration-tests/src/test/java/com/cinchapi/concourse/CommandExecutionTest.java b/concourse-integration-tests/src/test/java/com/cinchapi/concourse/CommandExecutionTest.java new file mode 100644 index 000000000..ed087786e --- /dev/null +++ b/concourse-integration-tests/src/test/java/com/cinchapi/concourse/CommandExecutionTest.java @@ -0,0 +1,310 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse; + +import java.util.List; +import java.util.Set; + +import org.junit.Assert; +import org.junit.Test; + +import com.cinchapi.concourse.lang.command.Command; +import com.cinchapi.concourse.lang.command.CommandGroup; +import com.cinchapi.concourse.test.ConcourseIntegrationTest; +import com.cinchapi.concourse.test.Variables; + +/** + * Integration tests for the {@code exec}, {@code submit}, and {@code prepare} + * command execution APIs. + * + * @author Jeff Nelson + */ +public class CommandExecutionTest extends ConcourseIntegrationTest { + + /** + * Goal: Verify that {@code exec} with a single add command + * returns the created record id. + *

+ * Start state: An empty database. + *

+ * Workflow: + *

    + *
  • Build an add command for a key and value.
  • + *
  • Execute it with {@code exec}.
  • + *
  • Query the database to verify the data was written.
  • + *
+ *

+ * Expected: {@code exec} returns a non-null record id, and + * the value is stored at that record. + */ + @Test + public void testExecSingleAddCommand() { + String key = Variables.register("key", "name"); + String value = Variables.register("value", "Jeff"); + Command command = Command.to().add(key).as(value); + Object result = client.exec(command); + Assert.assertNotNull(result); + long record = ((Number) result).longValue(); + Assert.assertTrue(record > 0); + Assert.assertTrue(client.verify(key, value, record)); + } + + /** + * Goal: Verify that {@code exec} with multiple commands + * returns only the last result. + *

+ * Start state: An empty database. + *

+ * Workflow: + *

    + *
  • Build two add commands for distinct key-value-record triples.
  • + *
  • Execute both with {@code exec}.
  • + *
  • Verify the result corresponds to the last command.
  • + *
+ *

+ * Expected: {@code exec} returns the result of the second + * (last) command, and both writes are persisted. + */ + @Test + public void testExecMultipleCommandsReturnsLast() { + Command cmd1 = Command.to().add("name").as("Alice").in(1); + Command cmd2 = Command.to().add("name").as("Bob").in(2); + Object result = client.exec(cmd1, cmd2); + Assert.assertTrue((Boolean) result); + Assert.assertTrue(client.verify("name", "Alice", 1)); + Assert.assertTrue(client.verify("name", "Bob", 2)); + } + + /** + * Goal: Verify that {@code submit} returns a result for + * each command. + *

+ * Start state: An empty database. + *

+ * Workflow: + *

    + *
  • Build two add commands.
  • + *
  • Submit both with {@code submit}.
  • + *
  • Check the result list size and contents.
  • + *
+ *

+ * Expected: The result list has two entries, each being + * the boolean result of the respective add. + */ + @Test + public void testSubmitReturnsAllResults() { + Command cmd1 = Command.to().add("name").as("Alice").in(1); + Command cmd2 = Command.to().add("age").as(30).in(1); + List results = client.submit(cmd1, cmd2); + Assert.assertEquals(2, results.size()); + Assert.assertTrue((Boolean) results.get(0)); + Assert.assertTrue((Boolean) results.get(1)); + Assert.assertTrue(client.verify("name", "Alice", 1)); + Assert.assertTrue(client.verify("age", 30, 1)); + } + + /** + * Goal: Verify that {@code prepare()} collects commands + * and {@code submit(group)} executes them as a batch. + *

+ * Start state: An empty database. + *

+ * Workflow: + *

    + *
  • Create a {@link CommandGroup} via {@code client.prepare()}.
  • + *
  • Add several operations to the group.
  • + *
  • Submit the group.
  • + *
  • Verify all operations took effect.
  • + *
+ *

+ * Expected: All grouped operations are executed and + * visible in the database. + */ + @Test + public void testGroupSubmit() { + CommandGroup group = client.prepare(); + group.add("name", "Alice", 1); + group.add("age", 25, 1); + group.add("name", "Bob", 2); + List results = client.submit(group); + Assert.assertEquals(3, results.size()); + Assert.assertTrue(client.verify("name", "Alice", 1)); + Assert.assertTrue(client.verify("age", 25, 1)); + Assert.assertTrue(client.verify("name", "Bob", 2)); + } + + /** + * Goal: Verify that a batch can include STAGE and COMMIT + * to wrap operations in a transaction. + *

+ * Start state: An empty database with no active + * transaction. + *

+ * Workflow: + *

    + *
  • Build a command list: stage, add, add, commit.
  • + *
  • Submit the batch.
  • + *
  • Verify the adds are visible.
  • + *
+ *

+ * Expected: The batch starts and commits a transaction + * internally, and both adds are persisted. + */ + @Test + public void testSubmitWithStageAndCommit() { + Command stage = Command.to().stage(); + Command add1 = Command.to().add("x").as(1).in(100); + Command add2 = Command.to().add("y").as(2).in(100); + Command commit = Command.to().commit(); + List results = client.submit(stage, add1, add2, commit); + Assert.assertEquals(4, results.size()); + Assert.assertTrue(client.verify("x", 1, 100)); + Assert.assertTrue(client.verify("y", 2, 100)); + } + + /** + * Goal: Verify that exec within an existing staged + * transaction respects the transaction context. + *

+ * Start state: A staged transaction on the client. + *

+ * Workflow: + *

    + *
  • Stage a transaction on the client.
  • + *
  • Execute add commands via {@code exec}.
  • + *
  • Commit the transaction.
  • + *
  • Verify the data is persisted.
  • + *
+ *

+ * Expected: The exec operations participate in the + * client's transaction and are committed together. + */ + @Test + public void testExecWithinTransaction() { + client.stage(); + client.add("a", 1, 10); + client.exec(Command.to().add("b").as(2).in(10)); + client.commit(); + Assert.assertTrue(client.verify("a", 1, 10)); + Assert.assertTrue(client.verify("b", 2, 10)); + } + + /** + * Goal: Verify that a select command can be executed via + * {@code exec} and returns the expected data. + *

+ * Start state: A record with known key-value pairs. + *

+ * Workflow: + *

    + *
  • Add data to a record using the standard API.
  • + *
  • Execute a select command via {@code exec}.
  • + *
  • Verify the result contains the expected data.
  • + *
+ *

+ * Expected: The exec result matches the data returned by a + * direct {@code select} call. + */ + @Test + @SuppressWarnings("unchecked") + public void testExecSelectCommand() { + client.add("name", "Alice", 1); + client.add("age", 30, 1); + Command cmd = Command.to().select("name").from(1); + Object result = client.exec(cmd); + Assert.assertNotNull(result); + Set values = (Set) result; + Assert.assertTrue(values.contains("Alice")); + } + + /** + * Goal: Verify that a find command executed via + * {@code exec} returns matching records. + *

+ * Start state: Multiple records with searchable data. + *

+ * Workflow: + *

    + *
  • Add data to several records.
  • + *
  • Execute a find command with a CCL condition.
  • + *
  • Verify the result contains expected records.
  • + *
+ *

+ * Expected: The find returns a set containing only the + * matching record ids. + */ + @Test + @SuppressWarnings("unchecked") + public void testExecFindCommand() { + client.add("score", 100, 1); + client.add("score", 50, 2); + client.add("score", 75, 3); + Command cmd = Command.to().find("score > 60"); + Object result = client.exec(cmd); + Assert.assertNotNull(result); + Set records = (Set) result; + Assert.assertTrue(records.contains(1L)); + Assert.assertFalse(records.contains(2L)); + Assert.assertTrue(records.contains(3L)); + } + + /** + * Goal: Verify that a remove command removes the specified + * value when executed. + *

+ * Start state: A record with a known key-value pair. + *

+ * Workflow: + *

    + *
  • Add a key-value pair to a record.
  • + *
  • Execute a remove command for that pair.
  • + *
  • Verify the value is no longer present.
  • + *
+ *

+ * Expected: The remove succeeds and the value is no longer + * stored at that record. + */ + @Test + public void testExecRemoveCommand() { + client.add("color", "red", 5); + Assert.assertTrue(client.verify("color", "red", 5)); + Command cmd = Command.to().remove("color").as("red").from(5); + Object result = client.exec(cmd); + Assert.assertTrue((Boolean) result); + Assert.assertFalse(client.verify("color", "red", 5)); + } + + /** + * Goal: Verify that a ping command returns {@code true} + * when the server is running. + *

+ * Start state: A running server with an active client + * connection. + *

+ * Workflow: + *

    + *
  • Execute a ping command via {@code exec}.
  • + *
+ *

+ * Expected: The result is {@code true}. + */ + @Test + public void testExecPingCommand() { + Object result = client.exec(Command.to().ping()); + Assert.assertTrue((Boolean) result); + } + +} diff --git a/concourse-plugin-core/src/main/java/com/cinchapi/concourse/server/plugin/StatefulConcourseService.java b/concourse-plugin-core/src/main/java/com/cinchapi/concourse/server/plugin/StatefulConcourseService.java index 0dc123e45..b796c3f3c 100644 --- a/concourse-plugin-core/src/main/java/com/cinchapi/concourse/server/plugin/StatefulConcourseService.java +++ b/concourse-plugin-core/src/main/java/com/cinchapi/concourse/server/plugin/StatefulConcourseService.java @@ -3176,6 +3176,22 @@ public boolean consolidateRecords(List records) { throw new UnsupportedOperationException(); } + public ComplexTObject exec(List commands) { + throw new UnsupportedOperationException(); + } + + public List submit(List commands) { + throw new UnsupportedOperationException(); + } + + public ComplexTObject execCcl(String ccl) { + throw new UnsupportedOperationException(); + } + + public List submitCcl(String ccl) { + throw new UnsupportedOperationException(); + } + public boolean ping() { throw new UnsupportedOperationException(); } diff --git a/concourse-server/src/main/java/com/cinchapi/concourse/server/ConcourseServer.java b/concourse-server/src/main/java/com/cinchapi/concourse/server/ConcourseServer.java index 73b7f920b..8d171248f 100644 --- a/concourse-server/src/main/java/com/cinchapi/concourse/server/ConcourseServer.java +++ b/concourse-server/src/main/java/com/cinchapi/concourse/server/ConcourseServer.java @@ -22,6 +22,7 @@ import java.lang.management.MemoryUsage; import java.net.ServerSocket; import java.nio.ByteBuffer; +import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; @@ -56,6 +57,7 @@ import org.jctools.maps.NonBlockingHashMap; import com.cinchapi.ccl.syntax.AbstractSyntaxTree; +import com.cinchapi.ccl.syntax.CommandTree; import com.cinchapi.ccl.util.NaturalLanguage; import com.cinchapi.common.base.AnyStrings; import com.cinchapi.common.base.Array; @@ -90,6 +92,8 @@ import com.cinchapi.concourse.server.management.ConcourseManagementService; import com.cinchapi.concourse.server.monitoring.Tracker; import com.cinchapi.concourse.server.ops.AtomicOperations; +import com.cinchapi.concourse.server.ops.CommandDispatcher; +import com.cinchapi.concourse.server.ops.CommandTreeConverter; import com.cinchapi.concourse.server.ops.InsufficientAtomicityException; import com.cinchapi.concourse.server.ops.Operations; import com.cinchapi.concourse.server.ops.Stores; @@ -119,10 +123,12 @@ import com.cinchapi.concourse.thrift.ConcourseService; import com.cinchapi.concourse.thrift.Diff; import com.cinchapi.concourse.thrift.DuplicateEntryException; +import com.cinchapi.concourse.thrift.InvalidArgumentException; import com.cinchapi.concourse.thrift.ManagementException; import com.cinchapi.concourse.thrift.Operator; import com.cinchapi.concourse.thrift.ParseException; import com.cinchapi.concourse.thrift.SecurityException; +import com.cinchapi.concourse.thrift.TCommand; import com.cinchapi.concourse.thrift.TCriteria; import com.cinchapi.concourse.thrift.TObject; import com.cinchapi.concourse.thrift.TOrder; @@ -1608,6 +1614,30 @@ public Map>> diffRecordStartstrEndstr( environment); } + @Override + @TranslateClientExceptions + @VerifyAccessToken + public ComplexTObject exec(List commands, AccessToken creds, + TransactionToken transaction, String environment) + throws TException { + List results = submit(commands, creds, transaction, + environment); + return results.isEmpty() ? ComplexTObject.fromJavaObject(null) + : Iterables.getLast(results); + } + + @Override + @TranslateClientExceptions + @VerifyAccessToken + public ComplexTObject execCcl(String ccl, AccessToken creds, + TransactionToken transaction, String environment) + throws TException { + List results = submitCcl(ccl, creds, transaction, + environment); + return results.isEmpty() ? ComplexTObject.fromJavaObject(null) + : Iterables.getLast(results); + } + @Override @TranslateClientExceptions @VerifyAccessToken @@ -6067,6 +6097,80 @@ public TransactionToken stage(AccessToken creds, String env) return token; } + @Override + @TranslateClientExceptions + @VerifyAccessToken + public List submit(List commands, + AccessToken creds, TransactionToken transaction, String environment) + throws TException { + TransactionToken active = transaction; + List results = new ArrayList<>(); + try { + for (TCommand command : commands) { + Object result; + // NOTE: Transaction commands are handled explicitly (not via + // CommandDispatcher) because we must block attempts to start + // nested transactions. + switch (command.getVerb()) { + case STAGE: + if(active != null) { + throw new InvalidArgumentException( + "Cannot start a nested transaction"); + } + else { + active = stage(creds, environment); + result = null; + } + break; + case COMMIT: + if(active != null) { + result = commit(creds, active, environment); + } + else { + result = false; + } + active = transaction; + break; + case ABORT: + if(active != null) { + abort(creds, active, environment); + } + result = null; + active = transaction; + break; + default: + result = CommandDispatcher.dispatch(command, this, creds, + active, environment); + } + results.add(ComplexTObject.fromJavaObject(result)); + } + } + catch (Exception e) { + if(active != null && active != transaction) { + // NOTE: If the batch started its own transaction + // (active != transaction), abort it so it doesn't + // leak on the server. + abort(creds, active, environment); + } + throw e; + } + return results; + } + + @Override + @TranslateClientExceptions + @VerifyAccessToken + public List submitCcl(String ccl, AccessToken creds, + TransactionToken transaction, String environment) + throws TException { + List trees = compiler.compile(ccl); + List commands = Lists.newArrayListWithCapacity(trees.size()); + for (AbstractSyntaxTree tree : trees) { + commands.add(CommandTreeConverter.convert((CommandTree) tree)); + } + return submit(commands, creds, transaction, environment); + } + /** * Start the server. * diff --git a/concourse-server/src/main/java/com/cinchapi/concourse/server/management/ConcourseManagementService.java b/concourse-server/src/main/java/com/cinchapi/concourse/server/management/ConcourseManagementService.java index eab0d9018..ae65cb727 100644 --- a/concourse-server/src/main/java/com/cinchapi/concourse/server/management/ConcourseManagementService.java +++ b/concourse-server/src/main/java/com/cinchapi/concourse/server/management/ConcourseManagementService.java @@ -15,7 +15,7 @@ */ package com.cinchapi.concourse.server.management; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-13") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.20.0)", date = "2026-03-15") @SuppressWarnings({ "unchecked", "rawtypes", "serial", "unused" }) public class ConcourseManagementService { diff --git a/concourse-server/src/main/java/com/cinchapi/concourse/server/ops/CommandDispatcher.java b/concourse-server/src/main/java/com/cinchapi/concourse/server/ops/CommandDispatcher.java new file mode 100644 index 000000000..c4eb31722 --- /dev/null +++ b/concourse-server/src/main/java/com/cinchapi/concourse/server/ops/CommandDispatcher.java @@ -0,0 +1,812 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.server.ops; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.apache.thrift.TException; + +import com.cinchapi.common.base.CheckedExceptions; +import com.cinchapi.common.reflect.Reflection; +import com.cinchapi.concourse.Link; +import com.cinchapi.concourse.server.ConcourseServer; +import com.cinchapi.concourse.thrift.AccessToken; +import com.cinchapi.concourse.thrift.TCommand; +import com.cinchapi.concourse.thrift.TCommandVerb; +import com.cinchapi.concourse.thrift.TransactionToken; +import com.cinchapi.concourse.util.Convert; + +/** + * Dispatch a {@link TCommand} to the appropriate server method based on the + * command's verb and which optional fields are set. + *

+ * The dispatcher resolves the target method name by examining the + * {@link TCommandVerb} and the combination of set fields on the + * {@link TCommand}, then invokes the corresponding method on the server object + * via reflection. This approach avoids maintaining hundreds of explicit + * dispatch cases for every method variant. + * + * @author Jeff Nelson + */ +public final class CommandDispatcher { + + /** + * Dispatch a {@link TCommand} to the appropriate method on {@code server} + * and return the result. + *

+ * The correct method is determined by examining the {@link TCommand + * TCommand's} verb and which optional fields are populated. State + * parameters ({@code creds}, {@code transaction}, {@code environment}) are + * appended automatically. + * + * @param command the {@link TCommand} to dispatch + * @param server the server object that implements the target method + * @param creds the {@link AccessToken} for authentication + * @param transaction the {@link TransactionToken}, or {@code null} if not + * in a transaction + * @param environment the target environment + * @return the result of the dispatched method invocation + * @throws TException if the underlying method throws a Thrift exception + */ + public static Object dispatch(TCommand command, Object server, + AccessToken creds, TransactionToken transaction, String environment) + throws TException { + TCommandVerb verb = command.getVerb(); + if(verb == TCommandVerb.LINK) { + return dispatchLink(command, server, creds, transaction, + environment); + } + else if(verb == TCommandVerb.UNLINK) { + return dispatchUnlink(command, server, creds, transaction, + environment); + } + else { + String methodName = resolveMethodName(command); + List args = resolveArguments(command); + args.add(creds); + args.add(transaction); + args.add(environment); + return invoke(server, methodName, args.toArray()); + } + } + + /** + * Append the order to {@code args} if it is set on the {@link TCommand}. + * + * @param args the argument list being built + * @param cmd the {@link TCommand} to inspect + */ + private static void addOrder(List args, TCommand cmd) { + if(cmd.isSetOrder()) { + args.add(cmd.getOrder()); + } + } + + /** + * Append the page to {@code args} if it is set on the {@link TCommand}. + * + * @param args the argument list being built + * @param cmd the {@link TCommand} to inspect + */ + private static void addPage(List args, TCommand cmd) { + if(cmd.isSetPage()) { + args.add(cmd.getPage()); + } + } + + /** + * Append the timestamp to {@code args} if it is set on the + * {@link TCommand}. + * + * @param args the argument list being built + * @param cmd the {@link TCommand} to inspect + */ + private static void addTimestamp(List args, TCommand cmd) { + if(cmd.isSetTimestamp()) { + args.add(cmd.getTimestamp()); + } + } + + /** + * Return the key/record suffix for {@code AUDIT} method names: + * {@code "KeyRecord"} if keys are set, or {@code "Record"} otherwise. + * + * @param cmd the {@link TCommand} to inspect + * @return the audit suffix + */ + private static String auditSuffix(TCommand cmd) { + if(cmd.isSetKeys()) { + return "KeyRecord"; + } + else { + return "Record"; + } + } + + /** + * Return the source suffix for {@code CALCULATE} {@link TCommandVerb + * verbs}, which may have no source when operating on the entire dataset. + * Return {@code "Criteria"}, {@code "Ccl"}, {@code "Record"}, + * {@code "Records"}, or empty accordingly. + * + * @param cmd the {@link TCommand} to inspect + * @return the calculate source suffix + */ + private static String calculateSourceSuffix(TCommand cmd) { + if(cmd.isSetCriteria()) { + return "Criteria"; + } + else if(cmd.isSetCondition()) { + return "Ccl"; + } + else if(hasSingleRecord(cmd)) { + return "Record"; + } + else if(hasMultipleRecords(cmd)) { + return "Records"; + } + else { + return ""; + } + } + + /** + * Return the key/record suffix for {@code DIFF} method names: + * {@code "KeyRecord"} if both keys and records are set, {@code "Key"} if + * only keys are set, or {@code "Record"} otherwise. + * + * @param cmd the {@link TCommand} to inspect + * @return the diff suffix + */ + private static String diffSuffix(TCommand cmd) { + if(cmd.isSetKeys() && cmd.isSetRecords()) { + return "KeyRecord"; + } + else if(cmd.isSetKeys()) { + return "Key"; + } + else { + return "Record"; + } + } + + /** + * Dispatch a LINK command by adding a {@link Link} value via the + * {@code addKeyValueRecord} method. + * + * @param cmd the {@link TCommand} + * @param server the server object + * @param creds the {@link AccessToken} + * @param transaction the {@link TransactionToken} + * @param environment the target environment + * @return the result of the add operation + * @throws TException if the method throws + */ + private static Object dispatchLink(TCommand cmd, Object server, + AccessToken creds, TransactionToken transaction, String environment) + throws TException { + String key = cmd.getKeys().get(0); + long source = cmd.getSourceRecord(); + Object result = null; + for (long destination : cmd.getRecords()) { + result = invoke(server, "addKeyValueRecord", key, + Convert.javaToThrift(Link.to(destination)), source, creds, + transaction, environment); + } + return result; + } + + /** + * Dispatch an UNLINK command by removing a {@link Link} value via the + * {@code removeKeyValueRecord} method. + * + * @param cmd the {@link TCommand} + * @param server the server object + * @param creds the {@link AccessToken} + * @param transaction the {@link TransactionToken} + * @param environment the target environment + * @return the result of the remove operation + * @throws TException if the method throws + */ + private static Object dispatchUnlink(TCommand cmd, Object server, + AccessToken creds, TransactionToken transaction, String environment) + throws TException { + String key = cmd.getKeys().get(0); + long source = cmd.getSourceRecord(); + long destination = cmd.getRecords().get(0); + return invoke(server, "removeKeyValueRecord", key, + Convert.javaToThrift(Link.to(destination)), source, creds, + transaction, environment); + } + + /** + * Return the single key from the {@link TCommand TCommand's} keys list. + * + * @param cmd the {@link TCommand} containing the key + * @return the first (and only) key + */ + private static String getSingleKey(TCommand cmd) { + return cmd.getKeys().get(0); + } + + /** + * Return the single record from the {@link TCommand TCommand's} records + * list. + * + * @param cmd the {@link TCommand} containing the record + * @return the first (and only) record + */ + private static long getSingleRecord(TCommand cmd) { + return cmd.getRecords().get(0); + } + + /** + * Return {@code true} if the {@link TCommand} has more than one key set. + * + * @param cmd the {@link TCommand} to inspect + * @return {@code true} if multiple keys are present + */ + private static boolean hasMultipleKeys(TCommand cmd) { + return cmd.isSetKeys() && cmd.getKeysSize() > 1; + } + + /** + * Return {@code true} if the {@link TCommand} has more than one record set. + * + * @param cmd the {@link TCommand} to inspect + * @return {@code true} if multiple records are present + */ + private static boolean hasMultipleRecords(TCommand cmd) { + return cmd.isSetRecords() && cmd.getRecordsSize() > 1; + } + + /** + * Return {@code true} if the {@link TCommand} has exactly one key set. + * + * @param cmd the {@link TCommand} to inspect + * @return {@code true} if a single key is present + */ + private static boolean hasSingleKey(TCommand cmd) { + return cmd.isSetKeys() && cmd.getKeysSize() == 1; + } + + /** + * Return {@code true} if the {@link TCommand} has exactly one record set. + * + * @param cmd the {@link TCommand} to inspect + * @return {@code true} if a single record is present + */ + private static boolean hasSingleRecord(TCommand cmd) { + return cmd.isSetRecords() && cmd.getRecordsSize() == 1; + } + + /** + * Invoke a method on the server by name, unwrapping any {@link TException} + * from the reflective call. + * + * @param server the target object + * @param methodName the method to invoke + * @param args the arguments + * @return the method result + * @throws TException if the method throws a Thrift exception + */ + private static Object invoke(Object server, String methodName, + Object... args) throws TException { + Method method = METHODS.get(methodName); + if(method == null) { + throw new UnsupportedOperationException( + "No method found: " + methodName); + } + try { + return method.invoke(server, args); + } + catch (InvocationTargetException e) { + Throwable cause = e.getCause(); + if(cause instanceof TException) { + throw (TException) cause; + } + else { + throw CheckedExceptions.throwAsRuntimeException(cause); + } + } + catch (IllegalAccessException e) { + throw CheckedExceptions.throwAsRuntimeException(e); + } + } + + /** + * Return the method name suffix for the key component of the + * {@link TCommand}: {@code "Key"} for a single key, {@code "Keys"} for + * multiple, or empty if no keys are set. + * + * @param cmd the {@link TCommand} to inspect + * @return the key suffix + */ + private static String keySuffix(TCommand cmd) { + if(hasSingleKey(cmd)) { + return "Key"; + } + else if(hasMultipleKeys(cmd)) { + return "Keys"; + } + else { + return ""; + } + } + + /** + * Return {@code "Order"} if the {@link TCommand} has an order set, or empty + * otherwise. + * + * @param cmd the {@link TCommand} to inspect + * @return the order suffix + */ + private static String orderSuffix(TCommand cmd) { + return cmd.isSetOrder() ? "Order" : ""; + } + + /** + * Return {@code "Page"} if the {@link TCommand} has a page set, or empty + * otherwise. + * + * @param cmd the {@link TCommand} to inspect + * @return the page suffix + */ + private static String pageSuffix(TCommand cmd) { + return cmd.isSetPage() ? "Page" : ""; + } + + /** + * Return the method name suffix for the record component of the + * {@link TCommand}: {@code "Record"} for a single record, {@code "Records"} + * for multiple, or empty if no records are set. + * + * @param cmd the {@link TCommand} to inspect + * @return the record suffix + */ + private static String recordSuffix(TCommand cmd) { + if(hasSingleRecord(cmd)) { + return "Record"; + } + else if(hasMultipleRecords(cmd)) { + return "Records"; + } + else { + return ""; + } + } + + /** + * Build the ordered argument list for a {@link TCommand}, excluding the + * trailing state parameters (creds, transaction, environment) which are + * appended by the caller. + * + * @param cmd the {@link TCommand} + * @return the argument list + */ + private static List resolveArguments(TCommand cmd) { + List args = new ArrayList<>(); + switch (cmd.getVerb()) { + case ADD: + case SET: + case REMOVE: + args.add(getSingleKey(cmd)); + args.add(cmd.getValue()); + if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + break; + case CLEAR: + if(hasSingleKey(cmd)) { + args.add(getSingleKey(cmd)); + } + else if(hasMultipleKeys(cmd)) { + args.add(cmd.getKeys()); + } + if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + break; + case INSERT: + args.add(cmd.getJson()); + if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + break; + case FIND: + if(cmd.isSetCriteria()) { + args.add(cmd.getCriteria()); + } + else if(cmd.isSetCondition()) { + args.add(cmd.getCondition()); + } + addTimestamp(args, cmd); + addOrder(args, cmd); + addPage(args, cmd); + break; + case FIND_OR_ADD: + args.add(getSingleKey(cmd)); + args.add(cmd.getValue()); + break; + case FIND_OR_INSERT: + if(cmd.isSetCriteria()) { + args.add(cmd.getCriteria()); + } + else { + args.add(cmd.getCondition()); + } + args.add(cmd.getJson()); + break; + case SELECT: + case GET: + if(hasSingleKey(cmd)) { + args.add(getSingleKey(cmd)); + } + else if(hasMultipleKeys(cmd)) { + args.add(cmd.getKeys()); + } + if(cmd.isSetCriteria()) { + args.add(cmd.getCriteria()); + } + else if(cmd.isSetCondition()) { + args.add(cmd.getCondition()); + } + else if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + addTimestamp(args, cmd); + addOrder(args, cmd); + addPage(args, cmd); + break; + case NAVIGATE: + if(hasSingleKey(cmd)) { + args.add(getSingleKey(cmd)); + } + else if(hasMultipleKeys(cmd)) { + args.add(cmd.getKeys()); + } + if(cmd.isSetCriteria()) { + args.add(cmd.getCriteria()); + } + else if(cmd.isSetCondition()) { + args.add(cmd.getCondition()); + } + else if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + addTimestamp(args, cmd); + break; + case BROWSE: + if(hasSingleKey(cmd)) { + args.add(getSingleKey(cmd)); + } + else if(hasMultipleKeys(cmd)) { + args.add(cmd.getKeys()); + } + addTimestamp(args, cmd); + break; + case DESCRIBE: + if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + addTimestamp(args, cmd); + break; + case SEARCH: + args.add(getSingleKey(cmd)); + args.add(cmd.getQuery()); + break; + case TRACE: + if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + addTimestamp(args, cmd); + break; + case HOLDS: + if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + break; + case JSONIFY: + args.add(cmd.getRecords()); + args.add(true); + addTimestamp(args, cmd); + break; + case CHRONICLE: + args.add(getSingleKey(cmd)); + args.add(getSingleRecord(cmd)); + if(cmd.isSetTimestamp()) { + args.add(cmd.getTimestamp()); + if(cmd.isSetEndTimestamp()) { + args.add(cmd.getEndTimestamp()); + } + } + break; + case DIFF: + if(cmd.isSetKeys() && cmd.isSetRecords()) { + args.add(getSingleKey(cmd)); + args.add(getSingleRecord(cmd)); + } + else if(cmd.isSetKeys()) { + args.add(getSingleKey(cmd)); + } + else { + args.add(getSingleRecord(cmd)); + } + args.add(cmd.getTimestamp()); + if(cmd.isSetEndTimestamp()) { + args.add(cmd.getEndTimestamp()); + } + break; + case AUDIT: + if(cmd.isSetKeys()) { + args.add(getSingleKey(cmd)); + args.add(getSingleRecord(cmd)); + } + else { + args.add(getSingleRecord(cmd)); + } + if(cmd.isSetTimestamp()) { + args.add(cmd.getTimestamp()); + if(cmd.isSetEndTimestamp()) { + args.add(cmd.getEndTimestamp()); + } + } + break; + case REVERT: + if(hasSingleKey(cmd)) { + args.add(getSingleKey(cmd)); + } + else if(hasMultipleKeys(cmd)) { + args.add(cmd.getKeys()); + } + if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + args.add(cmd.getTimestamp()); + break; + case RECONCILE: + args.add(getSingleKey(cmd)); + args.add(getSingleRecord(cmd)); + args.add(cmd.getValues()); + break; + case CONSOLIDATE: + args.add(cmd.getRecords()); + break; + case VERIFY: + args.add(getSingleKey(cmd)); + args.add(cmd.getValue()); + args.add(getSingleRecord(cmd)); + addTimestamp(args, cmd); + break; + case VERIFY_AND_SWAP: + args.add(getSingleKey(cmd)); + args.add(cmd.getValue()); + args.add(getSingleRecord(cmd)); + args.add(cmd.getReplacement()); + break; + case VERIFY_OR_SET: + args.add(getSingleKey(cmd)); + args.add(cmd.getValue()); + args.add(getSingleRecord(cmd)); + break; + case CALCULATE: + args.add(getSingleKey(cmd)); + if(cmd.isSetCriteria()) { + args.add(cmd.getCriteria()); + } + else if(cmd.isSetCondition()) { + args.add(cmd.getCondition()); + } + else if(hasSingleRecord(cmd)) { + args.add(getSingleRecord(cmd)); + } + else if(hasMultipleRecords(cmd)) { + args.add(cmd.getRecords()); + } + addTimestamp(args, cmd); + break; + case PING: + case INVENTORY: + break; + default: + throw new UnsupportedOperationException( + "Cannot resolve arguments for verb: " + cmd.getVerb()); + } + return args; + } + + /** + * Resolve the thrift service method name for a {@link TCommand} based on + * its verb and which optional fields are set. + * + * @param cmd the {@link TCommand} + * @return the method name + */ + private static String resolveMethodName(TCommand cmd) { + switch (cmd.getVerb()) { + case ADD: + return "addKeyValue" + recordSuffix(cmd); + case REMOVE: + return "removeKeyValue" + recordSuffix(cmd); + case SET: + return "setKeyValue" + recordSuffix(cmd); + case CLEAR: + return "clear" + keySuffix(cmd) + recordSuffix(cmd); + case INSERT: + return "insertJson" + recordSuffix(cmd); + case FIND: + return "find" + sourceSuffix(cmd) + timeSuffix(cmd) + + orderSuffix(cmd) + pageSuffix(cmd); + case FIND_OR_ADD: + return "findOrAddKeyValue"; + case FIND_OR_INSERT: + return "findOrInsert" + (cmd.isSetCriteria() ? "Criteria" : "Ccl") + + "Json"; + case SELECT: + return "select" + keySuffix(cmd) + sourceSuffix(cmd) + + timeSuffix(cmd) + orderSuffix(cmd) + pageSuffix(cmd); + case GET: + return "get" + keySuffix(cmd) + sourceSuffix(cmd) + timeSuffix(cmd) + + orderSuffix(cmd) + pageSuffix(cmd); + case NAVIGATE: + return "navigate" + keySuffix(cmd) + sourceSuffix(cmd) + + timeSuffix(cmd); + case BROWSE: + return "browse" + keySuffix(cmd) + timeSuffix(cmd); + case DESCRIBE: + return "describe" + recordSuffix(cmd) + timeSuffix(cmd); + case SEARCH: + return "search"; + case TRACE: + return "trace" + recordSuffix(cmd) + timeSuffix(cmd); + case HOLDS: + return "holds" + recordSuffix(cmd); + case JSONIFY: + return "jsonifyRecords" + timeSuffix(cmd); + case CHRONICLE: + return "chronicleKeyRecord" + startSuffix(cmd); + case DIFF: + return "diff" + diffSuffix(cmd) + startSuffix(cmd); + case AUDIT: + return "audit" + auditSuffix(cmd) + startSuffix(cmd); + case REVERT: + return "revert" + keySuffix(cmd) + recordSuffix(cmd) + "Time"; + case RECONCILE: + return "reconcileKeyRecordValues"; + case CONSOLIDATE: + return "consolidateRecords"; + case VERIFY: + return "verifyKeyValueRecord" + timeSuffix(cmd); + case VERIFY_AND_SWAP: + return "verifyAndSwap"; + case VERIFY_OR_SET: + return "verifyOrSet"; + case CALCULATE: + return cmd.getFunction() + "Key" + calculateSourceSuffix(cmd) + + timeSuffix(cmd); + case PING: + return "ping"; + case INVENTORY: + return "inventory"; + default: + throw new UnsupportedOperationException( + "Cannot dispatch verb: " + cmd.getVerb()); + } + } + + /** + * Return the source suffix for methods that accept a data source: + * {@code "Criteria"} if a {@code TCriteria} is set, {@code "Ccl"} if a CCL + * condition string is set, or the {@link #recordSuffix(TCommand) record + * suffix} otherwise. + * + * @param cmd the {@link TCommand} to inspect + * @return the source suffix + */ + private static String sourceSuffix(TCommand cmd) { + if(cmd.isSetCriteria()) { + return "Criteria"; + } + else if(cmd.isSetCondition()) { + return "Ccl"; + } + else { + return recordSuffix(cmd); + } + } + + /** + * Return the start/end suffix for range-based methods (chronicle, diff, + * audit): {@code "StartEnd"} if both timestamp and end timestamp are set, + * {@code "Start"} if only the timestamp is set, or empty if neither is set. + * + * @param cmd the {@link TCommand} to inspect + * @return the start suffix + */ + private static String startSuffix(TCommand cmd) { + if(cmd.isSetTimestamp() && cmd.isSetEndTimestamp()) { + return "StartEnd"; + } + else if(cmd.isSetTimestamp()) { + return "Start"; + } + else { + return ""; + } + } + + /** + * Return {@code "Time"} if the {@link TCommand} has a timestamp set, or + * empty otherwise. + * + * @param cmd the {@link TCommand} to inspect + * @return the time suffix + */ + private static String timeSuffix(TCommand cmd) { + return cmd.isSetTimestamp() ? "Time" : ""; + } + + /** + * Map of method name to {@link Method} for all instance {@link Method + * Methods} declared on {@link ConcourseServer} and its hierarchy. Built + * statically on class load. + */ + private static final Map METHODS; + + static { + Map methods = new HashMap<>(); + for (Method m : Reflection + .getAllDeclaredMethods(ConcourseServer.class)) { + methods.putIfAbsent(m.getName(), m); + } + METHODS = methods; + } + + private CommandDispatcher() {/* no-init */} + +} diff --git a/concourse-server/src/main/java/com/cinchapi/concourse/server/ops/CommandTreeConverter.java b/concourse-server/src/main/java/com/cinchapi/concourse/server/ops/CommandTreeConverter.java new file mode 100644 index 000000000..fcb9cfc86 --- /dev/null +++ b/concourse-server/src/main/java/com/cinchapi/concourse/server/ops/CommandTreeConverter.java @@ -0,0 +1,813 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.server.ops; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; + +import com.cinchapi.ccl.grammar.ConjunctionSymbol; +import com.cinchapi.ccl.grammar.DirectionSymbol; +import com.cinchapi.ccl.grammar.ExpressionSymbol; +import com.cinchapi.ccl.grammar.KeyTokenSymbol; +import com.cinchapi.ccl.grammar.OrderComponentSymbol; +import com.cinchapi.ccl.grammar.OrderSymbol; +import com.cinchapi.ccl.grammar.PageSymbol; +import com.cinchapi.ccl.grammar.TimestampSymbol; +import com.cinchapi.ccl.grammar.ValueTokenSymbol; +import com.cinchapi.ccl.grammar.command.AbortSymbol; +import com.cinchapi.ccl.grammar.command.AddSymbol; +import com.cinchapi.ccl.grammar.command.AuditSymbol; +import com.cinchapi.ccl.grammar.command.BrowseSymbol; +import com.cinchapi.ccl.grammar.command.CalculateSymbol; +import com.cinchapi.ccl.grammar.command.ChronicleSymbol; +import com.cinchapi.ccl.grammar.command.ClearSymbol; +import com.cinchapi.ccl.grammar.command.CommandSymbol; +import com.cinchapi.ccl.grammar.command.CommitSymbol; +import com.cinchapi.ccl.grammar.command.ConsolidateSymbol; +import com.cinchapi.ccl.grammar.command.DescribeSymbol; +import com.cinchapi.ccl.grammar.command.DiffSymbol; +import com.cinchapi.ccl.grammar.command.FindOrAddSymbol; +import com.cinchapi.ccl.grammar.command.FindOrInsertSymbol; +import com.cinchapi.ccl.grammar.command.FindSymbol; +import com.cinchapi.ccl.grammar.command.GetSymbol; +import com.cinchapi.ccl.grammar.command.HoldsSymbol; +import com.cinchapi.ccl.grammar.command.InsertSymbol; +import com.cinchapi.ccl.grammar.command.InventorySymbol; +import com.cinchapi.ccl.grammar.command.JsonifySymbol; +import com.cinchapi.ccl.grammar.command.LinkSymbol; +import com.cinchapi.ccl.grammar.command.NavigateSymbol; +import com.cinchapi.ccl.grammar.command.PingSymbol; +import com.cinchapi.ccl.grammar.command.ReconcileSymbol; +import com.cinchapi.ccl.grammar.command.RemoveSymbol; +import com.cinchapi.ccl.grammar.command.RevertSymbol; +import com.cinchapi.ccl.grammar.command.SearchSymbol; +import com.cinchapi.ccl.grammar.command.SelectSymbol; +import com.cinchapi.ccl.grammar.command.SetSymbol; +import com.cinchapi.ccl.grammar.command.StageSymbol; +import com.cinchapi.ccl.grammar.command.TraceSymbol; +import com.cinchapi.ccl.grammar.command.UnlinkSymbol; +import com.cinchapi.ccl.grammar.command.VerifyAndSwapSymbol; +import com.cinchapi.ccl.grammar.command.VerifyOrSetSymbol; +import com.cinchapi.ccl.grammar.command.VerifySymbol; +import com.cinchapi.ccl.syntax.CommandTree; +import com.cinchapi.ccl.syntax.ConditionTree; +import com.cinchapi.ccl.syntax.ConjunctionTree; +import com.cinchapi.ccl.syntax.ExpressionTree; +import com.cinchapi.ccl.syntax.OrderTree; +import com.cinchapi.ccl.syntax.PageTree; +import com.cinchapi.concourse.thrift.TCommand; +import com.cinchapi.concourse.thrift.TCommandVerb; +import com.cinchapi.concourse.thrift.TObject; +import com.cinchapi.concourse.thrift.TOrder; +import com.cinchapi.concourse.thrift.TOrderComponent; +import com.cinchapi.concourse.thrift.TPage; +import com.cinchapi.concourse.util.Convert; + +/** + * Convert a {@link CommandTree} produced by the CCL compiler into a + * {@link TCommand} suitable for dispatch via {@link CommandDispatcher}. + * + * @author Jeff Nelson + */ +public final class CommandTreeConverter { + + /** + * Convert a {@link CommandTree} to a {@link TCommand}. + * + * @param tree the {@link CommandTree} to convert + * @return the equivalent {@link TCommand} + * @throws UnsupportedOperationException if the command type is not + * recognized + */ + public static TCommand convert(CommandTree tree) { + CommandSymbol symbol = (CommandSymbol) tree.root(); + TCommand tc; + if(symbol instanceof FindSymbol) { + tc = convertFind((FindSymbol) symbol, tree); + } + else if(symbol instanceof SelectSymbol) { + tc = convertSelect((SelectSymbol) symbol, tree); + } + else if(symbol instanceof GetSymbol) { + tc = convertGet((GetSymbol) symbol, tree); + } + else if(symbol instanceof NavigateSymbol) { + tc = convertNavigate((NavigateSymbol) symbol, tree); + } + else if(symbol instanceof AddSymbol) { + tc = convertAdd((AddSymbol) symbol); + } + else if(symbol instanceof SetSymbol) { + tc = convertSet((SetSymbol) symbol); + } + else if(symbol instanceof RemoveSymbol) { + tc = convertRemove((RemoveSymbol) symbol); + } + else if(symbol instanceof ClearSymbol) { + tc = convertClear((ClearSymbol) symbol); + } + else if(symbol instanceof InsertSymbol) { + tc = convertInsert((InsertSymbol) symbol); + } + else if(symbol instanceof LinkSymbol) { + tc = convertLink((LinkSymbol) symbol); + } + else if(symbol instanceof UnlinkSymbol) { + tc = convertUnlink((UnlinkSymbol) symbol); + } + else if(symbol instanceof VerifySymbol) { + tc = convertVerify((VerifySymbol) symbol); + } + else if(symbol instanceof VerifyAndSwapSymbol) { + tc = convertVerifyAndSwap((VerifyAndSwapSymbol) symbol); + } + else if(symbol instanceof VerifyOrSetSymbol) { + tc = convertVerifyOrSet((VerifyOrSetSymbol) symbol); + } + else if(symbol instanceof FindOrAddSymbol) { + tc = convertFindOrAdd((FindOrAddSymbol) symbol, tree); + } + else if(symbol instanceof FindOrInsertSymbol) { + tc = convertFindOrInsert((FindOrInsertSymbol) symbol, tree); + } + else if(symbol instanceof SearchSymbol) { + tc = convertSearch((SearchSymbol) symbol); + } + else if(symbol instanceof BrowseSymbol) { + tc = convertBrowse((BrowseSymbol) symbol); + } + else if(symbol instanceof DescribeSymbol) { + tc = convertDescribe((DescribeSymbol) symbol); + } + else if(symbol instanceof TraceSymbol) { + tc = convertTrace((TraceSymbol) symbol); + } + else if(symbol instanceof HoldsSymbol) { + tc = convertHolds((HoldsSymbol) symbol); + } + else if(symbol instanceof JsonifySymbol) { + tc = convertJsonify((JsonifySymbol) symbol); + } + else if(symbol instanceof ChronicleSymbol) { + tc = convertChronicle((ChronicleSymbol) symbol); + } + else if(symbol instanceof DiffSymbol) { + tc = convertDiff((DiffSymbol) symbol); + } + else if(symbol instanceof AuditSymbol) { + tc = convertAudit((AuditSymbol) symbol); + } + else if(symbol instanceof RevertSymbol) { + tc = convertRevert((RevertSymbol) symbol); + } + else if(symbol instanceof ReconcileSymbol) { + tc = convertReconcile((ReconcileSymbol) symbol); + } + else if(symbol instanceof ConsolidateSymbol) { + tc = convertConsolidate((ConsolidateSymbol) symbol); + } + else if(symbol instanceof CalculateSymbol) { + tc = convertCalculate((CalculateSymbol) symbol, tree); + } + else if(symbol instanceof PingSymbol) { + tc = new TCommand(TCommandVerb.PING); + } + else if(symbol instanceof StageSymbol) { + tc = new TCommand(TCommandVerb.STAGE); + } + else if(symbol instanceof CommitSymbol) { + tc = new TCommand(TCommandVerb.COMMIT); + } + else if(symbol instanceof AbortSymbol) { + tc = new TCommand(TCommandVerb.ABORT); + } + else if(symbol instanceof InventorySymbol) { + tc = new TCommand(TCommandVerb.INVENTORY); + } + else { + throw new UnsupportedOperationException( + "Cannot convert command of type " + symbol.type()); + } + return tc; + } + + /** + * Render a {@link ConditionTree} back to a CCL condition string that can be + * used with the {@code condition} field of a {@link TCommand}. + * + * @param tree the {@link ConditionTree} to render + * @return the CCL condition string + */ + static String renderCondition(ConditionTree tree) { + if(tree instanceof ExpressionTree) { + ExpressionSymbol expr = (ExpressionSymbol) tree.root(); + StringBuilder sb = new StringBuilder(); + sb.append(expr.key().key().toString()); + sb.append(' ').append(expr.operator().toString()); + for (ValueTokenSymbol value : expr.values()) { + sb.append(' ').append(value.toString()); + } + if(expr.timestamp() != null + && expr.timestamp() != TimestampSymbol.PRESENT) { + sb.append(" at ").append(expr.timestamp().timestamp()); + } + return sb.toString(); + } + else if(tree instanceof ConjunctionTree) { + ConjunctionTree ct = (ConjunctionTree) tree; + String left = renderCondition(ct.left()); + String right = renderCondition(ct.right()); + ConjunctionSymbol conj = (ConjunctionSymbol) ct.root(); + return "(" + left + " " + conj.name().toLowerCase() + " " + right + + ")"; + } + else { + throw new UnsupportedOperationException( + "Cannot render condition tree of type " + + tree.getClass().getName()); + } + } + + /** + * Apply the optional condition from a {@link CommandTree} to a + * {@link TCommand}. + * + * @param tc the {@link TCommand} to modify + * @param tree the {@link CommandTree} containing the condition + */ + private static void applyCondition(TCommand tc, CommandTree tree) { + ConditionTree ct = tree.conditionTree(); + if(ct != null) { + tc.setCondition(renderCondition(ct)); + } + } + + /** + * Apply the optional order from a {@link CommandTree} to a + * {@link TCommand}. + * + * @param tc the {@link TCommand} to modify + * @param tree the {@link CommandTree} containing the order + */ + private static void applyOrder(TCommand tc, CommandTree tree) { + OrderTree ot = tree.orderTree(); + if(ot != null) { + tc.setOrder(convertOrder(ot)); + } + } + + /** + * Apply the optional page from a {@link CommandTree} to a {@link TCommand}. + * + * @param tc the {@link TCommand} to modify + * @param tree the {@link CommandTree} containing the page + */ + private static void applyPage(TCommand tc, CommandTree tree) { + PageTree pt = tree.pageTree(); + if(pt != null) { + tc.setPage(convertPage(pt)); + } + } + + /** + * Collect a single record and an optional collection of records into a + * single list. + * + * @param record the single record, or {@code null} + * @param records the additional records, or {@code null} + * @return the consolidated list + */ + private static List collectRecords(Long record, + Collection records) { + if(records != null) { + return new ArrayList<>(records); + } + else if(record != null) { + return Collections.singletonList(record); + } + else { + return null; + } + } + + /** + * Convert an {@link AddSymbol}. + */ + private static TCommand convertAdd(AddSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.ADD); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setValue(convertValue(sym.value())); + List records = collectRecords(sym.record(), sym.records()); + if(records != null) { + tc.setRecords(records); + } + return tc; + } + + /** + * Convert an {@link AuditSymbol}. + */ + private static TCommand convertAudit(AuditSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.AUDIT); + if(sym.key() != null) { + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + } + tc.setRecords(Collections.singletonList(sym.record())); + if(sym.start() != null && sym.start() != TimestampSymbol.PRESENT) { + tc.setTimestamp(sym.start().timestamp()); + } + if(sym.end() != null && sym.end() != TimestampSymbol.PRESENT) { + tc.setEndTimestamp(sym.end().timestamp()); + } + return tc; + } + + /** + * Convert a {@link BrowseSymbol}. + */ + private static TCommand convertBrowse(BrowseSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.BROWSE); + if(sym.keys() != null && !sym.keys().isEmpty()) { + tc.setKeys(extractKeys(sym.keys())); + } + setTimestamp(tc, sym.timestamp()); + return tc; + } + + /** + * Convert a {@link CalculateSymbol}. + */ + private static TCommand convertCalculate(CalculateSymbol sym, + CommandTree tree) { + TCommand tc = new TCommand(TCommandVerb.CALCULATE); + tc.setFunction(sym.function()); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + if(sym.records() != null) { + tc.setRecords(new ArrayList<>(sym.records())); + } + applyCondition(tc, tree); + setTimestamp(tc, sym.timestamp()); + return tc; + } + + /** + * Convert a {@link ChronicleSymbol}. + */ + private static TCommand convertChronicle(ChronicleSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.CHRONICLE); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setRecords(Collections.singletonList(sym.record())); + if(sym.start() != null && sym.start() != TimestampSymbol.PRESENT) { + tc.setTimestamp(sym.start().timestamp()); + } + if(sym.end() != null && sym.end() != TimestampSymbol.PRESENT) { + tc.setEndTimestamp(sym.end().timestamp()); + } + return tc; + } + + // ---- Individual command conversions ---- + + /** + * Convert a {@link ClearSymbol}. + */ + private static TCommand convertClear(ClearSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.CLEAR); + if(sym.key() != null) { + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + } + else if(sym.keys() != null) { + tc.setKeys(extractKeys(sym.keys())); + } + if(sym.records() != null) { + tc.setRecords(new ArrayList<>(sym.records())); + } + else if(sym.record() >= 0) { + tc.setRecords(Collections.singletonList(sym.record())); + } + return tc; + } + + /** + * Convert a {@link ConsolidateSymbol}. + */ + private static TCommand convertConsolidate(ConsolidateSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.CONSOLIDATE); + List records = new ArrayList<>(); + records.add(sym.first()); + records.addAll(sym.remaining()); + tc.setRecords(records); + return tc; + } + + /** + * Convert a {@link DescribeSymbol}. + */ + private static TCommand convertDescribe(DescribeSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.DESCRIBE); + List records = collectRecords(sym.record(), sym.records()); + if(records != null) { + tc.setRecords(records); + } + setTimestamp(tc, sym.timestamp()); + return tc; + } + + /** + * Convert a {@link DiffSymbol}. + */ + private static TCommand convertDiff(DiffSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.DIFF); + if(sym.key() != null) { + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + } + if(sym.record() != null) { + tc.setRecords(Collections.singletonList(sym.record())); + } + tc.setTimestamp(sym.start().timestamp()); + if(sym.end() != null && sym.end() != TimestampSymbol.PRESENT) { + tc.setEndTimestamp(sym.end().timestamp()); + } + return tc; + } + + /** + * Convert a {@link FindSymbol}. + */ + private static TCommand convertFind(FindSymbol sym, CommandTree tree) { + TCommand tc = new TCommand(TCommandVerb.FIND); + applyCondition(tc, tree); + setTimestamp(tc, sym.timestamp()); + applyOrder(tc, tree); + applyPage(tc, tree); + return tc; + } + + /** + * Convert a {@link FindOrAddSymbol}. + */ + private static TCommand convertFindOrAdd(FindOrAddSymbol sym, + CommandTree tree) { + TCommand tc = new TCommand(TCommandVerb.FIND_OR_ADD); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setValue(convertValue(sym.value())); + return tc; + } + + /** + * Convert a {@link FindOrInsertSymbol}. + */ + private static TCommand convertFindOrInsert(FindOrInsertSymbol sym, + CommandTree tree) { + TCommand tc = new TCommand(TCommandVerb.FIND_OR_INSERT); + applyCondition(tc, tree); + setTimestamp(tc, sym.timestamp()); + tc.setJson(sym.json()); + return tc; + } + + /** + * Convert a {@link GetSymbol}. + */ + private static TCommand convertGet(GetSymbol sym, CommandTree tree) { + TCommand tc = new TCommand(TCommandVerb.GET); + if(sym.key() != null) { + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + } + else if(sym.keys() != null && !sym.keys().isEmpty()) { + tc.setKeys(extractKeys(sym.keys())); + } + if(sym.record() >= 0) { + tc.setRecords(Collections.singletonList(sym.record())); + } + else if(sym.records() != null) { + tc.setRecords(new ArrayList<>(sym.records())); + } + applyCondition(tc, tree); + setTimestamp(tc, sym.timestamp()); + applyOrder(tc, tree); + applyPage(tc, tree); + return tc; + } + + /** + * Convert a {@link HoldsSymbol}. + */ + private static TCommand convertHolds(HoldsSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.HOLDS); + List records = collectRecords(sym.record(), sym.records()); + if(records != null) { + tc.setRecords(records); + } + return tc; + } + + /** + * Convert an {@link InsertSymbol}. + */ + private static TCommand convertInsert(InsertSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.INSERT); + tc.setJson(sym.json()); + List records = collectRecords(sym.record(), sym.records()); + if(records != null) { + tc.setRecords(records); + } + return tc; + } + + /** + * Convert a {@link JsonifySymbol}. + */ + private static TCommand convertJsonify(JsonifySymbol sym) { + TCommand tc = new TCommand(TCommandVerb.JSONIFY); + List records = collectRecords(sym.record(), sym.records()); + if(records != null) { + tc.setRecords(records); + } + setTimestamp(tc, sym.timestamp()); + return tc; + } + + /** + * Convert a {@link LinkSymbol}. + */ + private static TCommand convertLink(LinkSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.LINK); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setSourceRecord(sym.source()); + tc.setRecords(new ArrayList<>(sym.destinations())); + return tc; + } + + /** + * Convert a {@link NavigateSymbol}. + */ + private static TCommand convertNavigate(NavigateSymbol sym, + CommandTree tree) { + TCommand tc = new TCommand(TCommandVerb.NAVIGATE); + if(sym.keys() != null && !sym.keys().isEmpty()) { + tc.setKeys(extractKeys(sym.keys())); + } + Long record = sym.record(); + Collection records = sym.records(); + if(record != null) { + tc.setRecords(Collections.singletonList(record)); + } + else if(records != null) { + tc.setRecords(new ArrayList<>(records)); + } + // NOTE: NavigateSymbol may carry its own ccl() condition + // string, but we prefer the ConditionTree from the + // CommandTree since it's more reliable. + applyCondition(tc, tree); + setTimestamp(tc, sym.timestamp()); + return tc; + } + + /** + * Convert an {@link OrderTree} to a {@link TOrder}. + * + * @param tree the {@link OrderTree} to convert + * @return the equivalent {@link TOrder} + */ + private static TOrder convertOrder(OrderTree tree) { + OrderSymbol sym = (OrderSymbol) tree.root(); + List spec = new ArrayList<>(); + for (OrderComponentSymbol comp : sym.components()) { + TOrderComponent toc = new TOrderComponent( + comp.key().key().toString(), + comp.direction() == DirectionSymbol.ASCENDING ? 0 : 1); + if(comp.timestamp() != null + && comp.timestamp() != TimestampSymbol.PRESENT) { + toc.setTimestamp( + Convert.javaToThrift(comp.timestamp().timestamp())); + } + spec.add(toc); + } + return new TOrder(spec); + } + + /** + * Convert a {@link PageTree} to a {@link TPage}. + * + * @param tree the {@link PageTree} to convert + * @return the equivalent {@link TPage} + */ + private static TPage convertPage(PageTree tree) { + PageSymbol sym = (PageSymbol) tree.root(); + return new TPage(sym.skip(), sym.limit()); + } + + /** + * Convert a {@link ReconcileSymbol}. + */ + private static TCommand convertReconcile(ReconcileSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.RECONCILE); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setRecords(Collections.singletonList(sym.record())); + List values = sym.values().stream() + .map(CommandTreeConverter::convertValue) + .collect(Collectors.toList()); + tc.setValues(values); + return tc; + } + + /** + * Convert a {@link RemoveSymbol}. + */ + private static TCommand convertRemove(RemoveSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.REMOVE); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + if(sym.value() != null) { + tc.setValue(convertValue(sym.value())); + } + if(sym.records() != null) { + tc.setRecords(new ArrayList<>(sym.records())); + } + else if(sym.record() >= 0) { + tc.setRecords(Collections.singletonList(sym.record())); + } + return tc; + } + + /** + * Convert a {@link RevertSymbol}. + */ + private static TCommand convertRevert(RevertSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.REVERT); + if(sym.key() != null) { + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + } + else if(sym.keys() != null) { + tc.setKeys(extractKeys(sym.keys())); + } + if(sym.records() != null) { + tc.setRecords(new ArrayList<>(sym.records())); + } + else if(sym.record() >= 0) { + tc.setRecords(Collections.singletonList(sym.record())); + } + tc.setTimestamp(sym.timestamp().timestamp()); + return tc; + } + + /** + * Convert a {@link SearchSymbol}. + */ + private static TCommand convertSearch(SearchSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.SEARCH); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setQuery(sym.query()); + return tc; + } + + /** + * Convert a {@link SelectSymbol}. + */ + private static TCommand convertSelect(SelectSymbol sym, CommandTree tree) { + TCommand tc = new TCommand(TCommandVerb.SELECT); + if(sym.keys() != null && !sym.keys().isEmpty()) { + tc.setKeys(extractKeys(sym.keys())); + } + List records = collectRecords(sym.record(), sym.records()); + if(records != null) { + tc.setRecords(records); + } + applyCondition(tc, tree); + setTimestamp(tc, sym.timestamp()); + applyOrder(tc, tree); + applyPage(tc, tree); + return tc; + } + + /** + * Convert a {@link SetSymbol}. + */ + private static TCommand convertSet(SetSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.SET); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setValue(convertValue(sym.value())); + if(sym.records() != null) { + tc.setRecords(new ArrayList<>(sym.records())); + } + else if(sym.record() >= 0) { + tc.setRecords(Collections.singletonList(sym.record())); + } + return tc; + } + + /** + * Convert a {@link TraceSymbol}. + */ + private static TCommand convertTrace(TraceSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.TRACE); + List records = collectRecords(sym.record(), sym.records()); + if(records != null) { + tc.setRecords(records); + } + setTimestamp(tc, sym.timestamp()); + return tc; + } + + /** + * Convert an {@link UnlinkSymbol}. + */ + private static TCommand convertUnlink(UnlinkSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.UNLINK); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setSourceRecord(sym.source()); + tc.setRecords(Collections.singletonList(sym.destination())); + return tc; + } + + /** + * Convert a value from a {@link ValueTokenSymbol} to a {@link TObject}. + * + * @param value the value symbol + * @return the {@link TObject} + */ + private static TObject convertValue(ValueTokenSymbol value) { + return Convert.javaToThrift(value.value()); + } + + /** + * Convert a {@link VerifySymbol}. + */ + private static TCommand convertVerify(VerifySymbol sym) { + TCommand tc = new TCommand(TCommandVerb.VERIFY); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setValue(convertValue(sym.value())); + tc.setRecords(Collections.singletonList(sym.record())); + setTimestamp(tc, sym.timestamp()); + return tc; + } + + /** + * Convert a {@link VerifyAndSwapSymbol}. + */ + private static TCommand convertVerifyAndSwap(VerifyAndSwapSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.VERIFY_AND_SWAP); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setValue(convertValue(sym.expected())); + tc.setReplacement(convertValue(sym.replacement())); + tc.setRecords(Collections.singletonList(sym.record())); + return tc; + } + + /** + * Convert a {@link VerifyOrSetSymbol}. + */ + private static TCommand convertVerifyOrSet(VerifyOrSetSymbol sym) { + TCommand tc = new TCommand(TCommandVerb.VERIFY_OR_SET); + tc.setKeys(Collections.singletonList(sym.key().key().toString())); + tc.setValue(convertValue(sym.value())); + tc.setRecords(Collections.singletonList(sym.record())); + return tc; + } + + /** + * Extract key strings from a collection of {@link KeyTokenSymbol + * KeyTokenSymbols}. + * + * @param keys the key symbols + * @return a list of key strings + */ + private static List extractKeys( + Collection> keys) { + return keys.stream().map(k -> k.key().toString()) + .collect(Collectors.toList()); + } + + /** + * Set the timestamp on a {@link TCommand} if the given + * {@link TimestampSymbol} is not {@code null} and not + * {@link TimestampSymbol#PRESENT}. + * + * @param tc the {@link TCommand} to modify + * @param ts the {@link TimestampSymbol}, or {@code null} + */ + private static void setTimestamp(TCommand tc, TimestampSymbol ts) { + if(ts != null && ts != TimestampSymbol.PRESENT) { + tc.setTimestamp(ts.timestamp()); + } + } + + private CommandTreeConverter() {/* no-init */} + +} diff --git a/concourse-server/src/test/java/com/cinchapi/concourse/server/ops/CommandDispatcherTest.java b/concourse-server/src/test/java/com/cinchapi/concourse/server/ops/CommandDispatcherTest.java new file mode 100644 index 000000000..d5cb4a6fb --- /dev/null +++ b/concourse-server/src/test/java/com/cinchapi/concourse/server/ops/CommandDispatcherTest.java @@ -0,0 +1,453 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.cinchapi.concourse.server.ops; + +import java.util.List; + +import org.junit.Assert; +import org.junit.Test; + +import com.cinchapi.common.reflect.Reflection; +import com.cinchapi.concourse.test.ConcourseBaseTest; +import com.cinchapi.concourse.test.Variables; +import com.cinchapi.concourse.thrift.TCommand; +import com.cinchapi.concourse.thrift.TCommandVerb; +import com.cinchapi.concourse.util.Convert; +import com.google.common.collect.ImmutableList; + +/** + * Unit tests for {@link CommandDispatcher}. + * + * @author Jeff Nelson + */ +public class CommandDispatcherTest extends ConcourseBaseTest { + + /** + * Goal: Verify that an ADD command with a single record + * resolves to {@code addKeyValueRecord}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb ADD, one key, one value, and one + * record.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "addKeyValueRecord"}. + */ + @Test + public void testResolveMethodNameAddKeyValueRecord() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.ADD)); + cmd.setKeys(ImmutableList.of("name")); + cmd.setValue(Convert.javaToThrift("Alice")); + cmd.setRecords(ImmutableList.of(1L)); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("addKeyValueRecord", methodName); + } + + /** + * Goal: Verify that an ADD command without a record + * resolves to {@code addKeyValue}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb ADD, one key, and one value but + * no record.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "addKeyValue"}. + */ + @Test + public void testResolveMethodNameAddKeyValue() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.ADD)); + cmd.setKeys(ImmutableList.of("name")); + cmd.setValue(Convert.javaToThrift("Alice")); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("addKeyValue", methodName); + } + + /** + * Goal: Verify that a SELECT command with a single key and + * single record resolves to {@code selectKeyRecord}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb SELECT, one key, and one + * record.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "selectKeyRecord"}. + */ + @Test + public void testResolveMethodNameSelectKeyRecord() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.SELECT)); + cmd.setKeys(ImmutableList.of("name")); + cmd.setRecords(ImmutableList.of(1L)); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("selectKeyRecord", methodName); + } + + /** + * Goal: Verify that a SELECT command with multiple keys + * and a CCL condition resolves to {@code selectKeysCcl}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb SELECT, multiple keys, and a CCL + * condition string.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "selectKeysCcl"}. + */ + @Test + public void testResolveMethodNameSelectKeysCcl() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.SELECT)); + cmd.setKeys(ImmutableList.of("name", "age")); + cmd.setCondition("age > 30"); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("selectKeysCcl", methodName); + } + + /** + * Goal: Verify that a SELECT command with a single record + * and a timestamp resolves to {@code selectRecordTime}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb SELECT, one record, and a + * timestamp.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "selectRecordTime"}. + */ + @Test + public void testResolveMethodNameSelectRecordTime() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.SELECT)); + cmd.setRecords(ImmutableList.of(1L)); + cmd.setTimestamp(123456789L); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("selectRecordTime", methodName); + } + + /** + * Goal: Verify that a FIND command with a CCL condition + * resolves to {@code findCcl}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb FIND and a CCL condition.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is {@code "findCcl"}. + */ + @Test + public void testResolveMethodNameFindCcl() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.FIND)); + cmd.setCondition("age > 30"); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("findCcl", methodName); + } + + /** + * Goal: Verify that a DIFF command with a key and record + * resolves to {@code diffKeyRecordStart}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb DIFF, a key, a record, and a + * timestamp.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "diffKeyRecordStart"}. + */ + @Test + public void testResolveMethodNameDiffKeyRecordStart() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.DIFF)); + cmd.setKeys(ImmutableList.of("name")); + cmd.setRecords(ImmutableList.of(1L)); + cmd.setTimestamp(123456789L); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("diffKeyRecordStart", methodName); + } + + /** + * Goal: Verify that a DIFF command with a key, record, and + * both start and end timestamps resolves to {@code diffKeyRecordStartEnd}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb DIFF, a key, a record, a start + * timestamp, and an end timestamp.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "diffKeyRecordStartEnd"}. + */ + @Test + public void testResolveMethodNameDiffKeyRecordStartEnd() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.DIFF)); + cmd.setKeys(ImmutableList.of("name")); + cmd.setRecords(ImmutableList.of(1L)); + cmd.setTimestamp(100L); + cmd.setEndTimestamp(200L); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("diffKeyRecordStartEnd", methodName); + } + + /** + * Goal: Verify that a CALCULATE command with a key and + * record resolves to the correct method name using the function name. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb CALCULATE, a function of "sum", a + * key, and a record.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "sumKeyRecord"}. + */ + @Test + public void testResolveMethodNameCalculateSumKeyRecord() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.CALCULATE)); + cmd.setFunction("sum"); + cmd.setKeys(ImmutableList.of("salary")); + cmd.setRecords(ImmutableList.of(1L)); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("sumKeyRecord", methodName); + } + + /** + * Goal: Verify that PING resolves to {@code "ping"}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb PING.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is {@code "ping"}. + */ + @Test + public void testResolveMethodNamePing() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.PING)); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("ping", methodName); + } + + /** + * Goal: Verify that the argument list for an ADD command + * with a key, value, and record is built correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb ADD, one key, one value, and one + * record.
  • + *
  • Call {@code resolveArguments}.
  • + *
+ *

+ * Expected: The argument list contains the key, value, and + * record in that order. + */ + @Test + public void testResolveArgumentsAddKeyValueRecord() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.ADD)); + cmd.setKeys(ImmutableList.of("name")); + cmd.setValue(Convert.javaToThrift("Alice")); + cmd.setRecords(ImmutableList.of(1L)); + List args = Variables.register("args", resolveArguments(cmd)); + Assert.assertEquals(3, args.size()); + Assert.assertEquals("name", args.get(0)); + Assert.assertEquals(Convert.javaToThrift("Alice"), args.get(1)); + Assert.assertEquals(1L, args.get(2)); + } + + /** + * Goal: Verify that the argument list for a CLEAR command + * with multiple keys and multiple records is built correctly. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb CLEAR, multiple keys, and + * multiple records.
  • + *
  • Call {@code resolveArguments}.
  • + *
+ *

+ * Expected: The argument list contains the keys list and + * the records list. + */ + @Test + public void testResolveArgumentsClearKeysRecords() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.CLEAR)); + List keys = ImmutableList.of("name", "age"); + List records = ImmutableList.of(1L, 2L, 3L); + cmd.setKeys(keys); + cmd.setRecords(records); + List args = Variables.register("args", resolveArguments(cmd)); + Assert.assertEquals(2, args.size()); + Assert.assertEquals(keys, args.get(0)); + Assert.assertEquals(records, args.get(1)); + } + + /** + * Goal: Verify that PING produces an empty argument list. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb PING.
  • + *
  • Call {@code resolveArguments}.
  • + *
+ *

+ * Expected: The argument list is empty. + */ + @Test + public void testResolveArgumentsPingIsEmpty() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.PING)); + List args = Variables.register("args", resolveArguments(cmd)); + Assert.assertTrue(args.isEmpty()); + } + + /** + * Goal: Verify that a REMOVE command with multiple records + * resolves to {@code removeKeyValueRecords}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb REMOVE, one key, one value, and + * multiple records.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: The resolved method name is + * {@code "removeKeyValueRecords"}. + */ + @Test + public void testResolveMethodNameRemoveKeyValueRecords() { + TCommand cmd = Variables.register("cmd", + new TCommand(TCommandVerb.REMOVE)); + cmd.setKeys(ImmutableList.of("name")); + cmd.setValue(Convert.javaToThrift("Alice")); + cmd.setRecords(ImmutableList.of(1L, 2L, 3L)); + String methodName = Variables.register("methodName", + resolveMethodName(cmd)); + Assert.assertEquals("removeKeyValueRecords", methodName); + } + + /** + * Goal: Verify that an unsupported verb throws + * {@link UnsupportedOperationException}. + *

+ * Start state: No prior state needed. + *

+ * Workflow: + *

    + *
  • Create a {@link TCommand} with verb STAGE.
  • + *
  • Call {@code resolveMethodName}.
  • + *
+ *

+ * Expected: An {@link UnsupportedOperationException} is + * thrown because STAGE is handled by the server directly, not dispatched. + */ + @Test(expected = UnsupportedOperationException.class) + public void testResolveMethodNameThrowsForUnsupportedVerb() { + TCommand cmd = new TCommand(TCommandVerb.STAGE); + resolveMethodName(cmd); + } + + /** + * Delegate to the private static + * {@link CommandDispatcher#resolveMethodName(TCommand)} via reflection. + */ + private static String resolveMethodName(TCommand cmd) { + return Reflection.callStatic(CommandDispatcher.class, + "resolveMethodName", cmd); + } + + /** + * Delegate to the private static + * {@link CommandDispatcher#resolveArguments(TCommand)} via reflection. + */ + private static List resolveArguments(TCommand cmd) { + return Reflection.callStatic(CommandDispatcher.class, + "resolveArguments", cmd); + } + +} diff --git a/concourse-shell/src/main/java/com/cinchapi/concourse/shell/ConcourseShell.java b/concourse-shell/src/main/java/com/cinchapi/concourse/shell/ConcourseShell.java index aa4696195..6ae36e83a 100644 --- a/concourse-shell/src/main/java/com/cinchapi/concourse/shell/ConcourseShell.java +++ b/concourse-shell/src/main/java/com/cinchapi/concourse/shell/ConcourseShell.java @@ -27,6 +27,9 @@ import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.EnumSet; import java.util.List; import java.util.Set; import java.util.concurrent.TimeUnit; @@ -52,6 +55,7 @@ import com.cinchapi.concourse.Tag; import com.cinchapi.concourse.Timestamp; import com.cinchapi.concourse.config.ConcourseClientConfiguration; +import com.cinchapi.concourse.lang.ConcourseCompiler; import com.cinchapi.concourse.lang.Criteria; import com.cinchapi.concourse.lang.StartState; import com.cinchapi.concourse.lang.paginate.Page; @@ -61,6 +65,7 @@ import com.cinchapi.concourse.thrift.Operator; import com.cinchapi.concourse.thrift.ParseException; import com.cinchapi.concourse.thrift.SecurityException; +import com.cinchapi.concourse.thrift.TCommandVerb; import com.cinchapi.concourse.util.FileOps; import com.cinchapi.concourse.util.Version; import com.google.common.base.CaseFormat; @@ -131,6 +136,7 @@ public static void main(String... args) throws Exception { try { cash.concourse = Concourse.connect(opts.host, opts.port, opts.username, opts.password, opts.environment); + Reflection.set("usePrettyCollections", true, cash.concourse); cash.whoami = opts.username; } catch (Exception e) { @@ -413,6 +419,41 @@ private static String tryGetCorrectApiMethod(String alias) { .filter(method -> !BANNED_API_METHODS.contains(method)) .collect(Collectors.toList()); + /** + * Verbs that manage client-side transaction state and must be routed + * through Groovy (i.e., {@code concourse.stage()}) rather than CCL + * execution. Sending these through {@code exec()} would start or end a + * transaction on the server without updating the client's transaction + * token, causing subsequent commands to execute outside the intended + * transaction context. + */ + private static final Set CLIENT_STATE_VERBS = EnumSet + .of(TCommandVerb.STAGE, TCommandVerb.COMMIT, TCommandVerb.ABORT); + + /** + * The set of recognized CCL verb strings used by + * {@link #looksLikeCcl(String)} to distinguish CCL commands from Groovy + * expressions. Excludes {@link #CLIENT_STATE_VERBS} because those must be + * handled by the client driver to properly manage transaction state. + */ + private static final Set CCL_VERBS = Arrays + .stream(TCommandVerb.values()) + .filter(v -> !CLIENT_STATE_VERBS.contains(v)).flatMap(v -> { + String name = v.name().toLowerCase(); + int underscore = name.indexOf('_'); + if(underscore > 0) { + // For compound verbs like VERIFY_OR_SET, + // include both "verify" (short form) and + // "verifyorset" (camelCase form the user + // would type). + return Stream.of(name.substring(0, underscore), + name.replace("_", "")); + } + else { + return Stream.of(name); + } + }).collect(Collectors.toSet()); + /** * A list which contains all of the accessible API methods. This list is * used to expand short syntax that is used in any evaluatable line. @@ -476,6 +517,20 @@ public StartState call() { }; + /** + * Sentinel indicating that the input has not yet been evaluated by any + * processing path (CCL or submit). When this value remains after dispatch, + * the input falls through to Groovy evaluation. + */ + private static final Object UNPROCESSED = new Object(); + + /** + * Sentinel indicating that the input was a valid CCL command queued during + * prepare mode rather than executed. Used to distinguish queued commands + * from evaluated results when formatting output. + */ + private static final Object SKIPPED = new Object(); + /** * The client connection to Concourse. */ @@ -529,6 +584,18 @@ public StartState call() { */ private Script script = null; + /** + * Indicates whether prepare mode is active. When {@code true}, CCL commands + * are accumulated rather than executed immediately. + */ + private boolean inPrepareMode = false; + + /** + * The accumulated CCL commands collected during prepare mode. Only non-null + * when {@link #inPrepareMode} is {@code true}. + */ + private List pendingPreparedCommands = null; + /** * A closure that responds to the 'show' command and returns information to * display to the user based on the input argument(s). @@ -563,13 +630,13 @@ public Object call(Object arg) { private static final long serialVersionUID = 1L; @Override - public Timestamp call(Object arg) { - return concourse.time(arg.toString()); + public Timestamp call() { + return concourse.time(); } @Override - public Timestamp call() { - return concourse.time(); + public Timestamp call(Object arg) { + return concourse.time(arg.toString()); } }; @@ -596,8 +663,9 @@ protected ConcourseShell() throws Exception { * @return the result of the evaluation * @throws IrregularEvaluationResult */ - @SuppressWarnings("serial") + @SuppressWarnings({ "serial", "unchecked", "rawtypes" }) public String evaluate(String input) throws IrregularEvaluationResult { + String program = input; input = SyntaxTools.handleShortSyntax(input, methods); String inputLowerCase = input.toLowerCase(); @@ -668,21 +736,105 @@ else if(containsBannedCharSequence(input)) { else if(Strings.isNullOrEmpty(input)) { // CON-170 throw new NewLineRequest(); } + else if("prepare".equalsIgnoreCase(program)) { + inPrepareMode = true; + pendingPreparedCommands = new ArrayList<>(); + setDefaultPrompt(); + return "Entering prepare mode. Type commands " + + "to queue them. Use 'submit' to " + + "execute or 'discard' to cancel."; + } + else if("discard".equalsIgnoreCase(program)) { + if(inPrepareMode) { + int count = pendingPreparedCommands.size(); + inPrepareMode = false; + pendingPreparedCommands = null; + setDefaultPrompt(); + return "Discarded " + count + " prepared " + + (count == 1 ? "command" : "commands") + "."; + } + else { + throw new EvaluationException("ERROR: Not in prepare mode"); + } + } else { StringBuilder result = new StringBuilder(); try { watch.reset().start(); - Object value = groovy.evaluate(input, "ConcourseShell"); + Object value = UNPROCESSED; + Integer count = null; + if("submit".equalsIgnoreCase(program)) { + if(inPrepareMode) { + String ccl = String.join("; ", pendingPreparedCommands); + count = pendingPreparedCommands.size(); + inPrepareMode = false; + pendingPreparedCommands = null; + setDefaultPrompt(); + value = concourse.submit(ccl); + } + else { + throw new EvaluationException( + "ERROR: Not in prepare mode"); + } + } + else if(looksLikeCcl(program)) { + boolean compiled = false; + try { + ConcourseCompiler.get().compile(program); + compiled = true; + } + catch (Exception e) { + // NOTE: Input that looks like CCL but fails to compile + // may still be valid Groovy, so let it fall through to + // Groovy evaluation via the UNPROCESSED sentinel. + } + if(compiled) { + if(inPrepareMode) { + pendingPreparedCommands.add(program); + count = pendingPreparedCommands.size(); + setDefaultPrompt(); + value = SKIPPED; + } + else { + value = concourse.exec(program); + } + } + } + if(value == UNPROCESSED) { + value = groovy.evaluate(input, "ConcourseShell"); + } watch.stop(); long elapsed = watch.elapsed(TimeUnit.MILLISECONDS); double seconds = elapsed / 1000.0; - if(value != null) { - result.append( - "Returned '" + value + "' in " + seconds + " sec"); + if(value == SKIPPED) { + result.append(" [" + count + "] " + program); } - else { + else if(value == null) { result.append("Completed in " + seconds + " sec"); } + else if(count != null && value instanceof List) { + List results = (List) value; + for (int i = 0; i < results.size(); ++i) { + Object v = results.get(i); + if(v != null) { + result.append(" [").append(i + 1) + .append("] Returned '").append(v) + .append("'"); + } + else { + result.append(" [").append(i + 1) + .append("] Completed"); + } + result.append(System.lineSeparator()); + } + result.append("Submitted ").append(count) + .append(count == 1 ? " command" : " commands") + .append(" in ").append(seconds).append(" sec"); + } + else { + result.append( + "Returned '" + value + "' in " + seconds + " sec"); + } return result.toString(); } catch (CompilationFailedException e) { @@ -899,12 +1051,84 @@ public void run() { getAccessibleApiMethodsUsingShortSyntax())); } + /** + * Return {@code true} if the given {@code input} looks like a CCL command + * rather than a Groovy expression. The heuristic checks whether the first + * token is a recognized CCL verb and the next non-whitespace character is + * not an open parenthesis (which would indicate a Groovy method call). + * + * @param input the input to check + * @return {@code true} if the input looks like CCL + */ + private boolean looksLikeCcl(String input) { + int space = input.indexOf(' '); + String verb = space > 0 ? input.substring(0, space).toLowerCase() + : input.toLowerCase(); + if(!CCL_VERBS.contains(verb)) { + return false; + } + else if(space < 0) { + // Bare command (e.g., ping, inventory) + return true; + } + else { + // If the next non-whitespace char is '(' then + // this is a Groovy method call, not CCL + for (int i = space + 1; i < input.length(); ++i) { + char c = input.charAt(i); + if(c != ' ') { + return c != '('; + } + } + return true; + } + } + /** * Set the {@link #defaultPrompt} variable to account for the current - * {@link #env}. + * {@link #env} and prepare mode. */ private void setDefaultPrompt() { - this.defaultPrompt = format("[{0}/cash]$ ", env); + StringBuilder sb = new StringBuilder("["); + sb.append(env).append("/cash"); + if(inPrepareMode) { + sb.append(":prepare(").append(pendingPreparedCommands.size()) + .append(")"); + } + sb.append("]$ "); + this.defaultPrompt = sb.toString(); + } + + /** + * An enum that summarizes the cause of an error based on the message. + *

+ * Retrieve an instance by calling {@link ErrorCause#determine(String)} on + * an error message returned from an exception/ + *

+ * + * @author Jeff Nelson + */ + private enum ErrorCause { + MISSING_CASH_METHOD, MISSING_EXTERNAL_METHOD, UNDEFINED; + + /** + * Examine an error message to determine the {@link ErrorCause}. + * + * @param message - the error message from an Exception + * @return the {@link ErrorCause} that summarizes the reason the + * Exception occurred + */ + public static ErrorCause determine(String message) { + if(message.startsWith("No signature of method: ConcourseShell.")) { + return MISSING_CASH_METHOD; + } + else if(message.startsWith("No signature of method: ext.")) { + return MISSING_EXTERNAL_METHOD; + } + else { + return UNDEFINED; + } + } } /** @@ -962,38 +1186,6 @@ private static class Options { } - /** - * An enum that summarizes the cause of an error based on the message. - *

- * Retrieve an instance by calling {@link ErrorCause#determine(String)} on - * an error message returned from an exception/ - *

- * - * @author Jeff Nelson - */ - private enum ErrorCause { - MISSING_CASH_METHOD, MISSING_EXTERNAL_METHOD, UNDEFINED; - - /** - * Examine an error message to determine the {@link ErrorCause}. - * - * @param message - the error message from an Exception - * @return the {@link ErrorCause} that summarizes the reason the - * Exception occurred - */ - public static ErrorCause determine(String message) { - if(message.startsWith("No signature of method: ConcourseShell.")) { - return MISSING_CASH_METHOD; - } - else if(message.startsWith("No signature of method: ext.")) { - return MISSING_EXTERNAL_METHOD; - } - else { - return UNDEFINED; - } - } - } - /** * An enum containing the types of things that can be listed using the * 'show' function. @@ -1003,20 +1195,12 @@ else if(message.startsWith("No signature of method: ext.")) { private enum Showable { RECORDS; - /** - * Return the name of this Showable. - * - * @return the name - */ - public String getName() { - return name().toLowerCase(); - } - /** * Valid options for the 'show' function based on the values defined in * this enum. */ private static String OPTIONS; + static { StringBuilder sb = new StringBuilder(); for (Showable showable : values()) { @@ -1026,6 +1210,15 @@ public String getName() { OPTIONS = sb.toString(); } + /** + * Return the name of this Showable. + * + * @return the name + */ + public String getName() { + return name().toLowerCase(); + } + } } \ No newline at end of file diff --git a/interface/concourse.thrift b/interface/concourse.thrift index 437562f13..06d6aabed 100644 --- a/interface/concourse.thrift +++ b/interface/concourse.thrift @@ -6547,6 +6547,62 @@ service ConcourseService { 3: exceptions.PermissionException ex3 ); + complex.ComplexTObject exec( + 1: list commands, + 2: shared.AccessToken creds, + 3: shared.TransactionToken transaction, + 4: string environment + ) + throws ( + 1: exceptions.SecurityException ex, + 2: exceptions.TransactionException ex2, + 3: exceptions.InvalidArgumentException ex3, + 4: exceptions.PermissionException ex4, + 5: exceptions.ParseException ex5 + ); + + list submit( + 1: list commands, + 2: shared.AccessToken creds, + 3: shared.TransactionToken transaction, + 4: string environment + ) + throws ( + 1: exceptions.SecurityException ex, + 2: exceptions.TransactionException ex2, + 3: exceptions.InvalidArgumentException ex3, + 4: exceptions.PermissionException ex4, + 5: exceptions.ParseException ex5 + ); + + complex.ComplexTObject execCcl( + 1: string ccl, + 2: shared.AccessToken creds, + 3: shared.TransactionToken transaction, + 4: string environment + ) + throws ( + 1: exceptions.SecurityException ex, + 2: exceptions.TransactionException ex2, + 3: exceptions.InvalidArgumentException ex3, + 4: exceptions.PermissionException ex4, + 5: exceptions.ParseException ex5 + ); + + list submitCcl( + 1: string ccl, + 2: shared.AccessToken creds, + 3: shared.TransactionToken transaction, + 4: string environment + ) + throws ( + 1: exceptions.SecurityException ex, + 2: exceptions.TransactionException ex2, + 3: exceptions.InvalidArgumentException ex3, + 4: exceptions.PermissionException ex4, + 5: exceptions.ParseException ex5 + ); + complex.ComplexTObject invokeManagement( 2: string method, 3: list params, diff --git a/interface/data.thrift b/interface/data.thrift index 850923bc9..c78cac4ac 100644 --- a/interface/data.thrift +++ b/interface/data.thrift @@ -104,3 +104,71 @@ struct TPage { 1:required i32 skip, 2:required i32 limit } + +/** + * The verb identifying which operation a TCommand represents. + */ +enum TCommandVerb { + FIND = 1, + SELECT = 2, + GET = 3, + NAVIGATE = 4, + ADD = 5, + SET = 6, + REMOVE = 7, + CLEAR = 8, + INSERT = 9, + LINK = 10, + UNLINK = 11, + VERIFY = 12, + VERIFY_AND_SWAP = 13, + VERIFY_OR_SET = 14, + FIND_OR_ADD = 15, + FIND_OR_INSERT = 16, + SEARCH = 17, + BROWSE = 18, + DESCRIBE = 19, + TRACE = 20, + HOLDS = 21, + JSONIFY = 22, + CHRONICLE = 23, + DIFF = 24, + AUDIT = 25, + REVERT = 26, + RECONCILE = 27, + CONSOLIDATE = 28, + CALCULATE = 29, + STAGE = 30, + COMMIT = 31, + ABORT = 32, + PING = 33, + INVENTORY = 34, +} + +/** + * A structured representation of a complete Concourse command that can + * be transmitted over the wire. Each command is identified by a required + * verb; the optional fields carry the parameters appropriate for that + * verb. + * + * Reuses existing types (TCriteria, TOrder, TPage, TObject) for + * condition, ordering, pagination, and values. + */ +struct TCommand { + 1: required TCommandVerb verb, + 2: optional list keys, + 3: optional list records, + 4: optional TCriteria criteria, + 5: optional string condition, + 6: optional i64 timestamp, + 7: optional i64 endTimestamp, + 8: optional TOrder order, + 9: optional TPage page, + 10: optional TObject value, + 11: optional TObject replacement, + 12: optional list values, + 13: optional string json, + 14: optional string query, + 15: optional string function, + 16: optional i64 sourceRecord, +} diff --git a/utils/codegen/CommandGroupGenerator.groovy b/utils/codegen/CommandGroupGenerator.groovy new file mode 100644 index 000000000..6ef26e139 --- /dev/null +++ b/utils/codegen/CommandGroupGenerator.groovy @@ -0,0 +1,348 @@ +/* + * Copyright (c) 2013-2026 Cinchapi Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// This script parses the ConcourseService interface from thrift IDL files +// and generates a Java interface with Concourse-style method names (verbs +// derived from thrift method names), void returns, and state parameters +// removed. The generated CommandGroup interface is intended to be +// implemented by a class that collects Commands for batch submission. + +@Grapes([ + @Grab('com.facebook.swift:swift-idl-parser:0.14.2'), + @Grab('com.google.guava:guava:15.0') + ] +) +import java.io.File; +import java.io.IOException; +import java.io.Reader; +import java.nio.charset.StandardCharsets; +import java.util.List; +import java.util.ArrayList; +import java.util.Set; + +import com.facebook.swift.parser.ThriftIdlParser; +import com.facebook.swift.parser.model.BaseType; +import com.facebook.swift.parser.model.Definition; +import com.facebook.swift.parser.model.Document; +import com.facebook.swift.parser.model.IdentifierType; +import com.facebook.swift.parser.model.ListType; +import com.facebook.swift.parser.model.MapType; +import com.facebook.swift.parser.model.Service; +import com.facebook.swift.parser.model.SetType; +import com.facebook.swift.parser.model.ThriftField; +import com.facebook.swift.parser.model.ThriftMethod; +import com.facebook.swift.parser.model.ThriftType; +import com.facebook.swift.parser.model.VoidType; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import com.google.common.io.Files; +import com.google.common.io.InputSupplier; + +/** + * A script that parses the concourse.thrift IDL file and generates + * a Java interface with Concourse-style method names (overloaded + * verbs), void returns, and no client state parameters. The + * generated interface is intended to be implemented by a class + * that collects {@code Command} objects for batch submission. + */ +public class CommandGroupGenerator { + + /** + * Compound verbs that consist of multiple camelCase words. + * These must be checked before the single-word verb + * extraction. + */ + private static Set COMPOUND_VERBS = Sets.newHashSet( + "verifyAndSwap", "verifyOrSet", "findOrAdd", + "findOrInsert", "invokeManagement", + "invokePlugin"); + + /** + * Methods that should be excluded from the generated + * interface because they are not user-facing operations or + * because they are the exec/submit mechanism itself. + */ + private static Set BANNED_METHODS = Sets.newHashSet( + "login", "logout", "invokeManagement", + "invokePlugin", "exec", "submit", + "getServerVersion", "getServerEnvironment"); + + /** + * Parameters that represent client state and should be + * stripped from the generated method signatures. + */ + private static Set BANNED_PARAMS = Sets.newHashSet( + "creds", "transaction", "environment", "token"); + + /** + * Run the program... + * @param args command line options + */ + public static void main(String... args) throws IOException { + String target = args[args.length - 1]; + List signatures = new ArrayList(); + for(int i = 0; i < args.length - 1; ++i) { + String source = args[i]; + InputSupplier input = Files.asCharSource( + new File(source), StandardCharsets.UTF_8); + Document document = ThriftIdlParser.parseThriftIdl(input); + signatures.addAll(getMethodSignatures(document)); + } + String generated = """/** + * Autogenerated by Codegen Compiler + * + * DO NOT EDIT UNLESS YOU KNOW WHAT YOU ARE DOING + * + * @generated + */ +package com.cinchapi.concourse.lang.command; + +import java.util.List; +import java.util.Map; +import java.util.Set; + +import com.cinchapi.concourse.lang.Criteria; +import com.cinchapi.concourse.lang.sort.Order; +import com.cinchapi.concourse.lang.paginate.Page; +import com.cinchapi.concourse.thrift.Operator; + +/** + * An interface that mirrors the Concourse API with void-returning + * methods. Implementations collect the method invocations as + * {@link Command Commands} for batch submission via + * {@code Concourse#submit(CommandGroup)}. + */ +public interface CommandGroup { +""" + for(String signature : signatures) { + generated ="""${generated} + ${signature}; +""" + } + generated="""${generated} +} + """ + Files.write(generated, new File(target), + StandardCharsets.UTF_8); + } + + /** + * Extract the verb (Concourse-style method name) from a + * thrift method name. For example, "addKeyValue" becomes + * "add" and "verifyAndSwap" stays "verifyAndSwap". + * + * @param methodName the thrift method name + * @return the extracted verb + */ + private static String extractVerb(String methodName) { + for (String verb : COMPOUND_VERBS) { + if(methodName.startsWith(verb)) { + return verb; + } + } + // Take the first camelCase word + for (int i = 1; i < methodName.length(); i++) { + if(Character.isUpperCase(methodName.charAt(i))) { + return methodName.substring(0, i); + } + } + return methodName; + } + + /** + * A method that traverses the parsed {@link Document} and + * returns a list of Strings, each of which is a method + * signature for the generated interface. + * + * @param document the parsed {@link Document} + * @return a list of all the method signatures + */ + private static List getMethodSignatures( + Document document) { + List signatures = Lists.newArrayList(); + Set seen = Sets.newHashSet(); + for (Definition definition : document.getDefinitions()) { + if(definition instanceof Service) { + Service service = (Service) definition; + for (ThriftMethod method : service.getMethods()) { + String name = method.getName(); + if(!BANNED_METHODS.contains(name)) { + String verb = extractVerb(name); + StringBuilder sb = new StringBuilder(); + for (ThriftField field : method.getArguments()) { + if(!BANNED_PARAMS.contains(field.getName())) { + String type = thriftTypeToJavaType( + field.getType(), true); + if(type.equals("TObject")) { + type = "Object"; + } + else if(type.contains("TObject") + && !type.contains("ComplexTObject")) { + type = type.replaceAll("TObject", "Object"); + } + else if(type.equals("TCriteria")) { + type = "Criteria"; + } + else if(type.equals("TOrder")) { + type = "Order"; + } + else if(type.equals("TPage")) { + type = "Page"; + } + sb.append(type); + sb.append(" "); + sb.append(field.getName()); + sb.append(", "); + } + } + if(sb.length() > 1) { + sb.delete(sb.length() - 2, sb.length()); + } + String params = sb.toString(); + String signature = "void ${verb}(${params})"; + // Build a type-only key for dedup (Java overload + // resolution uses types, not param names) + String typeKey = verb + "("; + boolean first = true; + for (ThriftField field : method.getArguments()) { + if(!BANNED_PARAMS.contains(field.getName())) { + String type = thriftTypeToJavaType( + field.getType(), true); + if(type.equals("TObject")) { + type = "Object"; + } + else if(type.contains("TObject") + && !type.contains("ComplexTObject")) { + type = type.replaceAll("TObject", "Object"); + } + else if(type.equals("TCriteria")) { + type = "Criteria"; + } + else if(type.equals("TOrder")) { + type = "Order"; + } + else if(type.equals("TPage")) { + type = "Page"; + } + if(!first) { + typeKey += ","; + } + // Use erased type for dedup to avoid + // List vs List clashes + String erased = type.replaceAll("<.*>", ""); + typeKey += erased; + first = false; + } + } + typeKey += ")"; + if(seen.add(typeKey)) { + signatures.add(signature); + } + } + } + break; + } + } + return signatures; + } + + /** + * Utility method to convert any {@link ThriftType} to the + * appropriate Java type that should be added to the method + * signature. + * + * @param type the methods declared {@link ThriftType} + * @param primitive a flag that signals whether an attempt + * should be made to use a primitive Java type + * @return the appropriate Java type for the method signature + */ + private static String thriftTypeToJavaType(ThriftType type, + boolean primitive) { + if(type instanceof VoidType) { + return "void"; + } + else if(type instanceof BaseType) { + BaseType base = (BaseType) type; + String name = base.getType().toString(); + String ret; + boolean primitiveSupport = true; + switch (name) { + case "I64": + ret = "Long"; + break; + case "I32": + ret = "Integer"; + break; + case "FLOAT": + ret = "Float"; + break; + case "DOUBLE": + ret = "Double"; + break; + case "STRING": + ret = "String"; + primitiveSupport = false; + break; + case "BOOL": + ret = "Boolean"; + break; + case "BINARY": + ret = "ByteBuffer"; + primitiveSupport = false; + break; + default: + ret = name; + break; + } + return primitive & primitiveSupport + ? ret.toLowerCase() : ret; + } + else if(type instanceof MapType) { + MapType map = (MapType) type; + StringBuilder sb = new StringBuilder(); + sb.append("Map<"); + sb.append(thriftTypeToJavaType(map.getKeyType(), false)); + sb.append(","); + sb.append(thriftTypeToJavaType(map.getValueType(), false)); + sb.append(">"); + return sb.toString(); + } + else if(type instanceof SetType) { + SetType set = (SetType) type; + StringBuilder sb = new StringBuilder(); + sb.append("Set<"); + sb.append(thriftTypeToJavaType(set.getElementType(), false)); + sb.append(">"); + return sb.toString(); + } + else if(type instanceof ListType) { + ListType list = (ListType) type; + StringBuilder sb = new StringBuilder(); + sb.append("List<"); + sb.append(thriftTypeToJavaType(list.getElementType(), false)); + sb.append(">"); + return sb.toString(); + } + else if(type instanceof IdentifierType) { + IdentifierType identifier = (IdentifierType) type; + String[] parts = identifier.getName().split("\\."); + return parts[parts.length - 1]; + } + else { + return type.toString(); + } + } +} diff --git a/utils/compile-thrift-java.sh b/utils/compile-thrift-java.sh index 885415027..2dde0a0c2 100755 --- a/utils/compile-thrift-java.sh +++ b/utils/compile-thrift-java.sh @@ -60,6 +60,18 @@ groovy $GENERATOR $THRIFT_IDLS $SOURCE_DESTINATION echo "Finished generating $SOURCE_DESTINATION" +# Generate the CommandGroup interface +cd $HOME +COMMAND_GROUP_DESTINATION=$HOME/../concourse-driver-java/src/main/java/com/cinchapi/concourse/lang/command/CommandGroup.java +COMMAND_GROUP_GENERATOR=$HOME/codegen/CommandGroupGenerator.groovy +COMMAND_GROUP_IDLS="" +for module in "${MODULES[@]}"; do + COMMAND_GROUP_IDLS="$COMMAND_GROUP_IDLS $HOME/../interface/$module" +done +groovy $COMMAND_GROUP_GENERATOR $COMMAND_GROUP_IDLS $COMMAND_GROUP_DESTINATION + +echo "Finished generating $COMMAND_GROUP_DESTINATION" + # Generate the ConcourseManagementService class cd $HOME THRIFT_IDL=$HOME/../interface/management/management.thrift